* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: #d8b4fe;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #16213e 100%);
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #c084fc;
}

h1 {
    font-size: 2.9rem;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 8px rgba(192, 132, 252, 0.3);
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.site-header {
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #c084fc;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(192, 132, 252, 0.2);
}

.main-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #c084fc;
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: #d8b4fe;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: #c084fc;
    background: rgba(192, 132, 252, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.toggle-bar {
    width: 26px;
    height: 3px;
    background: #c084fc;
    border-radius: 2px;
    transition: 0.3s;
}

.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.intro-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.1) 0%, rgba(26, 11, 46, 0.8) 100%);
    border-radius: 25px;
    margin-bottom: 3rem;
    border: 2px solid rgba(192, 132, 252, 0.3);
    box-shadow: 0 10px 40px rgba(192, 132, 252, 0.2);
}

.intro-tagline {
    font-size: 1.5rem;
    color: #c084fc;
    margin-bottom: 3rem;
    font-weight: 500;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.intro-feature {
    padding: 2rem;
    background: rgba(26, 11, 46, 0.7);
    border-radius: 20px;
    border: 2px solid rgba(192, 132, 252, 0.3);
    transition: all 0.3s;
}

.intro-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(192, 132, 252, 0.3);
    border-color: #c084fc;
}

.feature-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.notifications {
    margin: 3rem 0;
}

.notification-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.notification {
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid;
    background: rgba(26, 11, 46, 0.8);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

.notification.danger-note {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(26, 11, 46, 0.8) 100%);
}

.notification.info-note {
    border-left-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(26, 11, 46, 0.8) 100%);
}

.notification.warning-note {
    border-left-color: #fbbf24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(26, 11, 46, 0.8) 100%);
}

.featured-gaming {
    margin: 3rem 0;
    text-align: center;
}

.gaming-header {
    margin-bottom: 2rem;
}

.gaming-header p {
    color: #c084fc;
    font-size: 1.15rem;
}

.gaming-frame {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #c084fc;
    box-shadow: 0 15px 50px rgba(192, 132, 252, 0.3);
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
}

.gaming-footer {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #c084fc;
}

.platform-benefits {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: rgba(26, 11, 46, 0.6);
    border-radius: 25px;
    border: 1px solid rgba(192, 132, 252, 0.2);
}

.platform-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-block {
    padding: 2rem;
    background: rgba(192, 132, 252, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(192, 132, 252, 0.3);
    transition: all 0.3s;
}

.benefit-block:hover {
    transform: translateY(-5px);
    border-color: #c084fc;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.metrics-display {
    margin: 4rem 0;
    text-align: center;
    padding: 3rem 2rem;
}

.metrics-intro {
    font-size: 1.15rem;
    color: #d8b4fe;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 2rem;
    max-width: 950px;
    margin: 0 auto;
}

.metric-item {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.15) 0%, rgba(26, 11, 46, 0.9) 100%);
    border-radius: 20px;
    border: 2px solid #c084fc;
}

.metric-figure {
    font-size: 2.8rem;
    font-weight: 800;
    color: #c084fc;
    font-family: 'Playfair Display', serif;
}

.metric-label {
    color: #d8b4fe;
    margin-top: 0.5rem;
    font-size: 1.05rem;
}

.invitation-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.2) 0%, rgba(26, 11, 46, 0.9) 100%);
    border-radius: 25px;
    border: 2px solid #c084fc;
    margin: 3rem 0;
    box-shadow: 0 10px 50px rgba(192, 132, 252, 0.25);
}

.invitation-section h2 {
    margin-bottom: 1rem;
}

.invitation-section p {
    font-size: 1.2rem;
    color: #d8b4fe;
    margin-bottom: 2rem;
}

.invitation-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
    color: #1a0b2e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 5px 25px rgba(192, 132, 252, 0.4);
}

.invitation-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(192, 132, 252, 0.6);
}

.site-footer {
    background: rgba(26, 11, 46, 0.95);
    margin-top: 4rem;
    padding: 3rem 2rem 1rem;
    border-top: 3px solid #c084fc;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #c084fc;
    letter-spacing: 3px;
}

.footer-navigation {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-navigation a {
    color: #d8b4fe;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-navigation a:hover {
    color: #c084fc;
}

.footer-resources {
    margin: 2rem 0;
}

.footer-resources h4 {
    color: #c084fc;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.resource-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-list a {
    color: #d8b4fe;
    text-decoration: none;
    transition: color 0.3s;
}

.resource-list a:hover {
    color: #c084fc;
}

.footer-notice {
    border-top: 1px solid rgba(192, 132, 252, 0.3);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #d8b4fe;
}

.footer-emphasis {
    font-weight: 700;
    color: #c084fc;
    margin-top: 0.5rem;
}

.verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.verify-modal.show {
    display: flex;
}

.verify-content {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #c084fc;
    box-shadow: 0 15px 60px rgba(192, 132, 252, 0.4);
}

.verify-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.verify-content h2 {
    color: #c084fc;
    margin-bottom: 1rem;
}

.verify-content p {
    margin-bottom: 1rem;
    color: #d8b4fe;
    font-size: 1.05rem;
}

.verify-note {
    color: #c084fc;
    font-style: italic;
}

.verify-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.verify-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.verify-btn.accept {
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
    color: #1a0b2e;
}

.verify-btn.reject {
    background: #374151;
    color: #d8b4fe;
}

.verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(192, 132, 252, 0.4);
}

.play-main {
    min-height: calc(100vh - 350px);
}

.play-header {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.play-header p {
    color: #c084fc;
    font-size: 1.15rem;
}

.play-gaming {
    margin: 2rem 0;
}

.play-frame {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #c084fc;
    box-shadow: 0 15px 50px rgba(192, 132, 252, 0.3);
}

.play-embed {
    width: 100%;
    height: 700px;
    border: none;
}

.play-information {
    margin: 3rem 0;
    padding: 2rem;
}

.play-information h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.information-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.info-item {
    padding: 2rem;
    background: rgba(26, 11, 46, 0.7);
    border-radius: 20px;
    border: 2px solid rgba(192, 132, 252, 0.3);
}

.info-item h3 {
    margin-bottom: 1rem;
}

.play-notices {
    margin: 3rem 0;
    padding: 2rem;
}

.notices-panel {
    background: rgba(192, 132, 252, 0.1);
    border: 2px solid #c084fc;
    border-radius: 20px;
    padding: 2rem;
    max-width: 850px;
    margin: 0 auto;
}

.notices-panel h3 {
    margin-bottom: 1rem;
}

.notices-panel ul {
    list-style-position: inside;
    color: #d8b4fe;
}

.notices-panel li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

.legal-main {
    max-width: 950px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-heading {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.1) 0%, rgba(26, 11, 46, 0.8) 100%);
    border-radius: 25px;
    border: 2px solid rgba(192, 132, 252, 0.3);
}

.legal-timestamp {
    color: #c084fc;
    font-style: italic;
}

.legal-document {
    background: rgba(26, 11, 46, 0.7);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(192, 132, 252, 0.2);
}

.document-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(192, 132, 252, 0.2);
}

.document-section:last-child {
    border-bottom: none;
}

.document-section h2 {
    margin-bottom: 1rem;
}

.document-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #d8b4fe;
    font-size: 1.4rem;
}

.document-section p {
    margin-bottom: 1rem;
    text-align: justify;
}

.document-section ul {
    margin: 1rem 0 1rem 2rem;
}

.document-section li {
    margin-bottom: 0.7rem;
}

.document-section.emphasized {
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.1) 0%, rgba(26, 11, 46, 0.5) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #c084fc;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: rgba(26, 11, 46, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .intro-tagline {
        font-size: 1.2rem;
    }

    .game-embed {
        height: 400px;
    }

    .play-embed {
        height: 500px;
    }

    .verify-content {
        margin: 1rem;
        padding: 2rem;
    }

    .verify-buttons {
        flex-direction: column;
    }

    .metric-figure {
        font-size: 2.2rem;
    }

    .legal-document {
        padding: 1.5rem;
    }

    .main-content {
        padding: 1rem;
    }
}
