

.static-page-container {
    padding-bottom: 60px;
}


.static-banner {
    position: relative;
    min-height: 280px;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(200, 200, 200, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
    border-radius: 32px;
    padding: 48px;
    margin-bottom: 32px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.static-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: bannerGlow 8s ease-in-out infinite;
}

@keyframes bannerGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.static-banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.static-banner-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.static-banner-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.static-banner-content .last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.static-banner-content .last-updated i {
    color: #c0c0c0;
}

.static-banner-icon {
    position: relative;
    z-index: 2;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    flex-shrink: 0;
}

.static-banner-icon i {
    font-size: 80px;
    background: linear-gradient(135deg, #c0c0c0 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.2));
}


.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.quick-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.quick-info-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.quick-info-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    flex-shrink: 0;
}

.quick-info-icon i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.quick-info-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.quick-info-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}


.static-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
}

.static-section {
    padding: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.static-section:last-child {
    border-bottom: none;
}

.static-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.static-section-header .section-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(200, 200, 200, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    color: #c0c0c0;
    flex-shrink: 0;
}

.static-section-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.static-section-body {
    padding-left: 56px;
}

.static-section-body p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 16px;
}

.static-section-body p:last-child {
    margin-bottom: 0;
}

.static-section-body ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.static-section-body ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.static-section-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #c0c0c0, #ffffff);
    border-radius: 50%;
}

.static-section-body ul li:last-child {
    margin-bottom: 0;
}

.static-section-body ul li strong {
    color: #fff;
    font-weight: 600;
}

.static-section-body a {
    color: #c0c0c0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.static-section-body a:hover {
    color: #ffffff;
    text-decoration: underline;
}


.highlight-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(200, 200, 200, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-box i {
    font-size: 24px;
    color: #c0c0c0;
    flex-shrink: 0;
}

.highlight-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}


.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.resource-link i {
    font-size: 20px;
    color: #c0c0c0;
}

.resource-link span {
    font-size: 14px;
    font-weight: 600;
}


.toc-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 32px;
}

.toc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.toc-header i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
}

.toc-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.toc-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 8px;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.toc-item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.toc-item .toc-number {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}


.rg-warning-card {
    background: linear-gradient(135deg, rgba(255, 91, 91, 0.1) 0%, rgba(255, 91, 91, 0.02) 100%);
    border: 1px solid rgba(255, 91, 91, 0.2);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.rg-warning-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 91, 91, 0.15);
    border-radius: 16px;
    flex-shrink: 0;
}

.rg-warning-icon i {
    font-size: 28px;
    color: #ff5b5b;
}

.rg-warning-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.rg-warning-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}


.age-limit-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff5b5b, #ff8f8f);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(255, 91, 91, 0.3);
}


.static-footer-cta {
    background: linear-gradient(135deg, #151515 0%, #0d0d0d 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 40px;
    margin-top: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.static-footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.static-footer-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
}

.static-footer-cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
}

.static-footer-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #d0d0d0 0%, #ffffff 100%);
    border-radius: 14px;
    color: #1a1a1a;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.static-footer-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}


@media (max-width: 992px) {
    .static-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        min-height: auto;
    }

    .static-banner-content {
        max-width: 100%;
    }

    .static-banner-icon {
        width: 140px;
        height: 140px;
    }

    .static-banner-icon i {
        font-size: 60px;
    }

    .static-section-body {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .static-banner {
        padding: 32px;
        border-radius: 24px;
    }

    .static-banner-content h1 {
        font-size: 28px;
    }

    .static-section {
        padding: 24px;
    }

    .static-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .quick-info-grid {
        grid-template-columns: 1fr;
    }

    .rg-warning-card {
        flex-direction: column;
        text-align: center;
    }

    .toc-list {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .static-footer-cta {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .static-banner {
        padding: 24px;
    }

    .static-banner-icon {
        width: 100px;
        height: 100px;
    }

    .static-banner-icon i {
        font-size: 48px;
    }

    .static-section {
        padding: 20px;
    }

    .static-section-header h2 {
        font-size: 18px;
    }

    .quick-info-card {
        padding: 20px;
    }
}