/* ============================================================================
   ABOUT.CSS - OPTIMIZED VERSION (About.php ile Uyumlu)
   ============================================================================ */

/* Base Styles */
:root {
    --primary-color: #c0392b;
    --secondary-color: #2c3e50;
    --light-color: #ecf0f1;
    --dark-color: #121212;
    --gray-color: #95a5a6;
    --border-color: #34495e;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: white;
    background-image: url('https://admin.forbiddenexus.com/assets/785ec0d9-d5fb-4946-8de7-3c1c3d631323');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #a93226;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================================================
   LAYOUT - Main Container (About.php ile uyumlu)
   ============================================================================ */

.main-container-full {
    margin-top: 100px;
    margin-bottom: 50px;
    background-color: rgba(50, 50, 50, 0.8);
    max-width: 1200px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ============================================================================
   ABOUT HERO (About.php'deki about-hero section'ı için) - KÜÇÜLTÜLMÜŞ
   ============================================================================ */

.about-hero {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(44,62,80,0.6) 100%);
    border-radius: 12px;
    border: 1px solid rgba(192, 57, 43, 0.3);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(192, 57, 43, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hero-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #a93226 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

.hero-title {
    font-size: 2.2rem;
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, var(--primary-color) 0%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ecf0f1;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    opacity: 0.9;
}

/* ============================================================================
   SECTIONS
   ============================================================================ */

.about-section {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(44,62,80,0.4) 0%, rgba(0,0,0,0.6) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.about-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(192, 57, 43, 0.2);
}

.about-section.reverse {
    grid-template-columns: auto 1fr;
}

.about-section.reverse .section-content {
    order: 2;
}

.about-section.reverse .section-icon {
    order: 1;
}

.section-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.section-content h2 i {
    margin-right: 15px;
    font-size: 1.8rem;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ecf0f1;
    margin-bottom: 20px;
}

.section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #a93226 100%);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.4);
}

.section-icon i {
    font-size: 3rem;
    color: white;
}

/* ============================================================================
   PRINCIPLES GRID
   ============================================================================ */

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.principle-card {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(44,62,80,0.6) 100%);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(192, 57, 43, 0.3);
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(192, 57, 43, 0.3);
    border-color: var(--primary-color);
}

.principle-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.principle-card h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.principle-card p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.6;
}

/* ============================================================================
   STATISTICS SECTION
   ============================================================================ */

.stats-section {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.1) 0%, rgba(0,0,0,0.8) 100%);
    border-radius: 15px;
    border: 2px solid rgba(192, 57, 43, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stats-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stats-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.stats-section h2 i {
    margin-right: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(44,62,80,0.7) 100%);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(192, 57, 43, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(192, 57, 43, 0.4);
    border-color: var(--primary-color);
    text-decoration: none;
    color: inherit;
}

.stat-card:visited {
    color: inherit;
    text-decoration: none;
}

.stat-card.keyboard-focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 1.1rem;
    color: #bdc3c7;
    font-weight: 500;
}

/* ============================================================================
   TEAM SECTION
   ============================================================================ */

.team-section {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(44,62,80,0.4) 0%, rgba(0,0,0,0.8) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.team-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.team-section h2 i {
    margin-right: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(44,62,80,0.6) 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(192, 57, 43, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(192, 57, 43, 0.3);
    border-color: var(--primary-color);
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.4);
    background: linear-gradient(135deg, var(--primary-color) 0%, #a93226 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.member-avatar:hover img {
    transform: scale(1.05);
}

.member-avatar img.fade-in {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.member-avatar img.error-handled {
    object-fit: contain;
    padding: 10px;
}

.member-info h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.role-badge {
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.role-badge.grandmaster,
.role-badge.nexusmaster,
.role-badge.founder,
.role-badge.admin,
.role-badge.moderator,
.role-badge.editor,
.role-badge.author {
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
}

.role-badge i {
    color: var(--primary-color);
    margin-right: 5px;
}

.member-info p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.6;
}

/* Contributors Section */
.contributors-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(192, 57, 43, 0.3);
}

.contributors-section h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contributors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.contributor-card {
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(44,62,80,0.4) 100%);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(192, 57, 43, 0.2);
    transition: all 0.3s ease;
}

.contributor-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(192, 57, 43, 0.2);
}

.contributor-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    margin-bottom: 10px;
    object-fit: cover;
}

.contributor-name {
    font-size: 0.9rem;
    color: #bdc3c7;
    font-weight: 500;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.contact-cta {
    margin: 60px 0;
    padding: 50px;
    background: black;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(192, 57, 43, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.contact-cta.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content {
    text-align: center;
    padding: 40px 30px;
    background: var(--primary-color);
    border-radius: 12px;
    border: 2px solid rgba(192, 57, 43, 0.3);
    transition: all 0.3s ease;
}

.cta-content:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(192, 57, 43, 0.2);
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: whitesmoke;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: white;
    line-height: 1.6;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: black;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--primary-color);
}

.btn-cta:hover {
    background: var(--gray-color);
    color: whitesmoke;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
}

.btn-cta.register-btn {
    background: black;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-cta.register-btn:hover {
    background: var(--gray-color);
    color: white;
}

.btn-cta i {
    font-size: 1.2rem;
}

/* ============================================================================
   FOOTER LIST STYLE FIX (Beyaz noktaları kaldırır)
   ============================================================================ */

/* Footer'daki tüm ul ve li elementlerinin list style'ını kaldır */
.footer-component ul,
.footer-component ol,
.footer-links,
.footer-links-list,
.footer-section ul {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0;
    margin: 0;
}

.footer-component li,
.footer-links li,
.footer-links-list li,
.footer-section ul li {
    list-style: none !important;
    list-style-type: none !important;
    position: relative;
    margin-bottom: 12px;
}

/* Footer link stilleri */
.footer-link {
    color: var(--footer-text, #ffffff);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--footer-accent, #c0392b);
    opacity: 1;
    transform: translateX(5px);
}

.footer-link i {
    color: var(--footer-accent, #c0392b);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-link:hover i {
    transform: translateX(3px);
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 992px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-section.reverse {
        grid-template-columns: 1fr;
    }
    
    .section-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .section-icon i {
        font-size: 2.5rem;
    }
    
    .principles-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-container-full {
        margin-top: 100px;
        padding: 20px;
    }
    
    .hero-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-hero {
        padding: 20px 15px;
        margin-bottom: 25px;
    }
    
    .hero-icon i {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 20px;
        margin-bottom: 40px;
    }
    
    .section-content h2 {
        font-size: 1.6rem;
    }
    
    .section-content p {
        font-size: 1rem;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta {
        padding: 30px 20px;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .btn-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .about-hero {
        padding: 18px 15px;
        margin-bottom: 20px;
    }
    
    .hero-icon i {
        font-size: 1.8rem;
    }
    
    .section-content h2 {
        font-size: 1.4rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .btn-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Scrollbar Stilleri */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #a93226;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #c0392b;
    border-radius: 10px;
    border: 2px solid #a93226;
}

::-webkit-scrollbar-thumb:hover {
    background: #000;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #000 #a93226;
}