* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #1a0000, #2d0a0a);
    color: #f5f5f5;
    line-height: 1.7;
}

.space-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.top-bar {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 25px rgba(211, 47, 47, 0.4);
    position: sticky;
    top: 0;
    z-index: 5000;
    border-bottom: 4px solid #d32f2f;
}

.bar-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.branding {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-size: 36px;
    font-weight: 900;
    color: #ff1744;
    text-transform: uppercase;
}

.brand-icon {
    font-size: 48px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 5px #d32f2f); }
    50% { filter: drop-shadow(0 0 15px #ff1744); }
}

.brand-text {
    background: linear-gradient(135deg, #ff1744, #d32f2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.navigation {
    display: flex;
    gap: 40px;
}

.nav-item {
    color: #ffcdd2;
    text-decoration: none;
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 8px;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.nav-item:hover,
.nav-item.active {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.5);
}

.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
}

.trigger-bar {
    width: 34px;
    height: 4px;
    background: linear-gradient(135deg, #ff1744, #d32f2f);
    border-radius: 3px;
    transition: all 0.3s;
}

@media (max-width: 968px) {
    .menu-trigger {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: 100px;
        right: -100%;
        width: 340px;
        height: calc(100vh - 100px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 50px 30px;
        gap: 25px;
        transition: right 0.4s;
        box-shadow: -8px 0 30px rgba(211, 47, 47, 0.5);
        border-left: 4px solid #d32f2f;
    }

    .navigation.open {
        right: 0;
    }

    .nav-item {
        width: 100%;
        font-size: 22px;
        padding: 18px 24px;
    }

    .menu-trigger.open .trigger-bar:nth-child(1) {
        transform: rotate(45deg) translate(11px, 11px);
    }

    .menu-trigger.open .trigger-bar:nth-child(2) {
        opacity: 0;
    }

    .menu-trigger.open .trigger-bar:nth-child(3) {
        transform: rotate(-45deg) translate(11px, -11px);
    }
}

.hero-space {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    padding: 120px 0;
    text-align: center;
    box-shadow: 0 8px 30px rgba(211, 47, 47, 0.4);
}

.hero-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 30px;
    color: #ffebee;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tag-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px 34px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 19px;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 46px;
    }

    .hero-desc {
        font-size: 24px;
    }

    .hero-space {
        padding: 80px 0;
    }
}

.intro-space {
    padding: 100px 0;
    background: #1a0000;
}

.intro-top {
    text-align: center;
    margin-bottom: 75px;
}

.space-heading {
    font-size: 54px;
    font-weight: 900;
    color: #ff1744;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.heading-bar {
    width: 140px;
    height: 6px;
    background: linear-gradient(90deg, #ff1744, #d32f2f);
    margin: 0 auto 28px;
    border-radius: 4px;
}

.intro-lead {
    font-size: 24px;
    color: #ffcdd2;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.9;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
}

.info-box {
    background: rgba(211, 47, 47, 0.15);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
    transition: all 0.4s;
    border: 3px solid rgba(211, 47, 47, 0.5);
}

.info-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(211, 47, 47, 0.5);
    border-color: #ff1744;
    background: rgba(211, 47, 47, 0.25);
}

.box-graphic {
    font-size: 76px;
    margin-bottom: 24px;
}

.info-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ff1744;
    font-weight: 700;
    text-transform: uppercase;
}

.info-box p {
    font-size: 18px;
    color: #ffcdd2;
    line-height: 1.9;
}

.gaming-space {
    padding: 100px 0;
    background: #2d0a0a;
}

.gaming-top {
    text-align: center;
    margin-bottom: 60px;
}

.gaming-text {
    font-size: 23px;
    color: #ffcdd2;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.9;
}

.game-holder {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(211, 47, 47, 0.4);
    border: 4px solid rgba(211, 47, 47, 0.6);
    margin-bottom: 30px;
}

.game-embed {
    width: 100%;
    height: 680px;
    border: none;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .game-embed {
        height: 530px;
    }
}

.game-alert {
    text-align: center;
    font-size: 20px;
    color: #ffcdd2;
    font-weight: 700;
}

.alerts-space {
    padding: 100px 0;
    background: #1a0000;
}

.alerts-top {
    text-align: center;
    margin-bottom: 70px;
}

.alerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 45px;
}

.alert-box {
    padding: 48px 40px;
    border-radius: 22px;
    text-align: center;
    border: 4px solid;
    transition: all 0.35s;
}

.alert-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.alert-box.danger-style {
    border-color: #ff5252;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(255, 82, 82, 0.2));
}

.alert-box.success-style {
    border-color: #ff1744;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(255, 23, 68, 0.2));
}

.alert-box.warning-style {
    border-color: #d32f2f;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(211, 47, 47, 0.2));
}

.alert-icon {
    font-size: 76px;
    margin-bottom: 26px;
}

.alert-box h3 {
    font-size: 30px;
    margin-bottom: 22px;
    color: #ff1744;
    font-weight: 700;
    text-transform: uppercase;
}

.alert-box p {
    font-size: 18px;
    color: #ffcdd2;
    line-height: 1.9;
}

.perks-space {
    padding: 100px 0;
    background: #2d0a0a;
}

.perks-top {
    text-align: center;
    margin-bottom: 70px;
}

.perks-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 50px;
}

.perk-row {
    display: flex;
    gap: 28px;
    background: rgba(211, 47, 47, 0.1);
    padding: 38px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.2);
    transition: all 0.35s;
    border-left: 6px solid #d32f2f;
}

.perk-row:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(211, 47, 47, 0.4);
    background: rgba(211, 47, 47, 0.2);
}

.perk-badge {
    font-size: 56px;
    flex-shrink: 0;
}

.perk-info h4 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #ff1744;
    font-weight: 700;
    text-transform: uppercase;
}

.perk-info p {
    font-size: 17px;
    color: #ffcdd2;
    line-height: 1.9;
}

.action-space {
    padding: 120px 0;
    background: linear-gradient(135deg, #b71c1c, #d32f2f);
}

.action-panel {
    text-align: center;
    padding: 75px 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
}

.action-panel h2 {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.action-panel p {
    font-size: 26px;
    color: #ffebee;
    margin-bottom: 48px;
}

.action-link {
    display: inline-block;
    padding: 22px 65px;
    background: white;
    color: #b71c1c;
    text-decoration: none;
    border-radius: 50px;
    font-size: 26px;
    font-weight: 900;
    transition: all 0.35s;
    border: 4px solid transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.action-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
    border-color: #ffebee;
}

.bottom-bar {
    background: #000;
    padding: 80px 0 40px;
    color: #ffcdd2;
    border-top: 4px solid #d32f2f;
}

.bar-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.bar-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 55px;
    margin-bottom: 55px;
}

.bar-column h4 {
    font-size: 26px;
    margin-bottom: 24px;
    color: #ff1744;
    font-weight: 700;
    text-transform: uppercase;
}

.bar-column p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.9;
}

.bar-list {
    list-style: none;
}

.bar-list li {
    margin-bottom: 14px;
}

.bar-list a {
    color: #ffcdd2;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s;
}

.bar-list a:hover {
    color: white;
}

.bar-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid rgba(211, 47, 47, 0.5);
    color: #ef9a9a;
    font-size: 16px;
}

.verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.verify-overlay.hidden {
    display: none;
}

.verify-box {
    background: linear-gradient(135deg, #1a0000, #2d0a0a);
    padding: 65px 55px;
    border-radius: 30px;
    text-align: center;
    max-width: 580px;
    border: 5px solid #d32f2f;
    box-shadow: 0 25px 70px rgba(211, 47, 47, 0.5);
}

.verify-emoji {
    font-size: 95px;
    margin-bottom: 26px;
}

.verify-box h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #ff1744;
    font-weight: 900;
    text-transform: uppercase;
}

.verify-box p {
    font-size: 21px;
    margin-bottom: 20px;
    color: #ffcdd2;
    line-height: 1.8;
}

.verify-buttons {
    display: flex;
    gap: 28px;
    margin-top: 42px;
    justify-content: center;
}

.yes-button,
.no-button {
    padding: 20px 50px;
    font-size: 21px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.35s;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

.yes-button {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    color: white;
}

.yes-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(76, 175, 80, 0.5);
}

.no-button {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
}

.no-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(244, 67, 54, 0.5);
}

@media (max-width: 768px) {
    .verify-box {
        padding: 45px 35px;
        margin: 24px;
    }

    .verify-buttons {
        flex-direction: column;
        width: 100%;
    }

    .yes-button,
    .no-button {
        width: 100%;
    }
}

.play-top {
    padding: 80px 0 45px;
    text-align: center;
    background: #1a0000;
}

.play-top h2 {
    font-size: 50px;
    color: #ff1744;
    margin-bottom: 22px;
    font-weight: 900;
    text-transform: uppercase;
}

.play-top p {
    font-size: 21px;
    color: #ffcdd2;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.9;
}

.controls-box {
    background: rgba(211, 47, 47, 0.15);
    padding: 42px;
    border-radius: 20px;
    border: 3px solid rgba(211, 47, 47, 0.5);
    margin-top: 40px;
}

.controls-box h3 {
    font-size: 32px;
    color: #ff1744;
    margin-bottom: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.controls-box ul {
    list-style: none;
}

.controls-box li {
    font-size: 18px;
    color: #ffcdd2;
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
    line-height: 1.9;
}

.controls-box li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ff1744;
    font-size: 16px;
}

.play-warning {
    padding: 75px 0;
}

.docs-page {
    padding: 85px 0;
    background: #1a0000;
}

.docs-page h1 {
    font-size: 62px;
    text-align: center;
    margin-bottom: 65px;
    color: #ff1744;
    font-weight: 900;
    text-transform: uppercase;
}

.content-block {
    background: rgba(211, 47, 47, 0.1);
    padding: 48px;
    border-radius: 22px;
    border-left: 8px solid #d32f2f;
    margin-bottom: 38px;
}

.content-block h2 {
    font-size: 38px;
    margin-bottom: 26px;
    color: #ff1744;
    font-weight: 700;
    text-transform: uppercase;
}

.content-block h3 {
    font-size: 30px;
    margin-top: 32px;
    margin-bottom: 20px;
    color: #ff5252;
    font-weight: 600;
}

.content-block p {
    font-size: 18px;
    color: #ffcdd2;
    margin-bottom: 20px;
    line-height: 2;
}

.content-block ul,
.content-block ol {
    margin-left: 32px;
    margin-bottom: 20px;
}

.content-block li {
    font-size: 18px;
    color: #ffcdd2;
    margin-bottom: 14px;
    line-height: 2;
}

.content-block strong {
    color: #ff1744;
    font-weight: 700;
}

.timestamp {
    text-align: center;
    font-size: 16px;
    color: #ef5350;
    margin-top: 50px;
}
