* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e4e4e4;
    line-height: 1.6;
    min-height: 100vh;
}

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: linear-gradient(145deg, #2d2d44 0%, #1a1a2e 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #ff6b35;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.age-modal-content h2 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.age-modal-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #e4e4e4;
}

.age-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.age-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn.yes {
    background: #ff6b35;
    color: white;
}

.age-btn.yes:hover {
    background: #ff8555;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.age-btn.no {
    background: #4a4a6a;
    color: white;
}

.age-btn.no:hover {
    background: #5a5a7a;
}

header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff6b35;
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 100%;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #ff6b35;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu li a {
    color: #e4e4e4;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #ff6b35;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 0;
        border-bottom: 2px solid #ff6b35;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 20px 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
    }
}

.hero {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
    padding: 100px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-badges {
        gap: 10px;
    }

    .badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

.content-wrapper {
    max-width: 100%;
    padding: 80px 30px;
}

section {
    width: 100%;
}

.intro {
    background: rgba(45, 45, 68, 0.3);
}

.intro h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.intro p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.important-notices {
    background: rgba(26, 26, 46, 0.5);
}

.important-notices h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.notice-card {
    background: linear-gradient(145deg, #2d2d44 0%, #1a1a2e 100%);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #ff6b35;
    transition: transform 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.notice-card h3 {
    font-size: 1.6rem;
    color: #ff6b35;
    margin-bottom: 15px;
    font-weight: 700;
}

.notice-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.game-section {
    background: rgba(45, 45, 68, 0.3);
}

.game-section h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto 30px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #ff6b35;
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-notice {
    text-align: center;
    margin-top: 20px;
}

.game-notice p {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #ff6b35;
}

@media (max-width: 768px) {
    .game-frame {
        height: 500px;
    }
}

.features {
    background: rgba(26, 26, 46, 0.5);
}

.features h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(145deg, #2d2d44 0%, #1a1a2e 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: #ff6b35;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

footer {
    background: #0f0f1e;
    padding: 60px 30px 30px;
    border-top: 2px solid #ff6b35;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e4e4e4;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d2d44;
    color: #a0a0a0;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 50px 20px;
    }

    h2 {
        font-size: 2rem !important;
    }

    .notice-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}
