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

body {
    font-family: 'Roboto Condensed', sans-serif;
    background: #1a1a1a;
    color: #e5e5e5;
    line-height: 1.6;
    min-height: 100vh;
}

.page-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Entry Gate */
.entry-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(15px);
}

.entry-gate.hidden {
    display: none;
}

.gate-panel {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid #dc2626;
    padding: 60px 50px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 0 60px rgba(220, 38, 38, 0.5);
}

.gate-emblem {
    font-size: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #ffd700);
}

.gate-panel h2 {
    color: #ffd700;
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 900;
    letter-spacing: 3px;
}

.gate-panel p {
    color: #b0b0b0;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 400;
}

.gate-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.action-approve,
.action-reject {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 1px;
}

.action-approve {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffd700;
    border-color: #ffd700;
}

.action-approve:hover {
    background: linear-gradient(135deg, #991b1b, #7f1d1d);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.6);
}

.action-reject {
    background: transparent;
    color: #666;
    border-color: #333;
}

.action-reject:hover {
    border-color: #555;
    color: #888;
}

/* Header */
.primary-header {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 2px solid #dc2626;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.site-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
}

.brand-name {
    color: #ffd700;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-btn span {
    width: 30px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ffd700);
    transition: all 0.3s ease;
}

.primary-nav {
    display: flex;
    gap: 45px;
}

.primary-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.primary-nav a:hover {
    color: #ffd700;
}

.primary-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ffd700);
    transition: width 0.3s ease;
}

.primary-nav a:hover::before {
    width: 100%;
}

/* Main Content */
.main-content {
    flex: 1;
}

/* Hero Area */
.hero-area {
    position: relative;
    padding: 120px 35px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(0, 0, 0, 0.5));
    border-bottom: 3px solid #dc2626;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(220, 38, 38, 0.05) 10px,
        rgba(220, 38, 38, 0.05) 20px
    );
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 1500px;
    margin: 0 auto;
}

.hero-label {
    color: #ffd700;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px;
}

.hero-area h1 {
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 6px;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
}

.hero-description {
    font-size: 22px;
    color: #d0d0d0;
    margin-bottom: 45px;
    max-width: 900px;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid #dc2626;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.badge-symbol {
    color: #ffd700;
    font-size: 24px;
}

.badge-text {
    color: #ffd700;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Section Container */
.section-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 35px;
}

/* Game Display Section */
.game-display-section {
    padding: 90px 35px;
}

.section-header-bar {
    text-align: center;
    margin-bottom: 55px;
}

.section-header-bar h2 {
    color: #ffd700;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.header-accent {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ffd700);
    margin: 0 auto;
}

.game-display-box {
    max-width: 1300px;
    margin: 0 auto;
}

.game-embed-area {
    background: #000;
    border: 4px solid #dc2626;
    padding: 20px;
    box-shadow: 0 0 50px rgba(220, 38, 38, 0.4);
}

.game-embed-area iframe {
    width: 100%;
    height: 700px;
}

.display-caption {
    text-align: center;
    color: #ffd700;
    font-size: 16px;
    margin-top: 30px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Description Section */
.description-section {
    padding: 90px 35px;
    background: rgba(220, 38, 38, 0.05);
}

.description-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.description-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px solid rgba(220, 38, 38, 0.3);
    padding: 45px;
    transition: all 0.3s ease;
}

.description-card:hover {
    border-color: #dc2626;
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.3);
    transform: translateY(-8px);
}

.card-symbol {
    font-size: 48px;
    margin-bottom: 25px;
}

.description-card h3 {
    color: #ffd700;
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.description-card p {
    color: #b0b0b0;
    line-height: 1.9;
    font-size: 16px;
    font-weight: 400;
}

/* Compliance Section */
.compliance-section {
    padding: 90px 35px;
}

.compliance-header {
    text-align: center;
    margin-bottom: 55px;
}

.compliance-header h2 {
    color: #ffd700;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.compliance-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
}

.compliance-block {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-left: 5px solid #dc2626;
    padding: 40px;
}

.compliance-block h4 {
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.compliance-block p {
    color: #b0b0b0;
    line-height: 1.9;
    font-size: 16px;
    font-weight: 400;
}

/* Benefits Section */
.benefits-section {
    padding: 90px 35px;
    background: rgba(220, 38, 38, 0.05);
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 55px;
}

.benefit-item {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px solid rgba(220, 38, 38, 0.3);
    padding: 40px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #dc2626;
    transform: translateY(-5px);
}

.benefit-marker {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #ffd700);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 25px;
    font-style: italic;
}

.benefit-item h3 {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.benefit-item p {
    color: #b0b0b0;
    line-height: 1.9;
    font-size: 16px;
    font-weight: 400;
}

/* Closing Section */
.closing-section {
    padding: 90px 35px;
}

.closing-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(0, 0, 0, 0.5));
    border: 3px solid #dc2626;
    padding: 70px 45px;
    text-align: center;
}

.closing-box h2 {
    color: #ffd700;
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.closing-box p {
    color: #d0d0d0;
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.closing-link {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #ffd700;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
    border: 2px solid #ffd700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.closing-link:hover {
    background: linear-gradient(135deg, #991b1b, #7f1d1d);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.6);
}

/* Page Banner */
.page-banner {
    padding: 90px 35px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(0, 0, 0, 0.5));
    border-bottom: 3px solid #dc2626;
    text-align: center;
}

.banner-content h1 {
    color: #ffd700;
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
}

.banner-content p {
    color: #d0d0d0;
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Active Play Section */
.active-play-section {
    padding: 80px 35px;
}

.active-game-area {
    margin-bottom: 55px;
}

.game-embed-large {
    background: #000;
    border: 4px solid #dc2626;
    padding: 20px;
    box-shadow: 0 0 50px rgba(220, 38, 38, 0.4);
}

.game-embed-large iframe {
    width: 100%;
    height: 800px;
}

.play-guidance {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.guidance-panel {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-left: 5px solid #dc2626;
    padding: 35px;
}

.guidance-panel h3 {
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.guidance-panel p {
    color: #b0b0b0;
    line-height: 1.9;
    font-size: 16px;
    font-weight: 400;
}

/* Legal Content Section */
.legal-content-section {
    padding: 80px 35px;
}

.legal-content-section h1 {
    text-align: center;
    color: #ffd700;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 55px;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.6);
}

.legal-document-box {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid rgba(220, 38, 38, 0.4);
    padding: 55px;
    max-width: 1200px;
    margin: 0 auto;
}

.document-intro {
    color: #d0d0d0;
    font-size: 19px;
    margin-bottom: 40px;
    line-height: 1.9;
    font-weight: 500;
}

.legal-document-box h2 {
    color: #ffd700;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.legal-document-box h2:first-of-type {
    margin-top: 0;
}

.legal-document-box p {
    color: #b0b0b0;
    line-height: 1.95;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
}

.document-timestamp {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(220, 38, 38, 0.3);
    color: #666;
    font-style: italic;
    font-size: 15px;
}

/* Footer */
.primary-footer {
    background: rgba(0, 0, 0, 0.6);
    border-top: 3px solid #dc2626;
    padding: 70px 35px 35px;
    margin-top: auto;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.footer-column h4 {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-column p {
    color: #888;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    font-weight: 400;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 15px;
}

.footer-menu a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-menu a:hover {
    color: #ffd700;
}

.footer-notice {
    color: #666;
    font-size: 14px;
    text-align: center;
    line-height: 1.7;
    font-weight: 400;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
        z-index: 1001;
    }

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #1a1a1a;
        flex-direction: column;
        padding: 90px 35px;
        border-left: 3px solid #dc2626;
        transition: right 0.3s ease;
        gap: 25px;
    }

    .primary-nav.active {
        right: 0;
    }

    .primary-nav a {
        font-size: 20px;
        padding: 18px 0;
        border-bottom: 2px solid rgba(220, 38, 38, 0.2);
    }

    .hero-area h1 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    .game-embed-area iframe,
    .game-embed-large iframe {
        height: 450px;
    }

    .description-grid,
    .compliance-blocks,
    .benefits-layout,
    .play-guidance {
        grid-template-columns: 1fr;
    }

    .legal-document-box {
        padding: 35px 25px;
    }
}