/* ==================== CSS Variables ==================== */
:root {
    /* Theme: #76BEC4 (teal) */
    --primary: #76BEC4;
    --primary-dark: #5a9ca3;
    --primary-light: #9dd1d6;
    --primary-glow: rgba(118, 190, 196, 0.5);
    --primary-subtle: rgba(118, 190, 196, 0.1);
    
    /* Background Colors */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #0f0f18;
    --bg-card-hover: #151520;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    
    /* Accent Colors */
    --accent-gold: #ffd700;
    --accent-silver: #c0c0c0;
    --accent-bronze: #cd7f32;
    --accent-purple: #9945ff;
    --accent-red: #ff4655;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1400px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ==================== Reset & Base ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-darker);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== Utilities ==================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-subtle);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--primary-glow);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-normal);
    box-shadow: 0 0 10px var(--primary-glow);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ==================== Hero Section ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, var(--primary-subtle) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--primary-subtle) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(118, 190, 196, 0.05) 0%, transparent 30%);
}

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -25px); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(118, 190, 196, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(118, 190, 196, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    z-index: 1;
}

.hero-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.glitch-text {
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% { opacity: 1; }
    92% { opacity: 0.8; transform: translateX(-2px); }
    94% { opacity: 0.8; transform: translateX(2px); }
    96% { opacity: 1; transform: translateX(0); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    width: 400px;
    height: 500px;
}

.jett-silhouette {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 50px var(--primary-glow),
        inset 0 0 50px rgba(118, 190, 196, 0.1);
}

.jett-silhouette.hero-photo-wrap::before {
    display: none;
}

.hero-photo-wrap .hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jett-silhouette:not(.hero-photo-wrap)::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-subtle), transparent 30%);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.agent-icon {
    position: relative;
    z-index: 1;
}

.jett-logo {
    width: 200px;
    height: 200px;
    color: var(--primary);
    filter: drop-shadow(0 0 30px var(--primary-glow));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.rank-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-purple), var(--primary));
    padding: 15px 40px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(153, 69, 255, 0.4);
}

.rank-icon {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.rank-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 10px;
    background: var(--primary);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; top: 10px; }
    50% { opacity: 0.5; top: 25px; }
}

.scroll-indicator p {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==================== About Section ==================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid rgba(118, 190, 196, 0.1);
    border-radius: var(--radius-md);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(118, 190, 196, 0.15);
}

.card-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-subtle) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.about-card:hover .card-glow {
    opacity: 1;
}

.main-info {
    grid-column: 1 / -1;
}

.player-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 25px;
}

.avatar {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 50%;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.avatar-letter {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
}

.player-names .nickname {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.player-names .real-name {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Kart genişliği formülü: ikon + boşluk + (metin karakter sayısı × 1ch) + yatay padding.
   ch = mevcut font'ta "0" genişliği → yazı boyutu değişince otomatik ölçeklenir. */
.info-details {
    --detail-icon: 1.5rem;
    --detail-gap: 15px;
    --detail-px: 20px;
    --detail-ch: 20ch; /* value için yaklaşık max karakter (Jett≈4, Sung Jin Woo#TR001≈18) */
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.detail-item {
    flex: 1 1 calc(var(--detail-icon) + var(--detail-gap) + var(--detail-ch) + var(--detail-px) * 2);
    min-width: min(100%, calc(var(--detail-icon) + var(--detail-gap) + var(--detail-ch) + var(--detail-px) * 2));
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: var(--detail-gap);
    padding: var(--detail-px);
    background: rgba(118, 190, 196, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(118, 190, 196, 0.1);
}

.detail-item .label,
.detail-item .value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detail-item i {
    font-size: var(--detail-icon);
    color: var(--primary);
    flex-shrink: 0;
}

.detail-item .label {
    display: block;
    font-size: 0.8em;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-item .value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bio-text {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.bio-text strong {
    color: var(--primary);
}

.traits-list {
    list-style: none;
    display: grid;
    gap: 15px;
}

.traits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(118, 190, 196, 0.05);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
    transition: all var(--transition-fast);
}

.traits-list li:hover {
    background: rgba(118, 190, 196, 0.1);
    transform: translateX(10px);
}

.trait-icon {
    font-size: 1.3rem;
}

/* Valorant Detayları kartı */
.valorant-extra {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
}

.valorant-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.valorant-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(118, 190, 196, 0.05);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
}

.valorant-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.valorant-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.btn-valorant {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #ff4655, #cc3545);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(255, 70, 85, 0.3);
}

.btn-valorant:hover {
    background: linear-gradient(135deg, #ff5765, #ff4655);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 70, 85, 0.4);
}

/* ==================== Stats Section ==================== */
.stats {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.stats-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 12px;
}

.stats-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
    margin-bottom: 30px;
}

.stats-note.tracker-loaded {
    color: var(--primary);
}

.text-muted {
    color: var(--text-muted);
}

.btn-tracker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--bg-card) 100%);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    box-shadow: 0 0 20px rgba(118, 190, 196, 0.15);
}

.btn-tracker:hover {
    background: var(--primary-subtle);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--primary-glow);
}

.btn-refresh-stats {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--primary);
    color: var(--bg-dark);
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-refresh-stats:hover:not(:disabled) {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-refresh-stats:disabled {
    opacity: 0.85;
    cursor: not-allowed;
}

/* Profil başlığı: Rating, Level, W/L */
.profile-header-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 24px 28px;
    background: var(--bg-card);
    border: 1px solid rgba(118, 190, 196, 0.15);
    border-radius: var(--radius-md);
    flex-wrap: wrap;
}

.profile-rank-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-rank-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-rank-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.profile-wl-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.profile-w {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.profile-l {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-muted);
}

.profile-wl-label {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.stats-grid-top {
    grid-template-columns: repeat(4, 1fr);
}

.stats-grid-extra {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(118, 190, 196, 0.1);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card-tracker {
    padding-left: 36px;
    text-align: left;
}

.stat-card-accent {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: rgba(118, 190, 196, 0.4);
    border-radius: 0 2px 2px 0;
}

.stat-percentile {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* Mini stat kartları (Tracker.gg orta/alt satır) */
.stat-card-mini {
    background: var(--bg-card);
    border: 1px solid rgba(118, 190, 196, 0.08);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-card-mini:hover {
    border-color: rgba(118, 190, 196, 0.2);
    box-shadow: 0 4px 20px rgba(118, 190, 196, 0.08);
}

.stat-mini-value {
    display: block;
    font-family: 'Orbitron', system-ui, -apple-system, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
    min-height: 1.2em;
    visibility: visible;
}

.stat-mini-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-mini-pct {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.stat-card-mini.stat-mini-no-pct .stat-mini-pct {
    display: none;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(118, 190, 196, 0.2);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-subtle), transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.stat-value {
    font-family: 'Orbitron', system-ui, -apple-system, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
    min-height: 1.2em;
    display: block;
    visibility: visible;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.stat-bar {
    height: 6px;
    background: rgba(118, 190, 196, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

/* ==================== Top Agents (son maçlar tablosu) ==================== */
.top-agents-section {
    margin-top: 60px;
}

.top-agents-header {
    margin-bottom: 24px;
}

.top-agents-header .subsection-title {
    text-align: left;
    margin-bottom: 8px;
}

.top-agents-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.top-agents-view-all {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
}

.top-agents-view-all:hover {
    color: var(--primary-light);
}

.top-agents-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid rgba(118, 190, 196, 0.15);
    background: var(--bg-card);
}

.top-agents-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.top-agents-table th {
    text-align: left;
    padding: 16px 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(118, 190, 196, 0.15);
    background: rgba(0, 0, 0, 0.2);
}

.top-agents-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.top-agents-table tbody tr:last-child td {
    border-bottom: none;
}

.top-agents-table tbody tr:hover {
    background: rgba(118, 190, 196, 0.05);
}

.top-agents-table tbody tr.agent-row.featured {
    background: rgba(118, 190, 196, 0.08);
}

.agent-name-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.agent-icon-small {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--bg-darker);
    border: 1px solid rgba(118, 190, 196, 0.2);
    color: var(--primary);
}

.agent-icon-small svg {
    width: 20px;
    height: 20px;
}

.agent-icon-small i {
    font-size: 1rem;
}

.agent-row.featured .agent-icon-small {
    background: var(--primary-subtle);
    border-color: var(--primary);
}

.agent-playtime {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: normal;
    margin-top: 4px;
}

.dda-positive {
    color: var(--primary) !important;
    font-weight: 600;
}

.dda-negative {
    color: #ff6b50 !important;
    font-weight: 600;
}

.best-map {
    color: var(--text-secondary);
}

.map-wr {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    margin-top: 2px;
}

.stat-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease-out;
    box-shadow: 0 0 20px var(--primary-glow);
}

.subsection-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.agent-card {
    background: var(--bg-card);
    border: 1px solid rgba(118, 190, 196, 0.1);
    border-radius: var(--radius-md);
    padding: 40px 20px;
    text-align: center;
    transition: all var(--transition-normal);
}

.agent-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(118, 190, 196, 0.2);
}

.agent-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--bg-card), rgba(118, 190, 196, 0.1));
}

.agent-card.featured .agent-icon {
    background: var(--primary);
    color: var(--bg-dark);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
    50% { box-shadow: 0 0 40px var(--primary-glow); }
}

.agent-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-darker);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.agent-icon svg,
.agent-icon i {
    width: 40px;
    height: 40px;
    font-size: 2rem;
}

.agent-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.agent-hours {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.agent-winrate {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--primary);
}

/* ==================== Achievements Section ==================== */
.achievements {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 80px;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 50px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -48px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-glow);
}

.timeline-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulse-ring 2s ease-in-out infinite;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid rgba(118, 190, 196, 0.1);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: all var(--transition-normal);
}

.timeline-content:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(118, 190, 196, 0.15);
}

.timeline-date {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    color: var(--primary);
    background: var(--primary-subtle);
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}

.timeline-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.trophy-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.trophy-card {
    background: var(--bg-card);
    border: 1px solid rgba(118, 190, 196, 0.1);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
}

.trophy-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(118, 190, 196, 0.15);
}

.trophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.trophy-icon.gold {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.trophy-icon.silver {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.4);
}

.trophy-icon.bronze {
    background: linear-gradient(135deg, #cd7f32, #8b5a2b);
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(205, 127, 50, 0.4);
}

.trophy-count {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.trophy-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== Gallery Section ==================== */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-darker));
    border: 1px solid rgba(118, 190, 196, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary);
    transition: all var(--transition-normal);
}

.gallery-placeholder i {
    font-size: 3rem;
    opacity: 0.5;
}

.gallery-placeholder span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover .gallery-placeholder {
    border-color: var(--primary);
    box-shadow: inset 0 0 50px var(--primary-subtle);
}

.gallery-overlay h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==================== Streams Section ==================== */
.streams {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.stream-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stream-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid rgba(118, 190, 196, 0.1);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.stream-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(118, 190, 196, 0.2);
}

.stream-card.twitch:hover {
    border-color: #9146ff;
    box-shadow: 0 20px 60px rgba(145, 70, 255, 0.3);
}

.stream-card.kick:hover {
    border-color: #53fc18;
    box-shadow: 0 20px 60px rgba(83, 252, 24, 0.3);
}

.stream-card.instagram:hover {
    border-color: #e4405f;
    box-shadow: 0 20px 60px rgba(228, 64, 95, 0.3);
}

.stream-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.stream-card.twitch .stream-icon {
    background: linear-gradient(135deg, #9146ff, #6441a5);
    color: white;
}

.stream-card.kick .stream-icon {
    background: linear-gradient(135deg, #53fc18, #00ff00);
    color: #1a1a1a;
}

.stream-card.instagram .stream-icon {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    color: white;
}

.stream-info {
    flex: 1;
}

.stream-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stream-info p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.stream-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--primary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.stream-arrow {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.stream-card:hover .stream-arrow {
    color: var(--primary);
    transform: translateX(5px);
}

.stream-schedule h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.schedule-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.schedule-item {
    background: var(--bg-card);
    border: 1px solid rgba(118, 190, 196, 0.1);
    border-radius: var(--radius-sm);
    padding: 20px 30px;
    text-align: center;
    transition: all var(--transition-normal);
}

.schedule-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.schedule-item .day {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.schedule-item .time {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ==================== Contact Section ==================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: var(--bg-card);
    border: 1px solid rgba(118, 190, 196, 0.1);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.social-link:hover {
    transform: translateX(10px);
}

.social-link i {
    font-size: 1.5rem;
}

.social-link.twitch:hover {
    border-color: #9146ff;
    color: #9146ff;
}

.social-link.kick:hover {
    border-color: #53fc18;
    color: #53fc18;
}

.social-link.twitter:hover {
    border-color: #1da1f2;
    color: #1da1f2;
}

.social-link.discord:hover {
    border-color: #5865f2;
    color: #5865f2;
}

.social-link.instagram:hover {
    border-color: #e4405f;
    color: #e4405f;
}

.social-link.youtube:hover {
    border-color: #ff0000;
    color: #ff0000;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(118, 190, 196, 0.1);
    border-radius: var(--radius-md);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    background: var(--bg-darker);
    border: 1px solid rgba(118, 190, 196, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-subtle);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-darker);
    color: var(--text-primary);
}

/* ==================== Footer ==================== */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(118, 190, 196, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo .logo-text {
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-logo p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid rgba(118, 190, 196, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--primary-subtle);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.made-with i {
    color: var(--accent-red);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .info-details .detail-item {
        flex: 1 1 min(100%, 280px);
    }
    
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right var(--transition-normal);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stream-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .info-details .detail-item {
        flex: 1 1 100%;
    }
    
    .stats-grid-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid-extra {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-header-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .profile-wl-block {
        margin-left: 0;
    }
    
    .top-agents-table th,
    .top-agents-table td {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    
    .agent-name-cell {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .agents-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .trophy-showcase {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .schedule-item {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-grid-top {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-extra {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card-tracker {
        text-align: center;
        padding-left: 30px;
    }
}

/* ==================== Cursor Trail Effect ==================== */
/* ==================== INNOVATIONS: 30 Animations & Effects ==================== */

/* 1. Page Loader */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-content {
    text-align: center;
}
.loader-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-bottom: 30px;
    animation: loaderLogoPulse 1.2s ease-in-out infinite;
}
@keyframes loaderLogoPulse {
    0%, 100% { opacity: 1; transform: scale(1); text-shadow: 0 0 30px var(--primary-glow); }
    50% { opacity: 0.85; transform: scale(1.02); text-shadow: 0 0 50px var(--primary-glow); }
}
.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(118, 190, 196, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 24px;
}
.loader-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    animation: loaderProgress 1.8s ease-in-out forwards;
    box-shadow: 0 0 20px var(--primary-glow);
}
@keyframes loaderProgress {
    0% { width: 0; }
    100% { width: 100%; }
}
.loader-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 3px solid rgba(118, 190, 196, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: loaderSpin 0.8s linear infinite;
}
@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

/* 2. Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    background: var(--bg-card);
    color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(118, 190, 196, 0.2);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--primary-glow);
}

/* 3. Hero title letter stagger */
.hero-title .title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: titleLetterReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-title .title-line:nth-child(1) .title-word { animation-delay: 0.2s; }
.hero-title .title-line:nth-child(2) .title-word { animation-delay: 0.5s; }
@keyframes titleLetterReveal {
    to {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 0 0 30px var(--primary-glow);
    }
}

/* 4. Scroll indicator max */
.scroll-indicator {
    animation: scrollBouncePulse 2.5s ease-in-out infinite;
}
.scroll-indicator p {
    animation: scrollTextFade 2.5s ease-in-out infinite;
}
@keyframes scrollBouncePulse {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.9; }
}
@keyframes scrollTextFade {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
.mouse {
    box-shadow: 0 0 20px var(--primary-glow);
}
.wheel {
    animation: scrollWheel 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary);
}
@keyframes scrollWheel {
    0%, 100% { opacity: 1; top: 10px; }
    50% { opacity: 0.3; top: 28px; }
}

/* 5. Rank badge - sabit gölge */
.rank-badge {
    box-shadow: 0 10px 40px rgba(153, 69, 255, 0.4);
}

/* 6. Nav links stagger on load */
.nav-link {
    opacity: 0;
    transform: translateY(-10px);
    animation: navLinkReveal 0.5s ease forwards;
}
.nav-links li:nth-child(1) .nav-link { animation-delay: 0.1s; }
.nav-links li:nth-child(2) .nav-link { animation-delay: 0.15s; }
.nav-links li:nth-child(3) .nav-link { animation-delay: 0.2s; }
.nav-links li:nth-child(4) .nav-link { animation-delay: 0.25s; }
.nav-links li:nth-child(5) .nav-link { animation-delay: 0.3s; }
.nav-links li:nth-child(6) .nav-link { animation-delay: 0.35s; }
@keyframes navLinkReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* 7. Section title line reveal */
.section-title {
    overflow: hidden;
    display: inline-block;
}
.section-title .highlight {
    display: inline-block;
    animation: sectionHighlightReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s backwards;
}
@keyframes sectionHighlightReveal {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

/* 8. About cards stagger + scale */
.about-content .about-card {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-content .about-card.revealed {
    opacity: 1;
    transform: scale(1) translateY(0);
}
.about-content .about-card:nth-child(1) { transition-delay: 0.1s; }
.about-content .about-card:nth-child(2) { transition-delay: 0.25s; }
.about-content .about-card:nth-child(3) { transition-delay: 0.4s; }
.about-content .about-card:nth-child(4) { transition-delay: 0.55s; }
.about-content .about-card:nth-child(5) { transition-delay: 0.7s; }

/* 9. Avatar ring - hafif pulse */
.avatar-ring {
    animation: avatarRingPulse 3s ease-in-out infinite;
}
@keyframes avatarRingPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* 10. Stat cards 3D + top line */
.stat-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease, border-color 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-15px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 25px 60px rgba(118, 190, 196, 0.25), 0 0 40px var(--primary-glow);
}
.stat-card::before {
    transform-origin: left;
}

/* 11. Progress bar - statik gradient (animasyon kaldırıldı, performans) */
.stat-progress {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

/* 13. Agent table rows slide-in */
.top-agents-table tbody tr {
    opacity: 0;
    transform: translateX(-30px);
    animation: agentRowSlide 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.top-agents-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.top-agents-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
.top-agents-table tbody tr:nth-child(3) { animation-delay: 0.3s; }
@keyframes agentRowSlide {
    to { opacity: 1; transform: translateX(0); }
}

/* 14. Timeline line draw */
.timeline::before {
    height: 0;
    transition: height 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.achievements.played .timeline::before {
    height: 100%;
}

/* 15. Trophy cards 3D flip */
.trophy-card {
    transform-style: preserve-3d;
    perspective: 800px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.trophy-card:hover {
    transform: translateY(-15px) rotateY(8deg) scale(1.02);
    box-shadow: 0 25px 60px rgba(118, 190, 196, 0.2);
}
.trophy-icon {
    transition: transform 0.5s ease;
}
.trophy-card:hover .trophy-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* 16. Gallery zoom + overlay */
.gallery-item {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}
.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(118, 190, 196, 0.2);
}
.gallery-overlay {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-placeholder i {
    transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-placeholder i {
    transform: scale(1.2);
}

/* 17. Stream cards - hover'da border rengi (animasyon kaldırıldı) */
.stream-card {
    position: relative;
}
.stream-card:hover {
    border-color: var(--primary);
}
.stream-card.twitch:hover { border-color: #9146ff; }
.stream-card.kick:hover { border-color: #53fc18; }
.stream-card.instagram:hover { border-color: #e4405f; }

/* 18. Schedule item glow */
.schedule-item {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.schedule-item:hover {
    box-shadow: 0 0 30px var(--primary-subtle), 0 10px 30px rgba(0, 0, 0, 0.3);
}
.schedule-item.today {
    border-color: var(--primary);
    box-shadow: 0 0 25px var(--primary-glow);
    animation: scheduleTodayPulse 2s ease-in-out infinite;
}
@keyframes scheduleTodayPulse {
    0%, 100% { box-shadow: 0 0 25px var(--primary-glow); }
    50% { box-shadow: 0 0 40px var(--primary-glow); }
}

/* 19. Contact input focus max */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 25px var(--primary-glow), 0 0 50px var(--primary-subtle);
    animation: inputFocusGlow 0.3s ease;
}
@keyframes inputFocusGlow {
    0% { box-shadow: 0 0 0 var(--primary-subtle); }
    100% { box-shadow: 0 0 25px var(--primary-glow), 0 0 50px var(--primary-subtle); }
}

/* 20. Social link icon bounce */
.social-link i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-link:hover i {
    transform: scale(1.2);
    animation: iconBounce 0.5s ease;
}
@keyframes iconBounce {
    0%, 100% { transform: scale(1.2); }
    50% { transform: scale(1.4); }
}

/* 21. Button ripple container */
.btn {
    position: relative;
    overflow: hidden;
}
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleExpand 0.6s ease-out;
    pointer-events: none;
}
@keyframes rippleExpand {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* 22. Hero photo 3D tilt class */
.hero-photo-wrap.tilted {
    transition: transform 0.3s ease-out;
}

/* 23. Profile header stats reveal */
.profile-header-stats {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.profile-header-stats.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 24. Stat card mini hover lift */
.stat-card-mini {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.stat-card-mini:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(118, 190, 196, 0.15);
}

/* 25. Glitch text stronger */
.glitch-text {
    animation: glitchStrong 4s infinite;
}
@keyframes glitchStrong {
    0%, 90%, 100% { opacity: 1; transform: translate(0); filter: none; }
    92% { opacity: 0.9; transform: translate(-3px, 2px); filter: hue-rotate(-5deg); }
    94% { opacity: 0.9; transform: translate(3px, -2px); filter: hue-rotate(5deg); }
    96% { opacity: 1; transform: translate(0); filter: none; }
}

/* 26. Footer logo glitch */
.footer-logo .logo-text.glitch-active {
    animation: footerGlitch 0.4s ease;
}
@keyframes footerGlitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
    100% { transform: translate(0); }
}

/* 27. Cursor trail dots (JS will add) */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.6;
    animation: cursorDotFade 1s ease-out forwards;
}
@keyframes cursorDotFade {
    to { opacity: 0; transform: scale(0); }
}

/* 28. Section reveal stagger */
.reveal-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 29. Hamburger full animation */
.hamburger span {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 30. Hero content fade-up on load */
.hero-text .hero-subtitle {
    opacity: 0;
    animation: heroSubtitleReveal 0.8s ease 0.4s forwards;
}
.hero-text .hero-tagline {
    opacity: 0;
    animation: heroSubtitleReveal 0.8s ease 0.9s forwards;
}
.hero-buttons {
    opacity: 0;
    animation: heroSubtitleReveal 0.8s ease 1.2s forwards;
}
@keyframes heroSubtitleReveal {
    to { opacity: 1; transform: translateY(0); }
}
.hero-image .image-frame {
    opacity: 0;
    transform: translateX(40px);
    animation: heroImageReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}
@keyframes heroImageReveal {
    to { opacity: 1; transform: translateX(0); }
}
