* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to bottom right, #1a0000 0%, #330000 100%);
    color: #f5e6e6;
    line-height: 1.75;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-check {
    position: fixed;
    inset: 0;
    background: rgba(26, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-check.hide {
    display: none;
}

.check-box {
    background: linear-gradient(135deg, #330000 0%, #4d0000 100%);
    padding: 4rem 3.5rem;
    border-radius: 8px;
    max-width: 600px;
    width: 92%;
    text-align: center;
    border: 4px solid #DC143C;
    box-shadow: 0 25px 75px rgba(220, 20, 60, 0.5);
}

.check-icon {
    font-size: 5.5rem;
    margin-bottom: 2rem;
}

.check-box h2 {
    color: #FF6B6B;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.check-box p {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 3rem;
    color: #d9b3b3;
}

.check-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-yes, .btn-no {
    padding: 1.4rem 3.5rem;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
}

.btn-yes {
    background: linear-gradient(135deg, #DC143C 0%, #FF6B6B 100%);
    color: #1a0000;
}

.btn-yes:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 45px rgba(220, 20, 60, 0.6);
}

.btn-no {
    background: #3d1a1a;
    color: #d9b3b3;
}

.btn-no:hover {
    background: #5d2a2a;
}

.main-header {
    background: rgba(26, 0, 0, 0.92);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.8);
    border-bottom: 3px solid #DC143C;
}

.nav-box {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-text {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B6B;
    letter-spacing: 3px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.toggle-bar {
    width: 32px;
    height: 3px;
    background: #DC143C;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.menu-list a {
    color: #f5e6e6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.menu-list a:hover {
    color: #FF6B6B;
}

.top-banner {
    background: linear-gradient(135deg, #330000 0%, #4d0000 50%, #DC143C 100%);
    padding: 10rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        rgba(220, 20, 60, 0.05) 50px,
        rgba(220, 20, 60, 0.05) 100px
    );
}

.banner-wrap {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.banner-text h1 {
    font-size: 4.5rem;
    color: #FF6B6B;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
}

.banner-line {
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 3.5rem;
    color: #f5e6e6;
}

.banner-btn {
    display: inline-block;
    padding: 1.5rem 4.5rem;
    background: linear-gradient(135deg, #DC143C 0%, #FF6B6B 100%);
    color: #1a0000;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.5);
}

.banner-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 55px rgba(220, 20, 60, 0.7);
}

.wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.intro-section {
    padding: 6rem 0;
    background: rgba(51, 0, 0, 0.4);
}

.title-main {
    font-size: 3.5rem;
    color: #FF6B6B;
    text-align: center;
    margin-bottom: 3rem;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 2.1;
    margin-bottom: 2rem;
    color: #d9b3b3;
    text-align: center;
}

.features-section {
    padding: 6rem 0;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-box {
    background: linear-gradient(to bottom, #330000 0%, #4d0000 100%);
    padding: 3.5rem;
    border-radius: 8px;
    text-align: center;
    border: 3px solid #DC143C;
    transition: all 0.4s;
}

.feature-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(220, 20, 60, 0.5);
    border-color: #FF6B6B;
}

.feature-emoji {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.feature-box h3 {
    color: #FF6B6B;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-box p {
    font-size: 1.15rem;
    line-height: 2;
    color: #d9b3b3;
}

.game-section {
    padding: 6rem 0;
    background: rgba(51, 0, 0, 0.4);
}

.game-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #d9b3b3;
    margin-bottom: 4rem;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border: 4px solid #DC143C;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.9);
}

.game-frame {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.info-blocks {
    padding: 6rem 0;
}

.blocks-grid {
    display: grid;
    gap: 3rem;
}

.info-block {
    padding: 3.5rem;
    border-radius: 8px;
}

.red-block {
    background: linear-gradient(135deg, #330000 0%, #4d0000 100%);
    border-left: 8px solid #DC143C;
}

.dark-block {
    background: rgba(26, 0, 0, 0.7);
    border-left: 8px solid #FF6B6B;
}

.info-block h3 {
    color: #FF6B6B;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.info-block p {
    font-size: 1.2rem;
    line-height: 2.1;
    color: #d9b3b3;
}

.commitment-section {
    padding: 6rem 0;
    background: rgba(220, 20, 60, 0.1);
}

.commitment-card {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #330000 0%, #5d0000 100%);
    padding: 4.5rem;
    border-radius: 8px;
    border: 4px solid #FF6B6B;
}

.commitment-card h2 {
    color: #FF6B6B;
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
}

.commitment-card p {
    font-size: 1.2rem;
    line-height: 2.2;
    color: #d9b3b3;
    margin-bottom: 2rem;
}

.commitment-card p:last-child {
    margin-bottom: 0;
}

.notices-section {
    padding: 6rem 0;
}

.notices-card {
    background: rgba(51, 0, 0, 0.6);
    border: 4px solid #DC143C;
    border-radius: 8px;
    padding: 4rem;
}

.notices-card h3 {
    color: #FF6B6B;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3.5rem;
}

.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.notice {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2.5rem;
    background: rgba(26, 0, 0, 0.8);
    border-radius: 6px;
    border-left: 6px solid #FF6B6B;
}

.notice strong {
    color: #FF6B6B;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.notice span {
    color: #d9b3b3;
    font-size: 1.1rem;
    line-height: 1.8;
}

.site-footer {
    background: #1a0000;
    padding: 5rem 0 2.5rem;
    margin-top: 6rem;
    border-top: 4px solid #DC143C;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-block h4 {
    color: #FF6B6B;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-block p {
    color: #d9b3b3;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.footer-links a {
    color: #d9b3b3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FF6B6B;
}

.footer-line {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(220, 20, 60, 0.3);
    color: #997373;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .menu-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 0, 0, 0.98);
        flex-direction: column;
        padding: 2.5rem;
        gap: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .menu-list.visible {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .banner-text h1 {
        font-size: 3.2rem;
    }

    .banner-line {
        font-size: 1.2rem;
    }

    .game-frame {
        height: 500px;
    }

    .notices-grid {
        grid-template-columns: 1fr;
    }
}

.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
}

.page-wrapper h1 {
    font-size: 4rem;
    color: #FF6B6B;
    text-align: center;
    margin-bottom: 3rem;
}

.page-wrapper h2 {
    font-size: 2.5rem;
    color: #FF6B6B;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
}

.page-wrapper h3 {
    font-size: 1.9rem;
    color: #FF6B6B;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-wrapper p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 2;
    color: #d9b3b3;
}

.page-wrapper ul, .page-wrapper ol {
    margin-bottom: 2rem;
    margin-left: 2.5rem;
    color: #d9b3b3;
}

.page-wrapper li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 2;
}

.page-wrapper strong {
    color: #FF6B6B;
}

.play-area {
    padding: 4rem 0;
}

.play-head {
    text-align: center;
    margin-bottom: 4rem;
}

.play-head h1 {
    font-size: 4rem;
    color: #FF6B6B;
    margin-bottom: 1.5rem;
}

.play-info {
    background: rgba(220, 20, 60, 0.1);
    border: 4px solid #DC143C;
    border-radius: 8px;
    padding: 3.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

.play-info h3 {
    color: #FF6B6B;
    margin-bottom: 2rem;
    font-size: 2.3rem;
}

.play-info ul {
    list-style: none;
    display: grid;
    gap: 1.3rem;
}

.play-info li {
    font-size: 1.2rem;
}
