/* ============ ABOUT PAGE ============ */
:root {
    --primary: #8B2252;
    --primary-dark: #6B1A3F;
    --primary-light: #A83262;
    --primary-glow: rgba(139, 34, 82, 0.3);
    --primary-bg: rgba(139, 34, 82, 0.05);
    --primary-bg-hover: rgba(139, 34, 82, 0.1);
    --primary-border: rgba(139, 34, 82, 0.2);
    --primary-border-hover: rgba(139, 34, 82, 0.4);
    --gold: rgba(212, 175, 55, 1);
    --bg-dark: #0a0a0a;
    --bg-card: #151515;
    --text: #ffffff;
    --text-light: #cccccc;
    --text-muted: #888888;
}

/* ===== HERO ===== */
.about-hero {
    min-height: 50vh;
    padding-top: 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a15 40%, #0a0a0a 100%);
    text-align: center;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.about-hero .hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 30px var(--primary-glow));
    animation: float 3s ease-in-out infinite;
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-subtitle strong {
    color: var(--primary);
    font-size: 1.4rem;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-tags span {
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
}

/* ===== MAIN ===== */
.about-main {
    padding: 3rem 0 0;
}

.about-main .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== SECTION ===== */
.about-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.title-icon {
    font-size: 1.8rem;
}

/* ===== HEAVY RP GRID ===== */
.heavy-rp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.heavy-rp-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
    border-top: 3px solid transparent;
}

.heavy-rp-card:hover {
    border-top-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.heavy-rp-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.heavy-rp-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.heavy-rp-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===== FEATURES LIST ===== */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
    border-right: 3px solid transparent;
}

.feature-item:hover {
    border-right-color: var(--primary);
    background: rgba(139, 34, 82, 0.02);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: 15px;
}

.feature-text h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===== STATS ===== */
.stats-section {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    display: block;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 20px var(--primary-glow);
}

.stat-name {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== CTA ===== */
.about-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-bg), transparent);
    border-radius: 20px;
    border: 1px solid var(--primary-border);
    margin-bottom: 3rem;
}

.about-cta h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.about-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s, scale 0.5s cubic-bezier(0.3, 0, 0, 1);
    font-family: inherit;
}

.btn:hover {
    scale: 1.05;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 10px 25px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-bg);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
        padding-top: 70px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-subtitle strong {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .heavy-rp-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .about-cta h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* HeavyRP Cards */
.heavy-rp-card:hover {
    border-top-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 
                0 0 100px rgba(139, 34, 82, 0.2);
}

/* Feature Items */
.feature-item:hover {
    border-right-color: var(--primary);
    background: rgba(139, 34, 82, 0.02);
    box-shadow: 0 0 100px rgba(139, 34, 82, 0.15);
}

/* Stat Cards */
.stat-card:hover {
    box-shadow: 0 0 80px rgba(139, 34, 82, 0.2);
    transform: translateY(-3px);
}

/* CTA Section */
.about-cta:hover {
    box-shadow: 0 0 120px rgba(139, 34, 82, 0.15);
}