* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 3px solid #ff4444;
    border-radius: 15px;
    padding: 50px 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 68, 68, 0.4);
}

.modal-symbol {
    font-size: 75px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 68, 68, 0.6));
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #ff4444;
    font-weight: 700;
}

.modal-content p {
    margin-bottom: 14px;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.modal-actions button {
    flex: 1;
    min-width: 150px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.btn-accept {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.4);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 68, 68, 0.6);
}

.btn-reject {
    background: #1a1a1a;
    color: #cccccc;
    border: 2px solid #555555;
}

.btn-reject:hover {
    background: #2d2d2d;
    border-color: #ff4444;
}

.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 3px solid #ff4444;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.doc-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 25px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 32px;
    font-weight: 700;
    color: #ff4444;
    font-family: 'Bebas Neue', sans-serif;
}

.logo-mark {
    font-size: 40px;
    filter: drop-shadow(0 0 15px rgba(255, 68, 68, 0.6));
}

.logo-name {
    letter-spacing: 3px;
}

.nav {
    display: flex;
    gap: 30px;
}

.link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 8px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    font-size: 18px;
}

.link:hover, .link.current {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.15);
    transform: translateX(3px);
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.line {
    width: 30px;
    height: 3px;
    background: #ff4444;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.banner {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15) 0%, rgba(204, 0, 0, 0.1) 100%);
    border-radius: 20px;
    margin: 40px auto;
    border: 2px solid rgba(255, 68, 68, 0.2);
}

.banner-content {
    text-align: center;
}

.banner-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(255, 68, 68, 0.5);
}

.banner-desc {
    font-size: 22px;
    color: #cccccc;
    margin-bottom: 35px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.banner-tags {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 68, 68, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    border: 2px solid rgba(255, 68, 68, 0.4);
    font-size: 16px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.cta {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 22px;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.5);
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.7);
}

.intro {
    padding: 60px 0;
}

.intro-header {
    text-align: center;
    margin-bottom: 50px;
}

.intro-header h2 {
    font-size: 52px;
    margin-bottom: 15px;
    color: #ff4444;
    font-weight: 700;
}

.intro-header p {
    font-size: 20px;
    color: #cccccc;
}

.intro-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
}

.card {
    background: rgba(45, 45, 45, 0.6);
    backdrop-filter: blur(5px);
    padding: 45px;
    border-radius: 20px;
    border: 2px solid rgba(255, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 68, 68, 0.6);
    box-shadow: 0 20px 50px rgba(255, 68, 68, 0.3);
}

.card-icon {
    font-size: 55px;
    margin-bottom: 22px;
}

.card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #ff4444;
    font-weight: 700;
}

.card p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 16px;
}

.showcase {
    padding: 60px 0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 45px;
}

.showcase-header h2 {
    font-size: 52px;
    margin-bottom: 15px;
    color: #ff4444;
    font-weight: 700;
}

.showcase-header p {
    font-size: 20px;
    color: #cccccc;
}

.showcase-box {
    background: rgba(45, 45, 45, 0.6);
    padding: 25px;
    border-radius: 20px;
    border: 2px solid rgba(255, 68, 68, 0.3);
    margin-bottom: 25px;
}

.game-frame {
    width: 100%;
    height: 620px;
    border: none;
    border-radius: 15px;
    background: #000;
}

.showcase-note {
    text-align: center;
    font-size: 17px;
    color: #cccccc;
    font-weight: 600;
}

.alerts {
    padding: 60px 0;
}

.alerts-header {
    text-align: center;
    margin-bottom: 50px;
}

.alerts-header h2 {
    font-size: 52px;
    color: #ff4444;
    font-weight: 700;
}

.alerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
}

.alert {
    background: rgba(45, 45, 45, 0.7);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #ffaa00;
}

.alert h4 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #ffaa00;
    font-weight: 700;
}

.alert p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 16px;
}

.info {
    padding: 60px 0;
}

.info-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 45px;
}

.col h3 {
    font-size: 36px;
    margin-bottom: 22px;
    color: #ff4444;
    font-weight: 700;
}

.col p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 16px;
}

.play-intro {
    padding: 60px 0;
    text-align: center;
}

.play-intro h1 {
    font-size: 58px;
    margin-bottom: 18px;
    color: #ff4444;
    font-weight: 700;
}

.play-intro p {
    font-size: 22px;
    color: #cccccc;
}

.play-zone {
    padding: 40px 0;
}

.play-container {
    background: rgba(45, 45, 45, 0.6);
    padding: 25px;
    border-radius: 20px;
    border: 2px solid rgba(255, 68, 68, 0.3);
}

.play-frame {
    width: 100%;
    height: 720px;
    border: none;
    border-radius: 15px;
    background: #000;
}

.play-info {
    padding: 40px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 35px;
}

.info-item {
    background: rgba(45, 45, 45, 0.6);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 68, 68, 0.3);
}

.info-item h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ff4444;
    font-weight: 700;
}

.info-item p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.doc {
    padding: 50px 0;
}

.doc h1 {
    font-size: 54px;
    margin-bottom: 15px;
    color: #ff4444;
    font-weight: 700;
}

.date {
    color: #888888;
    margin-bottom: 45px;
    font-style: italic;
    font-size: 15px;
}

.doc-text h2 {
    font-size: 34px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ff4444;
    font-weight: 700;
}

.doc-text p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 16px;
}

.doc-text ul {
    margin-left: 32px;
    margin-bottom: 18px;
    color: #cccccc;
}

.doc-text li {
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 16px;
}

.doc-text a {
    color: #ffaa00;
    text-decoration: none;
    font-weight: 600;
}

.doc-text a:hover {
    text-decoration: underline;
}

.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 3px solid #ff4444;
    padding: 55px 0 25px;
    margin-top: 90px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    margin-bottom: 35px;
}

.footer-block h4 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #ff4444;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.footer-block p {
    color: #cccccc;
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: #ff4444;
}

.footer-bar {
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid rgba(255, 68, 68, 0.3);
    color: #888888;
    font-size: 13px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 25px;
        gap: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 3px solid #ff4444;
    }

    .nav.open {
        max-height: 500px;
    }

    .banner-content h1 {
        font-size: 42px;
    }

    .banner-desc {
        font-size: 19px;
    }

    .info-cols {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 480px;
    }

    .play-frame {
        height: 540px;
    }

    .modal-content {
        padding: 42px 32px;
    }

    .modal-symbol {
        font-size: 65px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions button {
        width: 100%;
    }
}