* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.header {
    background: #f5f5f5;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #e67e22;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e67e22;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./assets/bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 70px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.about p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.about .highlight {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 30px 0;
}

.features-section {
    margin-top: 80px;
}

.features-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.feature-item {
    margin-bottom: 30px;
}

.feature-item h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
}

.about-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* Casino Hotels Section */
.casino-hotels {
    padding: 100px 0;
    background: #f8f9fa;
}

.casino-hotels h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.casino-hotels > p {
    margin-bottom: 60px;
    color: #666;
    font-size: 1.1rem;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.hotel-card {
    background: #333;
    border-radius: 8px;
    overflow: hidden;
    color: white;
    position: relative;
}

.hotel-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.hotel-info {
    padding: 30px;
}

.hotel-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hotel-info p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ccc;
}

.learn-more {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.learn-more:hover {
    color: #e67e22;
}

.learn-more::after {
    content: '→';
    font-size: 1.2rem;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: #fff;
}

.why-choose h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #333;
    padding: 40px 30px;
    border-radius: 8px;
    color: white;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #e67e22;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #333;
    color: #ccc;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #e67e22;
}

.footer p {
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 350px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 2000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-popup p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s;
}

.accept-btn {
    background: #e67e22;
    color: white;
}

.accept-btn:hover {
    background: #d35400;
}

.decline-btn {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}

.decline-btn:hover {
    background: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #f5f5f5;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .cookie-popup {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about h2,
    .casino-hotels h2,
    .why-choose h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 30px 20px;
    }
}