* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #1a0533 0%, #2d1654 50%, #1a0533 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 5, 20, 0.98);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-gate.active {
    display: flex;
}

.age-gate-content {
    background: linear-gradient(145deg, #2d1654, #1a0533);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid #5a1a8c;
    box-shadow: 0 10px 40px rgba(90, 26, 140, 0.4);
}

.age-gate-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.age-gate-content h2 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.age-gate-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-gate-buttons button {
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-yes {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a0533;
}

.age-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.age-no {
    background: #333;
    color: #fff;
}

.age-no:hover {
    background: #555;
}

/* Header */
header {
    background: rgba(26, 5, 51, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #5a1a8c;
    box-shadow: 0 4px 20px rgba(90, 26, 140, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffd700;
    text-decoration: none;
}

.logo svg {
    width: 50px;
    height: 50px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: #ffd700;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-full {
    max-width: 100%;
    padding: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(90, 26, 140, 0.3), rgba(45, 22, 84, 0.5)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a0533"/></svg>');
    padding: 8rem 2rem;
    text-align: center;
    border-bottom: 3px solid #5a1a8c;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a0533;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

/* Sections */
section {
    padding: 4rem 0;
}

h2 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
}

.intro {
    background: rgba(45, 22, 84, 0.3);
}

.intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Notices */
.notices {
    background: rgba(26, 5, 51, 0.5);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.notice-card {
    background: linear-gradient(145deg, #2d1654, #1a0533);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #5a1a8c;
    text-align: center;
    transition: transform 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Game Preview */
.game-preview {
    background: rgba(45, 22, 84, 0.3);
}

.game-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.game-embed {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    margin: 2rem auto;
    max-width: 1000px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid #5a1a8c;
}

.game-embed iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.secondary-button {
    display: inline-block;
    margin: 2rem auto 0;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ffd700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
}

.secondary-button:hover {
    background: #ffd700;
    color: #1a0533;
}

/* Features */
.features {
    background: rgba(26, 5, 51, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 1.5rem;
    background: rgba(45, 22, 84, 0.5);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.feature-item h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Responsible Gaming */
.responsible {
    background: rgba(45, 22, 84, 0.3);
    text-align: center;
}

.responsible p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(90, 26, 140, 0.5), rgba(45, 22, 84, 0.7));
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 3px solid #5a1a8c;
}

.page-header h1 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 2rem;
}

/* Game Page */
.game-page {
    padding: 2rem 0;
    background: rgba(26, 5, 51, 0.5);
}

.game-wrapper {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid #5a1a8c;
}

.game-wrapper iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-info {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(45, 22, 84, 0.5);
    border-radius: 15px;
    border: 2px solid #5a1a8c;
}

.game-info h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.game-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.play-reminder {
    background: rgba(45, 22, 84, 0.3);
    text-align: center;
}

.play-reminder h2 {
    font-size: 2rem;
}

.play-reminder p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: rgba(26, 5, 51, 0.95);
    border-top: 2px solid #5a1a8c;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-note {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(26, 5, 51, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        border-left: 2px solid #5a1a8c;
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 1.3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .notice-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .game-embed iframe,
    .game-wrapper iframe {
        height: 400px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 2rem 0;
    }
}