.content-page {
    min-height: calc(100vh - 200px);
    padding-top: 80px;
}

.content-header {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.content-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(220, 20, 60, 0.03) 2px,
            rgba(220, 20, 60, 0.03) 4px
        );
    animation: scan 8s linear infinite;
}

.content-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
}

.content-title {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.8), 0 0 60px rgba(220, 20, 60, 0.4);
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease;
}

.content-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.content-body {
    padding: 60px 0 80px;
}

.content-card {
    background: linear-gradient(145deg, var(--dark-gray), var(--medium-gray));
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--light-gray);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    animation: borderSlide 3s ease-in-out infinite;
}

@keyframes borderSlide {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.content-card h2 {
    color: var(--primary-red);
    font-size: 32px;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card h3 {
    color: var(--text-white);
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.content-card ul,
.content-card ol {
    color: var(--text-gray);
    line-height: 1.8;
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-card li {
    margin-bottom: 10px;
}

.content-card strong,
.content-card b {
    color: var(--text-white);
    font-weight: 600;
}

.content-card a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.content-card a:hover {
    color: var(--dark-red);
    border-bottom-color: var(--primary-red);
}

.loading {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    padding: 40px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .content-title {
        font-size: 36px;
    }
    
    .content-subtitle {
        font-size: 16px;
    }
    
    .content-card {
        padding: 30px 20px;
    }
    
    .content-card h2 {
        font-size: 24px;
    }
    
    .content-card h3 {
        font-size: 20px;
    }
}
