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

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

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

/* Header - White background */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 12px;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.navigation {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #333;
    border-bottom-color: #333;
}

/* Hero Section - Dark background with blur effect */
.hero-section {
    background: linear-gradient(135deg, rgba(15, 20, 40, 0.95), rgba(30, 40, 60, 0.95));
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><filter id="blur"><feGaussianBlur stdDeviation="50"/></filter><circle cx="200" cy="300" r="150" fill="%23ffffff" opacity="0.03" filter="url(%23blur)"/><circle cx="800" cy="700" r="200" fill="%23ffffff" opacity="0.03" filter="url(%23blur)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    justify-content: center;
}

.circle-image {
    position: relative;
}

.circle-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: rgba(255, 255, 255, 0.9);
}

.hero-right {
    color: #ffffff;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin: 0 0 25px 0;
    color: #ffffff;
}

.hero-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

/* Play Section - Light gray background */
.play-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.play-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.text-paragraph {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.text-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.text-link:hover {
    text-decoration: underline;
}

.timings-box {
    margin-top: 35px;
    padding: 20px 25px;
    background: #ffffff;
    border-left: 3px solid #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timings-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.clock-icon {
    color: #333;
}

.timing-line {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.play-map {
    position: sticky;
    top: 20px;
}

.map-frame {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

/* Cards Section - Dark background with colorful gradient */
.cards-section {
    background: linear-gradient(180deg, 
        rgba(20, 30, 50, 0.95) 0%, 
        rgba(40, 30, 60, 0.85) 50%, 
        rgba(50, 40, 70, 0.80) 100%);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.cards-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 100, 150, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(100, 150, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(150, 100, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.info-card {
    text-align: center;
    padding: 40px 25px;
}

.card-icon {
    margin-bottom: 25px;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.card-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.card-link {
    color: #66b3ff;
    text-decoration: none;
    font-weight: 500;
}

.card-link:hover {
    text-decoration: underline;
}

/* Footer - Dark background */
.footer {
    background: #1a1a1a;
    padding: 30px 0;
    text-align: center;
}

.footer-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .navigation {
        gap: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .play-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .circle-image img {
        width: 250px;
        height: 250px;
    }

    .navigation {
        flex-wrap: wrap;
        justify-content: center;
    }
}
