* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

body { background: #f0f2f5; color: #1a1a1a; }

.navbar { 
    background: #1e272e; padding: 15px 10%; 
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.logo { font-size: 26px; font-weight: 800; color: white; }
.logo span { color: #ff3f34; }
.nav-links a { color: white; text-decoration: none; margin-left: 20px; font-weight: 500; }

.main-container { padding: 50px 10%; text-align: center; }

.thrill-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; margin-top: 40px; 
}

.thrill-card { 
    background: white; border-radius: 15px; overflow: hidden; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    text-decoration: none; color: inherit; 
    transition: 0.4s ease-in-out;
    border-bottom: 5px solid #ff3f34;
}

.thrill-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.2); 
}

.img-box img { width: 100%; height: 220px; object-fit: cover; }

.info { padding: 20px; text-align: left; }
.info h3 { font-size: 22px; color: #1e272e; margin-bottom: 8px; }
.info p { color: #485460; font-size: 15px; }

.book-btn { 
    background: linear-gradient(45deg, #05c46b, #0be881); 
    color: white; padding: 15px 40px; 
    font-size: 20px; font-weight: bold; 
    text-decoration: none; border-radius: 50px; 
    display: inline-block; margin-top: 40px;
    box-shadow: 0 8px 15px rgba(5, 196, 107, 0.3);
}
footer { background: #1e272e; color: white; padding: 25px; margin-top: 50px; }