* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8b5cf6;
    /* Electric Violet */
    --primary-dark: #6d28d9;
    --accent-green: #00ff87;
    /* Neon green primary accent */
    --accent-blue: #3b82f6;
    /* Neon blue secondary accent */
    --accent-orange: #ffd60a;
    --bg: #07050c;
    /* Deep Dark Indigo/Black */
    --bg-light: #110e20;
    /* Dark Purple-grey card bg */
    --text: #f5f5f7;
    --text-muted: #948fa3;
    --border: rgba(139, 92, 246, 0.15);
    /* Purple tinted border */
}
html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    background:
        radial-gradient(circle at 15% 12%, rgba(139, 92, 246, 0.2), transparent 28rem),
        radial-gradient(circle at 82% 18%, rgba(21, 245, 186, 0.08), transparent 24rem),
        linear-gradient(180deg, #0b0714 0%, #080611 48%, #100b1d 100%);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* old body::before removed */

/* Ekstra büyük ışıklar */
.light-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.light-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
}

.light-orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    left: 10%;
    animation: floatOrb 8s ease-in-out infinite;
}

.light-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-green);
    bottom: 10%;
    right: 10%;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

.light-orb-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseOrb 6s ease-in-out infinite;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -30px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

@keyframes pulseOrb {

    0%,
    100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.nav-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 24px;
    }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(7, 5, 12, 0.95) 0%, rgba(7, 5, 12, 0.7) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    padding: 16px 0;
    animation: slideDown 0.5s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 100;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language button styles */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.flag {
    font-size: 16px;
    line-height: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: invert(1);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.logo-highlight {
    color: var(--primary);
    font-weight: 800;
    margin-left: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 45px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid var(--border);
    padding: 4px;
    border-radius: 8px;
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--text);
}

.lang-btn.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-blue));
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--text);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 9999;
    position: relative;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
    display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        order: 3;
    }

    .nav-wrapper {
        justify-content: space-between;
    }

    .lang-switcher {
        order: 2;
    }

    #navLinks {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(8, 6, 17, 0.98) !important;
        backdrop-filter: blur(20px);
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
        gap: 30px;
        transition: right 0.4s ease;
        padding: 80px 20px 20px 20px;
        border-left: 1px solid rgba(139, 92, 246, 0.2);
        z-index: 9998 !important;
        display: flex !important;
    }

    /* On mobile, put language switcher inside the menu */
    #navLinks .lang-switcher {
        order: -1;
        margin-bottom: 20px;
        display: flex !important;
    }

    .nav-links .nav-link {
        font-size: 18px;
    }
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #00b960 0%, #00e676 100%);
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.25);
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0, 230, 118, 0.45);
    background: linear-gradient(135deg, #00e676 0%, #00ff87 100%);
}

.btn-loading {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(0,0,0,0.25);
    border-left-color: #000;
    border-radius: 50%;
    animation: btn-spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.btn-secondary {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text);
    border: 1px solid rgba(139, 92, 246, 0.25);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 0.8s ease;
    position: relative;
    z-index: 2;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(30px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    text-shadow: none;
    white-space: normal; /* Changed from nowrap to normal to prevent overflow */
}

.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-green) 50%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #5865F2 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    display: inline-block;
}

.stat-label {
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.online-dot {
    color: var(--accent-green);
    font-size: 8px;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Hero Image with Cards */
.hero-image {
    position: relative;
    height: 400px;
    animation: fadeInRight 0.8s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-cards-slider {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cards-slide {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.hero-cards-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
    max-width: 400px;
}

.hero-card {
    background: rgba(18, 16, 32, 0.45);
    border: 1px solid rgba(139, 92, 246, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
    border-radius: 50px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

/* First slide cards */
.hero-cards-slide:nth-child(1) .hero-card:nth-child(1) {
    align-self: flex-start;
    margin-left: 0%;
    transform: rotate(-1.5deg);
}

.hero-cards-slide:nth-child(1) .hero-card:nth-child(2) {
    align-self: flex-end;
    margin-right: 0%;
    transform: rotate(1.2deg);
}

.hero-cards-slide:nth-child(1) .hero-card:nth-child(3) {
    align-self: flex-start;
    margin-left: 5%;
    transform: rotate(-0.8deg);
}

/* Second slide cards */
.hero-cards-slide:nth-child(2) .hero-card:nth-child(1) {
    align-self: flex-end;
    margin-right: 5%;
    transform: rotate(1.8deg);
}

.hero-cards-slide:nth-child(2) .hero-card:nth-child(2) {
    align-self: flex-start;
    margin-left: 0%;
    transform: rotate(-1.3deg);
}

.hero-cards-slide:nth-child(2) .hero-card:nth-child(3) {
    align-self: flex-end;
    margin-right: 10%;
    transform: rotate(0.9deg);
}

/* Third slide cards */
.hero-cards-slide:nth-child(3) .hero-card:nth-child(1) {
    align-self: flex-start;
    margin-left: 10%;
    transform: rotate(-1.1deg);
}

.hero-cards-slide:nth-child(3) .hero-card:nth-child(2) {
    align-self: flex-end;
    margin-right: 0%;
    transform: rotate(1.5deg);
}

.hero-cards-slide:nth-child(3) .hero-card:nth-child(3) {
    align-self: flex-start;
    margin-left: 5%;
    transform: rotate(-1.7deg);
}



.hero-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 4px;
    white-space: nowrap;
}

.hero-card-info h4 span {
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-card-info span {
    color: var(--text-muted);
    font-size: 13px;
    display: block;
}

/* Kept for fallback or old rules if any */
.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 280px;
    transform-style: preserve-3d;
}

.card-1 {
    top: 0%;
    right: 5%;
    left: auto;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    bottom: 5%;
    right: 0%;
    animation: float 3s ease-in-out infinite 1.5s;
}

.card-3 {
    top: 35%;
    right: 25%;
    left: auto;
    animation: float 3s ease-in-out infinite 0.75s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Responsive Hero Section */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 32px !important;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons a {
        width: 100%;
    }
    
    .hero-image {
        height: 350px;
    }
    
    .hero-card {
        padding: 16px 20px;
    }
    
    .hero-card-avatar {
        width: 60px;
        height: 60px;
    }
}

/* Responsive Features Grid */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive How It Works / Steps Grid */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.card-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.card-status {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.card-status.online {
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.card-status.offline {
    background: var(--text-muted);
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    position: relative;
}

/* Section Header */
.section {
    padding: 60px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

/* Features */
.features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(18, 16, 32, 0.45);
    border: 1px solid rgba(139, 92, 246, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
    background: rgba(25, 22, 45, 0.65);
    box-shadow: 0 8px 32px 0 rgba(139, 92, 246, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Coaches */
.coaches {
    padding: 60px 0;
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .coaches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .coaches-grid {
        grid-template-columns: 1fr;
    }
}

.coach-card {
    background: rgba(18, 16, 32, 0.45);
    border: 1px solid rgba(139, 92, 246, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all 0.4s;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.coach-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.coach-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
    background: rgba(25, 22, 45, 0.65);
    box-shadow: 0 8px 32px 0 rgba(139, 92, 246, 0.15);
}

.coach-status {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.coach-status.online {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.coach-status.online i {
    animation: blink 1.5s infinite;
}

.coach-status.offline {
    background: rgba(156, 163, 175, 0.15);
    color: var(--text-muted);
}

.coach-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 30px auto 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.coach-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.coach-specialty {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.coach-languages {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.coach-rating {
    font-size: 14px;
    color: var(--accent-orange);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.coach-rating span {
    color: var(--text-muted);
}

.coach-packages {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.package {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.coach-btn {
    width: 100%;
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.coach-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    background: #f5f5f7;
}

.section-footer {
    text-align: center;
}

/* How It Works */
.how-it-works {
    padding: 60px 0 40px 0;
    position: relative;
    background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.02) 50%, transparent);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.step-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.step-card .step-number {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(139, 92, 246, 0.1);
    color: rgba(139, 92, 246, 0.4);
    font-size: 60px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.step-card .step-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.step-card .step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.step-card .step-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Testimonials Slider */
.testimonials {
    padding: 80px 0 160px 0;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
}

.testimonials-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin: 0 auto 30px auto;
    padding: 10px 0;
}

.testimonials-track {
    display: flex;
    gap: 40px;
    width: max-content;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.15));
    border: 2px solid rgba(139, 92, 246, 0.4);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(99, 102, 241, 0.4));
    border-color: rgba(192, 132, 252, 0.8);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn.prev {
    left: -70px;
}

.slider-btn.next {
    right: -60px;
}

.testimonial-card {
    flex: 0 0 calc((1140px - 40px) / 2);
    width: calc((1140px - 40px) / 2);
    min-width: 0;
    max-width: calc((1140px - 40px) / 2);
    min-height: 330px;
    background: linear-gradient(135deg, rgba(22, 18, 40, 0.85), rgba(30, 27, 55, 0.75));
    border: 1px solid rgba(139, 92, 246, 0.25);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: none;
    border-radius: 24px;
    padding: 28px;
    text-align: left;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    align-items: start;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #c084fc, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
    border-color: rgba(192, 132, 252, 0.4);
}

.testimonial-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 0;
    grid-column: 1;
    grid-row: 1 / 3;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.testimonial-info span {
    color: var(--text-muted);
    font-size: 14px;
}

.testimonial-text {
    margin-bottom: 10px;
    color: var(--text);
    line-height: 1.8;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: -webkit-line-clamp 0.3s ease;
    grid-column: 2;
    grid-row: 1;
}

.testimonial-text.expanded {
    -webkit-line-clamp: unset;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s;
}

.read-more-btn:hover {
    color: #a78bfa;
    text-decoration: underline;
}

.testimonial-rating {
    color: var(--accent-orange);
    font-size: 16px;
    gap: 4px;
    display: flex;
    justify-content: flex-start;
    grid-column: 2;
    grid-row: 2;
}

/* Slider Controls (Removed for marquee) */

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    width: 30px;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent-green));
}

/* CTA Section */
.cta {
    padding: 60px 0;
    margin: 0 24px;
    border-radius: 32px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta::before {
    display: none;
}

.cta .container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 17px;
    margin-bottom: 32px;
    color: var(--text-muted);
}

.cta .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
    padding: 16px 40px;
    font-size: 16px;
}

.cta .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

/* FAQ Section */
.faq {
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(124, 58, 237, 0.4);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.faq-icon {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-link:hover {
    color: var(--text);
}

.footer-newsletter {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    width: 48px;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 24px;
    width: 95%;
    max-width: 1400px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: center center;
}

@keyframes modalEntrance {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
}

.modal-header h2 i {
    color: var(--primary);
    margin-right: 10px;
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.modal-content {
    padding: 20px 24px;
}

/* Form Styles */
.application-form {
    width: 100%;
}

.form-group {
    margin-bottom: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--text);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

select option {
    background-color: #111111;
    color: #ffffff;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 16px;
    margin-top: 10px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.form-note i {
    color: var(--accent-orange);
    margin-right: 6px;
}

/* Scrollbar styling for modal */
.modal::-webkit-scrollbar {
    width: 8px;
}

.modal::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.modal::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.3);
    border-radius: 4px;
}

.modal::-webkit-scrollbar-thumb:hover {
    background: rgba(124, 58, 237, 0.5);
}

/* Success Modal */
.success-modal {
    max-width: 450px;
    text-align: center;
    padding: 40px 30px;
}

.success-modal .modal-header {
    display: none;
}

.success-modal .modal-content {
    padding: 0;
}

.success-icon {
    margin-bottom: 24px;
}

.success-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: successPop 0.5s ease-out;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-circle i {
    font-size: 50px;
    color: white;
    animation: checkMark 0.3s ease-out 0.3s both;
}

@keyframes checkMark {
    from {
        transform: scale(0) rotate(-30deg);
    }

    to {
        transform: scale(1) rotate(0deg);
    }
}

.success-title {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 12px 0;
}

.success-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.success-modal .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Auth Modal */
.auth-modal {
    max-width: 500px;
    position: relative;
    overflow: visible;
    padding: 40px 32px;
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.95), rgba(15, 15, 25, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-modal .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
}

.auth-modal .modal-content {
    padding: 0;
    text-align: center;
}

.auth-logo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(34, 197, 94, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--primary);
}

.logo-icon-inner {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.logo-icon-inner i {
    font-size: 24px;
    color: white;
}

/* Typewriter Effect */
.typewriter {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-green) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 58px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.cursor {
    display: inline-block;
    background: var(--accent-green);
    width: 4px;
    height: 0.9em;
    margin-left: 4px;
    vertical-align: middle;
    animation: blink 0.8s infinite;
}

.auth-welcome-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.auth-welcome-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0 0 32px 0;
}

.google-login-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.google-login-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.google-login-btn img {
    width: 24px;
    height: 24px;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    padding: 0 16px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.auth-form {
    animation: fadeIn 0.3s ease;
    text-align: left;
}

.password-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.forgot-password {
    color: #ef4444;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #fca5a5;
}

.auth-main-btn {
    width: 100%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: none;
    color: white;
    padding: 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.35);
    margin-top: 12px;
}

.auth-main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.45);
}

.auth-switch {
    margin-top: 28px;
    text-align: center;
}

.auth-switch p {
    color: var(--text-muted);
    font-size: 15px;
}

.auth-switch button {
    background: none;
    border: none;
    color: #ef4444;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    padding: 0;
    margin-left: 6px;
    transition: color 0.3s ease;
}

.auth-switch button:hover {
    color: #fca5a5;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 1200px) {
    .coaches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: 2;
        height: auto;
        margin-top: 40px;
    }

    .hero-cards {
        max-width: 100%;
    }

    .hero-card {
        padding: 20px;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step-line {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta {
        margin: 0;
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .nav-right {
        display: none !important; /* Hidden as per user request (sağdaki 3 tane menu) */
    }

    .mobile-menu-btn {
        display: none !important; /* Hidden as per user request */
    }

    .hero-title {
        font-size: clamp(24px, 8vw, 32px) !important;
        text-align: center;
        max-width: 100% !important;
        word-break: break-word;
        overflow-wrap: anywhere;
        line-height: 1.2;
        white-space: normal !important;
    }

    .typewriter {
        font-size: inherit !important;
        white-space: normal !important;
        display: inline !important;
    }

    .hero-subtitle {
        font-size: 15px;
        text-align: center;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .stat {
        flex: 1 1 calc(50% - 10px);
        min-width: 0;
        padding: 10px;
        text-align: center;
    }

    .stat-number {
        font-size: 28px !important;
    }

    .stat-label {
        font-size: 11px !important;
    }

    .hero-image {
        height: auto;
        min-height: 250px;
        margin-top: 20px;
        width: 100%;
        overflow: hidden;
    }

    .hero-cards-slider {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-card {
        padding: 10px 14px;
        border-radius: 12px;
        width: 90%;
        max-width: 280px;
        margin: 0 auto;
        gap: 10px;
    }
    
    .hero-card-avatar {
        width: 40px;
        height: 40px;
    }

    .hero-card-info h4 {
        font-size: 13px;
    }

    .hero-card-info span {
        font-size: 11px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .coaches-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .testimonials-slider {
        min-height: 620px;
    }

    .testimonial-card {
        padding: 28px 20px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal {
        border-radius: 16px;
    }

    .modal-header,
    .modal-content {
        padding: 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        height: 48px;
    }
}

@media (max-width: 1024px) {
    .testimonials-wrapper {
        max-width: 100%;
        padding: 0 70px;
    }
    
    .slider-btn.prev {
        left: -70px;
    }
    
    .slider-btn.next {
        right: -70px;
    }

    .testimonials-track {
        gap: 24px;
    }

    .testimonial-card {
        flex: 0 0 calc((100% - 24px) / 2);
        width: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
        min-height: 280px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .testimonials-wrapper {
        padding: 0 10px;
    }
    
    .testimonials-slider {
        min-height: 700px;
        padding-top: 70px;
    }
    
    .slider-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
        top: 10px;
        transform: none;
    }
    
    .slider-btn.prev {
        left: 0;
    }
    
    .slider-btn.next {
        right: 0;
    }
}

/* Background Animations & Branding */
.bg-animations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, rgba(18, 16, 32, 0) 70%);
    top: -10%;
    left: -10%;
    animation: drift 20s infinite alternate ease-in-out;
}

.orb-2 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, rgba(18, 16, 32, 0) 70%);
    bottom: -10%;
    right: -10%;
    animation: drift 25s infinite alternate-reverse ease-in-out;
}

.orb-3 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(18, 16, 32, 0) 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatOrb 15s infinite ease-in-out;
}

.brand-watermark {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30vw;
    font-weight: 900;
    color: rgba(244, 241, 234, 0.014);
    white-space: nowrap;
    letter-spacing: 0.08em;
    user-select: none;
    text-shadow:
        0 0 48px rgba(139, 92, 246, 0.12),
        0 0 120px rgba(21, 245, 186, 0.035);
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 10%) scale(1.1);
    }
}

/* Custom Premium Checkbox */
.custom-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 15px;
    position: relative;
    cursor: pointer;
}

.custom-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    appearance: none;
    -webkit-appearance: none;
    z-index: -1;
}

.custom-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.custom-checkbox-box {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 16, 32, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.custom-checkbox-box i {
    color: white;
    font-size: 16px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.custom-checkbox-wrapper:hover .custom-checkbox-box {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.custom-checkbox-input:checked~.custom-checkbox-label .custom-checkbox-box {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.custom-checkbox-input:checked~.custom-checkbox-label .custom-checkbox-box i {
    opacity: 1;
    transform: scale(1);
}

.custom-checkbox-input:checked~.custom-checkbox-label {
    color: var(--text);
}

@media (max-width: 768px) {
    .form-split {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

/* Custom Toast Notification */
.custom-toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.custom-toast {
    background: rgba(18, 16, 32, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 12px;
    padding: 16px 24px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(239, 68, 68, 0.2);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-toast.toast-success {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.2);
}

.custom-toast.toast-success i {
    color: #10b981;
    font-size: 18px;
}

.custom-toast.toast-error i {
    color: #ef4444;
    font-size: 18px;
}

.custom-toast.show {
    transform: translateX(0);
    opacity: 1;
}

/* Aim Trainer Styles */
.aim-trainer-container {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 24px;
    width: 100%;
    height: 700px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

.aim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: rgba(18, 16, 32, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 10;
}

.aim-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.aim-content {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #1a1829 0%, var(--bg-dark) 100%);
}

.aim-screen {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow-y: auto;
    overflow-x: hidden;
}

.aim-screen.active {
    display: flex;
    animation: fadeIn 0.4s ease;
}

#aimStartScreen h3,
#aimEndScreen h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text);
}

/* Game Arena */
#aimTargetArea {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: crosshair;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

#aimArena.miss-flash {
    animation: screenFlash 0.2s ease-out;
}

@keyframes screenFlash {
    0% {
        box-shadow: inset 0 0 0 0 rgba(239, 68, 68, 0);
    }

    50% {
        box-shadow: inset 0 0 50px 20px rgba(239, 68, 68, 0.5);
    }

    100% {
        box-shadow: inset 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.aim-hud {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 5;
    pointer-events: none;
}

.hud-item {
    font-size: 24px;
    font-weight: 800;
    background: rgba(20, 15, 30, 0.5);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.aim-target {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #00ff88 0%, #8b5cf6 100%);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.8);
    cursor: crosshair;
    transform: translate(-50%, -50%) scale(0);
    animation: targetPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transition: filter 0.1s;
}

.aim-target:active {
    filter: brightness(1.5);
    box-shadow: 0 0 30px #00ff88;
}

@keyframes targetPop {
    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

.aim-target.hit {
    animation: targetHitRipple 0.3s ease-out forwards;
}

@keyframes targetHitRipple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        box-shadow: 0 0 20px #00ff88;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.5;
        box-shadow: 0 0 50px #8b5cf6;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* End Screen Stats */
.aim-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    width: 80%;
    max-width: 600px;
}

.aim-stat-box {
    background: rgba(20, 15, 30, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.aim-stat-box:hover {
    transform: translateY(-50px);
    border-color: var(--primary);
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aim-suggestion {
    background: rgba(139, 92, 246, 0.1);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    max-width: 600px;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    margin: 0 auto;
}


/* Aim Trainer V2 Styles */
.aim-settings-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: rgba(20, 15, 30, 0.5);
    padding: 20px 22px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.setting-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.setting-group label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.setting-group select,
.setting-group input[type="range"],
#crosshairCode {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: white;
    padding: 12px;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.setting-group select:hover,
.setting-group input[type="range"]:hover,
#crosshairCode:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.preset-crosshair-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.preset-crosshair-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--primary);
    color: white;
}

.setting-group input[type="range"] {
    padding: 0;
}

/* Virtual Crosshair */
.virtual-crosshair {
    position: absolute;
    pointer-events: none;
    z-index: 100;
    display: none;
    /* hidden by default until game starts */
    transform: translate(-50%, -50%);
}

.xh-center {
    position: absolute;
    transform: translate(-50%, -50%);
    background-color: #00FF00;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    display: none;
}

.xh-line {
    position: absolute;
    background-color: #00FF00;
}

.xh-top {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 4px;
    width: 2px;
    height: 10px;
}

.xh-bottom {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 4px;
    width: 2px;
    height: 10px;
}

.xh-left {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 4px;
    height: 2px;
    width: 10px;
}

.xh-right {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 4px;
    height: 2px;
    width: 10px;
}

#aimTargetArea.game-active {
    cursor: none;
    /* Hide real cursor */
}

/* Tracking Target Mode */
.aim-target.tracking {
    animation: none;
    /* remove pop animation for tracking */
    transform: translate(-50%, -50%) scale(1) !important;
    transition: background 0.1s linear;
    border-radius: 50%;
    background: radial-gradient(circle, #ef4444 0%, #b91c1c 100%);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.aim-target.tracking.tracked {
    background: radial-gradient(circle, #10b981 0%, #059669 100%);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

.dynamic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background-color: transparent;
}

.bg-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(800px) rotateX(60deg) translateY(0);
    animation: gridMove 15s linear infinite;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes gridMove {
    0% {
        transform: perspective(800px) rotateX(60deg) translateY(0);
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.5);
    }

    100% {
        transform: perspective(800px) rotateX(60deg) translateY(60px);
        filter: brightness(1);
    }
}

/* Light Trails (Cyberpunk Lasers) */
.light-trails {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.trail {
    position: absolute;
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, rgba(139, 92, 246, 0), rgba(139, 92, 246, 1));
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 1));
    animation: shoot 4s infinite linear;
    opacity: 0;
}

.trail:nth-child(1) {
    left: 20%;
    top: -150px;
    animation-delay: 0s;
    animation-duration: 3s;
}

.trail:nth-child(2) {
    left: 50%;
    top: -150px;
    animation-delay: 1.5s;
    background: linear-gradient(to bottom, rgba(0, 255, 136, 0), rgba(0, 255, 136, 1));
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 1));
    animation-duration: 4s;
}

.trail:nth-child(3) {
    left: 80%;
    top: -150px;
    animation-delay: 2.7s;
    background: linear-gradient(to bottom, rgba(139, 92, 246, 0), rgba(139, 92, 246, 1));
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 1));
    animation-duration: 3.5s;
}

.trail:nth-child(4) {
    left: 35%;
    top: -150px;
    animation-delay: 3.2s;
    animation-duration: 5s;
}

@keyframes shoot {
    0% {
        transform: translateY(0) rotate(45deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(120vh) rotate(45deg);
        opacity: 0;
    }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    filter: blur(1px);
    animation: floatUp 15s infinite linear;
    bottom: -10px;
}

.particle:nth-child(even) {
    background: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 10px #8b5cf6;
}

.particle:nth-child(odd) {
    background: rgba(0, 255, 136, 0.4);
    box-shadow: 0 0 10px #00ff88;
}

.particle:nth-child(1) {
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-duration: 18s;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-duration: 14s;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-duration: 20s;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-duration: 16s;
    animation-delay: 5s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-duration: 19s;
    animation-delay: 3s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-duration: 15s;
    animation-delay: 6s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-duration: 22s;
    animation-delay: 0.5s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-duration: 17s;
    animation-delay: 7s;
}

.particle:nth-child(10) {
    left: 95%;
    animation-duration: 21s;
    animation-delay: 2.5s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateY(-50vh) translateX(20px) scale(1.5);
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(-20px) scale(1);
        opacity: 0;
    }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
    animation: orbFloat 25s infinite ease-in-out alternate;
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: #8b5cf6;
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #00ff88;
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
    opacity: 0.15;
}

.orb-3 {
    width: 700px;
    height: 700px;
    background: #8b5cf6;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.15;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, 150px) scale(1.2);
    }

    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }

    100% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

.logo-loader-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-family: "Inter", sans-serif;
    font-size: 0.25em;
    font-weight: 700;
    color: white;
    border-radius: 50%;
    background-color: transparent;
    user-select: none;
    margin-right: 10px;
}

.logo-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: transparent;
    animation: loader-rotate 2s linear infinite;
    z-index: 0;
}

.logo-loader-letter {
    display: inline-block;
    opacity: 0.4;
    transform: translateY(0);
    animation: loader-letter-anim 2s infinite;
    z-index: 1;
    border-radius: 50ch;
    border: none;
    margin: 0 1px;
    letter-spacing: 1px;
}

.logo-loader-letter:nth-child(2) {
    animation-delay: 0s;
}

.logo-loader-letter:nth-child(3) {
    animation-delay: 0.1s;
}

.logo-loader-letter:nth-child(4) {
    animation-delay: 0.2s;
}

.logo-loader-letter:nth-child(5) {
    animation-delay: 0.3s;
}

/* Site Preloader */
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #050505;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loader-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    font-family: "Inter", sans-serif;
    font-size: 1.2em;
    font-weight: 300;
    color: white;
    border-radius: 50%;
    background-color: transparent;
    user-select: none;
}

.loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: transparent;
    animation: loader-rotate 2s linear infinite;
    z-index: 0;
}

@keyframes loader-rotate {
    0% {
        transform: rotate(90deg);
        box-shadow:
            0 10px 20px 0 #fff inset,
            0 20px 30px 0 #ad5fff inset,
            0 60px 60px 0 #471eec inset;
    }

    50% {
        transform: rotate(270deg);
        box-shadow:
            0 10px 20px 0 #fff inset,
            0 20px 10px 0 #d60a47 inset,
            0 40px 60px 0 #311e80 inset;
    }

    100% {
        transform: rotate(450deg);
        box-shadow:
            0 10px 20px 0 #fff inset,
            0 20px 30px 0 #ad5fff inset,
            0 60px 60px 0 #471eec inset;
    }
}

.loader-letter {
    display: inline-block;
    opacity: 0.4;
    transform: translateY(0);
    animation: loader-letter-anim 2s infinite;
    z-index: 1;
    border-radius: 50ch;
    border: none;
    margin: 0 5px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 5px;
}

.loader-letter:nth-child(2) {
    animation-delay: 0s;
}

.loader-letter:nth-child(3) {
    animation-delay: 0.1s;
}

.loader-letter:nth-child(4) {
    animation-delay: 0.2s;
}

.loader-letter:nth-child(5) {
    animation-delay: 0.3s;
}

@keyframes loader-letter-anim {

    0%,
    100% {
        opacity: 0.4;
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: scale(1.15);
    }

    40% {
        opacity: 0.7;
        transform: translateY(0);
    }
}

/* Valorant-lite premium refresh */
:root {
    --primary: #8b5cf6;
    --primary-dark: #5b21b6;
    --accent-green: #15f5ba;
    --accent-blue: #5de0ff;
    --accent-orange: #ffcc66;
    --bg: #080611;
    --bg-dark: #080611;
    --bg-light: #141022;
    --panel: rgba(20, 16, 34, 0.76);
    --panel-strong: rgba(25, 20, 42, 0.92);
    --text: #f4f1ea;
    --text-muted: #a7adb8;
    --border: rgba(139, 92, 246, 0.24);
    --border-soft: rgba(244, 241, 234, 0.09);
    --shadow-purple: rgba(139, 92, 246, 0.3);
}

/* Second body definition removed - using arkaplan.jpg background */

.dynamic-bg {
    background:
        radial-gradient(ellipse at 8% 8%, rgba(255, 70, 85, 0.105), transparent 32%),
        radial-gradient(ellipse at 88% 84%, rgba(21, 245, 186, 0.095), transparent 34%),
        radial-gradient(ellipse at 48% 18%, rgba(139, 92, 246, 0.12), transparent 42%),
        radial-gradient(ellipse at 82% 62%, rgba(21, 245, 186, 0.035), transparent 34%),
        linear-gradient(145deg, rgba(139, 92, 246, 0.055), transparent 34%),
        #080611;
}

.dynamic-bg::before,
.dynamic-bg::after {
    content: '';
    position: absolute;
    inset: auto;
    pointer-events: none;
}

.dynamic-bg::before {
    display: none;
}

.dynamic-bg::after {
    width: min(72vw, 980px);
    height: 42vh;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    background:
        radial-gradient(ellipse at center, rgba(244, 241, 234, 0.035), transparent 42%),
        linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.045), transparent);
    filter: blur(54px);
    opacity: 0.38;
}

.bg-grid {
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.24;
}

@keyframes auraSpin {
    from {
        transform: translateX(-50%) rotate(0deg) scale(1);
    }

    50% {
        transform: translateX(-50%) rotate(180deg) scale(1.04);
    }

    to {
        transform: translateX(-50%) rotate(360deg) scale(1);
    }
}

.orb,
.glow-orb {
    opacity: 0.055;
    filter: blur(140px);
}

.orb-1,
.glow-orb.orb-1 {
    background: #8b5cf6;
}

.orb-2,
.glow-orb.orb-2 {
    background: #15f5ba;
    opacity: 0.035;
}

.orb-3,
.glow-orb.orb-3 {
    background: #7c3aed;
    opacity: 0.04;
}

.particle,
.light-trails {
    opacity: 0.22;
}

.light-trails,
.trail {
    display: none;
}

.brand-watermark {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30vw;
    font-weight: 900;
    color: rgba(244, 241, 234, 0.014);
    white-space: nowrap;
    letter-spacing: 0.08em;
    user-select: none;
    text-shadow:
        0 0 48px rgba(139, 92, 246, 0.12),
        0 0 120px rgba(21, 245, 186, 0.035);
}

/* Rank Analysis System */
.rank-analysis-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.rank-analysis-form,
.rank-analysis-result {
    background: rgba(18, 16, 32, 0.45);
    border: 1px solid rgba(139, 92, 246, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
    border-radius: 16px;
    padding: 30px;
}

.form-title {
    color: #15f5ba;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    border-left: 4px solid #ef4444;
    padding-left: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.form-group select,
.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: white;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #ef4444;
}

.btn-analyze {
    width: 100%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.35);
    margin-top: 10px;
}

.btn-analyze:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.45);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.scan-title {
    color: #ef4444;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.role-badge {
    background: linear-gradient(135deg, #8b5cf6, #15f5ba);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.score-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.score-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-number {
    font-size: 48px;
    font-weight: 700;
    transform: none;
}

.score-label {
    font-size: 12px;
    transform: none;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.score-text h4 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.score-text p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 15px;
}

.suggestion-box {
    background: rgba(21, 245, 186, 0.1);
    border: 1px solid rgba(21, 245, 186, 0.3);
    padding: 12px 16px;
    border-radius: 4px;
    color: #15f5ba;
    font-size: 14px;
    font-weight: 600;
}

.stat-bar {
    margin-bottom: 15px;
}

.stat-name {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-muted);
}

.bar-track {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #15f5ba);
    transition: width 1s ease;
}

/* Responsive for Rank Analysis & More */
@media (max-width: 992px) {
    .rank-analysis-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .score-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .score-circle {
        width: 130px;
        height: 130px;
    }

    .score-number {
        font-size: 40px;
    }

    .hero-card-avatar {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {

    .rank-analysis-form,
    .rank-analysis-result {
        padding: 20px;
    }

    .result-header {
        flex-direction: column;
        gap: 15px;
    }
}

.navbar {
    background: rgba(8, 6, 17, 0.84);
    border-bottom: 1px solid rgba(139, 92, 246, 0.24);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

.logo {
    letter-spacing: 0.03em;
}

.logo-highlight,
.faq-icon,
.modal-header h2 i {
    color: var(--primary);
}

.nav-link {
    letter-spacing: 0.02em;
}

.nav-link::after {
    background: var(--primary);
}

.nav-link:hover,
.footer-link:hover {
    color: var(--text);
}

.lang-switcher,
.btn-secondary,
.btn-outline,
.feature-card,
.coach-card,
.faq-item,
.modal,
.aim-trainer-container,
.aim-settings-panel,
.aim-stat-box,
.hud-item,
.custom-toast {
    background: linear-gradient(180deg, rgba(20, 23, 31, 0.88), rgba(11, 13, 18, 0.78));
    border-color: var(--border-soft);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.btn-primary,
.btn-secondary,
.btn-outline {
    border-radius: 8px;
    min-height: 48px;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 34px rgba(139, 92, 246, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    box-shadow: 0 20px 42px rgba(139, 92, 246, 0.42);
}

.btn-secondary,
.btn-outline {
    color: var(--text);
}

.btn-secondary:hover,
.btn-outline:hover {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.11);
}

.hero {
    padding: 60px 0;
    position: relative;
}

.hero::before {
    display: none;
}

.hero .container {
    gap: 76px;
}

.hero-badge,
.section-badge,
.coach-status {
    border-radius: 6px;
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.1);
    color: #ddd1ff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-title {
    max-width: 680px;
    font-size: clamp(48px, 6vw, 78px);
    letter-spacing: 0;
    text-transform: uppercase;
}

.highlight,
.stat-number {
    background: linear-gradient(135deg, #f4f1ea 0%, #a78bfa 48%, #15f5ba 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    max-width: 620px;
    color: #c2c6cf;
}

.hero-stats {
    gap: 18px;
}

.stat {
    min-width: 142px;
    padding: 16px 18px;
    background: rgba(244, 241, 234, 0.035);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
}

.stat-number {
    font-size: 44px;
}

.stat-label {
    letter-spacing: 0.08em;
}

.references-marquee {
    width: min(390px, 100%);
    height: 520px;
    right: 0;
}

.floating-testimonial,
.floating-card {
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(139, 92, 246, 0.18), transparent 38%),
        linear-gradient(180deg, rgba(25, 20, 42, 0.94), rgba(10, 7, 18, 0.9));
    border: 1px solid rgba(244, 241, 234, 0.11);
    border-left: 3px solid rgba(139, 92, 246, 0.95);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.ft-header img,
.coach-avatar,
.testimonial-avatar {
    border-radius: 8px;
    border-color: rgba(139, 92, 246, 0.42);
}

.ft-rating,
.coach-rating,
.testimonial-rating {
    color: var(--accent-orange);
}

.section-title,
.cta-title {
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-subtitle,
.feature-desc,
.step-desc,
.testimonial-author span,
.faq-answer p,
.footer-desc,
.footer-newsletter {
    color: #aeb4bf;
}

.feature-card,
.coach-card,
.testimonial-card {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.coach-card::before,
.testimonial-card::before {
    display: none;
}

.feature-card:hover,
.coach-card:hover,
.testimonial-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(18, 16, 32, 0.8);
    box-shadow: none;
}

.why-compare {
    margin-bottom: 60px;
}

.compare-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    padding: 0;
}

.compare-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.compare-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 28px;
    font-weight: 700;
    border-radius: 16px 16px 0 0;
    flex-shrink: 0;
}

.compare-heading h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.compare-heading.compare-old {
    background: rgba(220, 38, 38, 0.1);
    border: none;
}

.compare-heading.compare-old h3 {
    color: #ff8a95;
}

.compare-heading.compare-new {
    background: rgba(34, 197, 94, 0.1);
    border: none;
}

.compare-heading.compare-new h3 {
    color: #6ee7b7;
}

.compare-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 18px;
    font-weight: 700;
}

.compare-old .compare-icon {
    color: #ff8a95;
}

.compare-new .compare-icon {
    color: #6ee7b7;
}

.compare-cell-wrapper {
    background: rgba(20, 16, 34, 0.95);
    border-radius: 0 0 16px 16px;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    border: none;
}

.compare-cell {
    min-height: 60px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(244, 241, 234, 0.08);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.compare-cell:last-child {
    border-bottom: none;
}

.compare-cell.old::before {
    content: '✕';
    position: absolute;
    left: 12px;
    color: #ff6b7a;
    font-size: 16px;
    font-weight: 700;
}

.compare-cell.old {
    padding-left: 40px;
}

.compare-cell.new::before {
    content: '✓';
    position: absolute;
    left: 12px;
    color: #4ade80;
    font-size: 16px;
    font-weight: 700;
}

.compare-cell.new {
    padding-left: 40px;
}

.feature-icon,
.step-number,
.step-icon,
.slider-btn,
.social-icon,
.newsletter-form button {
    border-radius: 8px;
    color: #ffffff;
    background: rgba(139, 92, 246, 0.14);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.package {
    border-radius: 7px;
    background: rgba(244, 241, 234, 0.045);
    border-color: rgba(244, 241, 234, 0.08);
}

.coach-btn {
    border-radius: 8px;
    background: #f4f1ea;
}

.coach-btn:hover {
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(244, 241, 234, 0.16);
}

.step-line {
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.78), transparent);
}

.slider-btn:hover,
.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-dot.active {
    background: linear-gradient(90deg, var(--primary), var(--accent-green));
}

.cta {
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(139, 92, 246, 0.22), transparent 44%),
        linear-gradient(180deg, #171126, #090713);
    border-color: rgba(139, 92, 246, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 26px 70px rgba(0, 0, 0, 0.34);
}

.cta .btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #5b21b6 100%);
}

.faq-item {
    border-radius: 8px;
}

.newsletter-form input,
.setting-group select,
.setting-group input[type="range"],
#crosshairCode {
    border-radius: 7px;
    border-color: rgba(244, 241, 234, 0.1);
    background: rgba(244, 241, 234, 0.045);
}

.aim-trainer-container {
    border-radius: 10px;
    border-color: rgba(139, 92, 246, 0.3);
}

.aim-header {
    background: rgba(8, 6, 17, 0.88);
    border-bottom-color: rgba(139, 92, 246, 0.26);
}

.aim-header h2 {
    text-shadow: 0 0 22px rgba(139, 92, 246, 0.36);
}

.aim-content {
    background:
        radial-gradient(circle at center, rgba(139, 92, 246, 0.13), transparent 34%),
        linear-gradient(180deg, #141022 0%, #080611 100%);
}

#aimTargetArea {
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
}

.aim-target {
    background: radial-gradient(circle, #ffffff 0 16%, #15f5ba 17% 44%, #8b5cf6 45% 100%);
    box-shadow: 0 0 24px rgba(21, 245, 186, 0.58), inset 0 0 10px rgba(255, 255, 255, 0.86);
}

.aim-suggestion {
    background: rgba(139, 92, 246, 0.1);
    border-left-color: var(--primary);
}

.custom-checkbox-box {
    border-radius: 6px;
    border-color: rgba(139, 92, 246, 0.42);
}

.custom-checkbox-input:checked~.custom-checkbox-label .custom-checkbox-box {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 18px rgba(139, 92, 246, 0.38);
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 118px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .hero {
        padding: 96px 0 70px;
    }

    .dynamic-bg::before {
        width: 110vw;
        top: 8%;
        opacity: 0.2;
        filter: blur(34px);
    }

    .dynamic-bg::after {
        width: 110vw;
        top: 16%;
        opacity: 0.24;
    }

    .brand-watermark {
        font-size: 38vw;
        top: 32%;
        opacity: 0.34;
    }

    .hero-badge,
    .section-badge {
        font-size: 11px;
    }

    .hero-stats {
        gap: 10px;
    }

    .stat {
        flex: 1 1 120px;
        min-width: 0;
        padding: 14px 12px;
    }

    .features,
    .coaches,
    .how-it-works,
    .testimonials,
    .faq {
        padding: 90px 0;
    }

    .why-compare {
        margin-bottom: 80px;
    }

    .compare-panel {
        grid-template-columns: 1fr;
    }

    .compare-panel::before {
        display: none;
    }

    .compare-heading {
        padding: 22px 20px;
    }

    .compare-cell {
        min-height: auto;
        padding: 18px 20px;
    }

    .compare-heading.compare-new {
        border-top: 1px solid rgba(139, 92, 246, 0.22);
    }

    .cta {
        border-radius: 0;
    }
}

/* Form Text Enhancements */
.application-form .form-group label {
    font-size: 14px;
}

.application-form .form-group input,
.application-form .form-group select,
.application-form .form-group textarea {
    font-size: 15px;
}

.custom-checkbox-text {
    font-size: 14px;
}

/* Coach Cards Custom Styles */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .coaches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .coaches-grid {
        grid-template-columns: 1fr;
    }
}

.coach-card {
    background: #0a0a0f;
    border: 1px solid rgba(139, 92, 246, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
    border-radius: 16px;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.coach-card:hover {
    transform: none;
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 8px 32px 0 rgba(139, 92, 246, 0.25);
}

.coach-avatar {
    width: 100%;
    height: 380px;
    margin: 0;
    padding: 0;
    position: relative;
    border: none;
    box-shadow: none;
    background: transparent;
    overflow: hidden;
    flex-shrink: 0;
}

.coach-avatar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(10, 10, 15, 0) 0%, 
        rgba(10, 10, 15, 0.3) 40%,
        rgba(10, 10, 15, 0.85) 80%,
        rgba(10, 10, 15, 1) 100%);
    pointer-events: none;
    z-index: 1;
    transition: none;
}

.coach-card:hover .coach-avatar::after {
    background: linear-gradient(to bottom, 
        rgba(10, 10, 15, 0) 0%, 
        rgba(10, 10, 15, 0.3) 40%,
        rgba(10, 10, 15, 0.85) 80%,
        rgba(10, 10, 15, 1) 100%);
}

.coach-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    transition: none;
}

.coach-badge-top {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 66, 161, 0.95);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 66, 161, 0.4);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.coach-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 24px 24px 24px;
    margin-top: 16px;
}

.coach-tag {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.25);
    transition: all 0.3s ease;
}

.coach-tag:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.4);
}

.rank-analysis-btn {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    color: var(--primary) !important;
    font-weight: 800 !important;
    box-shadow: none !important;
    transition: opacity 0.2s ease !important;
}

.rank-analysis-btn:hover {
    background: none !important;
    box-shadow: none !important;
    transform: none !important;
    border-color: transparent !important;
    opacity: 0.75 !important;
}
@media (max-width: 768px) {
    .coach-avatar {
        height: 250px;
    }
    
    .coach-name {
        font-size: 20px;
        padding: 0 20px;
    }
    
    .coach-rank {
        padding: 0 20px;
    }
    
    .coach-desc {
        padding: 0 20px 20px 20px;
    }
    
    .coach-tags {
        padding: 0 20px 20px 20px;
    }
    
    .coach-badge-top {
        top: 12px;
        right: 12px;
        padding: 6px 12px;
        font-size: 11px;
    }
}

.coach-name {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    margin-top: 20px;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.coach-rank-inline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.coach-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0 24px 20px 24px;
    position: relative;
    z-index: 2;
}

/* Custom Tooltip Styles */
.custom-tooltip-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 6px;
    color: var(--primary);
    cursor: help;
}

.custom-tooltip-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 150%;
    left: -15px;
    /* Adjust positioning slightly */
    width: 320px;
    background-color: #110e20;
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #f5f5f7;
    text-align: left;
    border-radius: 12px;
    padding: 16px;
    z-index: 1000;
    transition: opacity 0.3s, visibility 0.3s;
    font-size: 13px;
    line-height: 1.6;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.custom-tooltip-content p {
    margin-bottom: 12px;
}

.custom-tooltip-content p:last-child {
    margin-bottom: 0;
}

.custom-tooltip-content strong {
    color: #fff;
    font-weight: 700;
}

.custom-tooltip-wrapper:hover .custom-tooltip-content {
    visibility: visible;
    opacity: 1;
}

/* Tooltip Arrow */
.custom-tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 20px;
    border-width: 6px;
    border-style: solid;
    border-color: rgba(139, 92, 246, 0.4) transparent transparent transparent;
}

/* Models Grid Responsive */
.models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
}

/* Coaching Models Themed Styles */
.coaching-models {
    padding: 40px 0 40px 0;
    position: relative;
}

.model-card {
    background: rgba(18, 16, 32, 0.45);
    border: 1px solid rgba(139, 92, 246, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s;
    height: 100%;
}

.model-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
    background: rgba(25, 22, 45, 0.65);
    box-shadow: 0 8px 32px 0 rgba(139, 92, 246, 0.15);
}

.model-icon {
    font-size: 42px;
    margin-bottom: 24px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.model-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.model-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.model-header .model-title {
    margin-bottom: 0;
}

.model-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.model-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.highlight-text {
    color: #10b981;
    font-weight: 600;
}

.model-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.model-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.model-features li i {
    color: #6366f1;
    margin-top: 4px;
}

/* Dynamic Action Cards */
.action-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.action-card {
    background: rgba(18, 16, 32, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.card-header-red {
    color: #ef4444;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.card-title-white {
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.2;
}

.card-desc-gray {
    color: #9ca3af;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .action-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .action-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CANLI DESTEK (LIVE SUPPORT) WIDGET STYLES
   ========================================================================== */

.live-support-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.live-support-fab i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.live-support-fab:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.6);
}

.live-support-fab.open i {
    transform: rotate(90deg);
}

.live-support-fab::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: fabPulse 2s infinite;
    pointer-events: none;
}

@keyframes fabPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.live-support-widget {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 380px;
    height: 540px;
    max-height: calc(100vh - 140px);
    max-width: calc(100vw - 60px);
    border-radius: 20px;
    background: rgba(11, 8, 20, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.live-support-widget.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.support-widget-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(109, 40, 217, 0.05) 100%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.18);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-status-container {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.support-status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-green);
    animation: supportBlink 2s infinite;
}

@keyframes supportBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.support-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.support-close-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.support-widget-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(0, 0, 0, 0.15);
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.3) transparent;
}

.support-widget-body::-webkit-scrollbar {
    width: 6px;
}

.support-widget-body::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 3px;
}

.support-message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
    animation: messageSlide 0.25s ease-out;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.support-message.bot {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
}

.support-message.user {
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 3px;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.2);
}

.support-message.admin {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1e40af 100%);
    color: white;
    align-self: flex-start;
    border-bottom-left-radius: 3px;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.2);
}

.support-message-time {
    font-size: 10px;
    opacity: 0.5;
    margin-top: 5px;
    text-align: right;
    display: block;
}

.support-preset-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.support-preset-btn {
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 12px;
    padding: 10px 14px;
    color: var(--text);
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    font-weight: 500;
}

.search-box-wrap {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
    max-width: 340px;
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(167, 139, 250, 0.7);
    font-size: 15px;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 12px 18px 12px 44px !important;
    background: linear-gradient(135deg, rgba(30, 20, 60, 0.95), rgba(40, 28, 75, 0.92)) !important;
    background-color: rgba(24, 15, 48, 0.95) !important;
    border: 1.5px solid rgba(139, 92, 246, 0.55) !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-family: inherit !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(139, 92, 246, 0.08) inset !important;
}

.search-input::placeholder {
    color: rgba(200, 190, 230, 0.55) !important;
}

.search-input:focus {
    border-color: rgba(192, 132, 252, 0.95) !important;
    box-shadow:
        0 0 30px rgba(139, 92, 246, 0.5),
        0 0 60px rgba(139, 92, 246, 0.25),
        0 8px 28px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(192, 132, 252, 0.2) inset !important;
    background: linear-gradient(135deg, rgba(50, 30, 90, 0.95), rgba(70, 45, 120, 0.92)) !important;
}

@media (max-width: 640px) {
    .search-box-wrap {
        justify-content: center;
    }
    .search-input-wrapper {
        max-width: 100%;
    }
}

.support-preset-btn:hover {
    background: rgba(139, 92, 246, 0.14);
    border-color: var(--primary);
    transform: translateX(3px);
}

.support-feedback-container {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.support-feedback-btn {
    flex: 1;
    padding: 9px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.support-feedback-btn.yes {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.06);
    color: var(--accent-green);
}

.support-feedback-btn.yes:hover {
    background: rgba(16, 185, 129, 0.15);
}

.support-feedback-btn.no {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.06);
    color: #ef4444;
}

.support-feedback-btn.no:hover {
    background: rgba(239, 68, 68, 0.15);
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px;
    border-radius: 12px;
    margin-top: 4px;
    animation: messageSlide 0.3s ease-out;
}

.support-form-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 2px;
    text-align: center;
}

.support-form-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--text);
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.support-form-input:focus {
    border-color: var(--primary);
}

.support-form-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 9px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    margin-top: 4px;
}

.support-form-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
}

.support-input-container {
    border-top: 1px solid rgba(139, 92, 246, 0.18);
    padding: 12px 16px;
    display: flex;
    gap: 10px;
    background: rgba(11, 8, 20, 0.98);
    align-items: center;
}

.support-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--text);
    font-size: 13px;
    outline: none;
    transition: all 0.2s;
    font-family: inherit;
}

.support-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
}

.support-send-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 10px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    flex-shrink: 0;
}

.support-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.support-typing {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    align-self: flex-start;
    animation: typingPulse 1.5s infinite;
}

@keyframes typingPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@media (max-width: 480px) {
    .live-support-widget {
        bottom: 90px;
        right: 15px;
        left: 15px;
        width: auto;
        max-width: none;
        height: 480px;
    }
    .live-support-fab {
        bottom: 20px;
        right: 20px;
    }
}

/* ==========================================================================
   AURA THE CAT
   ========================================================================== */
.aura-cat-container {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-100px, -100px); /* start off-screen */
    transition: transform 0.1s linear;
    filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
    will-change: transform;
}

.aura-cat-nametag {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: rgba(139, 92, 246, 0.8);
    padding: 2px 8px;
    border-radius: 12px;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.aura-cat-container.active .aura-cat-nametag {
    opacity: 1;
    transform: translateY(0);
}

.aura-cat-icon {
    font-size: 32px;
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.2s ease;
}

.aura-cat-container.walking .aura-cat-icon {
    animation: catWalk 0.4s infinite alternate;
}

.aura-cat-container.flip .aura-cat-icon {
    transform: scaleX(-1);
}

/* Combined animation when flipped and walking */
.aura-cat-container.flip.walking .aura-cat-icon {
    animation: catWalkFlip 0.4s infinite alternate;
}

@keyframes catWalk {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-4px) rotate(5deg); }
}

@keyframes catWalkFlip {
    0% { transform: scaleX(-1) translateY(0) rotate(0deg); }
    100% { transform: scaleX(-1) translateY(-4px) rotate(-5deg); }
}

/* Cat Dialog Bubble */
.aura-cat-dialog {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.9);
    background: rgba(13, 10, 24, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 12px;
    padding: 8px 12px;
    color: #e2e8f0;
    font-size: 12px;
    text-align: center;
    width: max-content;
    max-width: 200px;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(139, 92, 246, 0.2);
    margin-bottom: 15px;
    z-index: 10;
}
.aura-cat-dialog::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(139, 92, 246, 0.4) transparent transparent transparent;
}

.aura-cat-container.active:hover .aura-cat-dialog {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

.aura-cat-container.happy .aura-cat-dialog {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    border-color: #ec4899;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 15px rgba(236, 72, 153, 0.4);
}
.aura-cat-container.happy .aura-cat-dialog::after {
    border-color: #ec4899 transparent transparent transparent;
}

/* Make cat clickable */
.aura-cat-container.active {
    pointer-events: auto;
    cursor: pointer;
}

/* Happy state animation */
.aura-cat-container.happy .aura-cat-icon {
    animation: catHappy 0.6s ease-in-out infinite alternate !important;
    background: linear-gradient(135deg, #f472b6 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.6));
}

@keyframes catHappy {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.2) translateY(-10px); }
    100% { transform: scale(1.1) translateY(-5px); }
}

.aura-hearts-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 11;
}
.aura-heart {
    position: absolute;
    color: #ec4899;
    font-size: 14px;
    opacity: 0;
    left: 50%;
    top: 50%;
    animation: floatHeart 1s ease-out forwards;
}

@keyframes floatHeart {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(1.2); opacity: 0; }
}

/* Explosion state animation */
.aura-cat-container.explosion .aura-cat-icon {
    animation: catExplosion 0.15s ease-in-out infinite alternate !important;
    background: linear-gradient(135deg, #f472b6 0%, #a855f7 50%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.9));
}

@keyframes catExplosion {
    0% { transform: scale(1.3) translateY(0) rotate(-5deg); }
    100% { transform: scale(1.6) translateY(-10px) rotate(5deg); }
}

/* Death State */
.aura-cat-container.dead .aura-cat-icon {
    animation: none !important;
    background: #64748b; /* grayscale */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(100, 116, 139, 0.4));
    transform: rotate(90deg) translateY(10px) !important;
    transition: all 1s ease;
}

.aura-cat-container.dead .aura-cat-dialog {
    border-color: #64748b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    color: #94a3b8;
}
.aura-cat-container.dead .aura-cat-dialog::after {
    border-color: #64748b transparent transparent transparent;
}

/* Flash Bang Effect */
.site-flash-bang {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 999999;
    pointer-events: none;
    animation: flashBang 1s ease-out forwards;
}

@keyframes flashBang {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* Body Shake Effect */
.body-shake {
    animation: bodyShake 0.5s ease-in-out;
}

@keyframes bodyShake {
    0% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(-10px, 10px) rotate(-1deg); }
    40% { transform: translate(10px, -10px) rotate(1deg); }
    60% { transform: translate(-10px, -10px) rotate(-1deg); }
    80% { transform: translate(10px, 10px) rotate(1deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* ==========================================================================
   GLOBAL RANK TIMELINE (FIXED ON LEFT)
   ========================================================================== */
#global-rank-timeline {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 60px;
    z-index: 999;
    pointer-events: none;
}

.global-timeline-line {
    position: absolute;
    top: 130px;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.global-timeline-progress {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0%;
    background: linear-gradient(180deg, #a78bfa, #db2777);
    box-shadow: 0 0 10px #db2777, 0 0 20px #a78bfa;
    border-radius: 4px;
}

.global-timeline-icons {
    position: absolute;
    top: 130px;
    bottom: 50px;
    left: 0;
    right: 0;
}

.global-icon {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #0f061f;
    border: 2px solid rgba(167, 139, 250, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.global-icon img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    opacity: 0.3;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.global-icon.reached {
    border-color: #db2777;
    box-shadow: 0 0 15px rgba(219, 39, 119, 0.8);
    background: rgba(219, 39, 119, 0.1);
}
.global-icon.reached img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)) grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

.global-icon.radiant {
    width: 50px;
    height: 50px;
}
.global-icon.radiant.reached {
    border-color: #fef08a;
    box-shadow: 0 0 25px rgba(254, 240, 138, 0.6);
    background: rgba(254, 240, 138, 0.2);
}

@media (max-width: 1024px) {
    #global-rank-timeline {
        display: none;
    }
}
/* ==========================================================================
   FINAL MOBILE FIXES (User Requested)
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. Hide Menu Elements on Right */
    .nav-links, 
    .nav-right, 
    .mobile-menu-btn, 
    .lang-switcher {
        display: none !important;
    }

    .nav-wrapper {
        justify-content: center !important;
    }

    /* 2. Global Overflow Fixes */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
    }

    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    .container {
        padding: 0 15px !important;
        overflow: hidden !important;
    }

    /* 3. Hero Section Fixes */
    .hero {
        padding: 80px 0 40px !important;
        min-height: auto !important;
    }

    .hero-title {
        font-size: clamp(24px, 8vw, 36px) !important;
        line-height: 1.2 !important;
        white-space: normal !important;
        word-break: break-word !important;
        text-align: center !important;
    }

    .typewriter {
        font-size: inherit !important;
        white-space: normal !important;
        display: inline !important;
    }

    .hero-subtitle {
        font-size: 14px !important;
        text-align: center !important;
        margin-bottom: 25px !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .hero-buttons a {
        width: 100% !important;
        justify-content: center !important;
    }

    .hero-stats {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        margin-top: 30px !important;
    }

    .stat {
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
    }

    .stat-number {
        font-size: 40px !important;
    }

    /* 4. Hero Cards Slider Fix */
    .hero-image {
        height: auto !important;
        margin-top: 40px !important;
    }

    .hero-cards-slider {
        max-width: 100% !important;
    }

    .hero-cards-slide {
        position: relative !important;
        opacity: 1 !important;
        transform: none !important;
        gap: 15px !important;
    }

    .hero-card {
        width: 100% !important;
        border-radius: 15px !important;
        padding: 12px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        transform: none !important;
        align-self: center !important;
    }

    .hero-card-avatar {
        width: 50px !important;
        height: 50px !important;
    }

    .hero-card-info h4 {
        font-size: 14px !important;
        white-space: normal !important;
    }

    /* 5. Rank Analysis Fixes */
    .rank-analysis-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .score-container {
        flex-direction: column !important;
        text-align: center !important;
    }

    .score-circle {
        margin: 0 auto !important;
    }

    /* 6. Aim Trainer Fixes */
    .aim-trainer-container {
        height: 500px !important;
        border-radius: 12px !important;
    }

    .aim-settings-panel {
        grid-template-columns: 1fr !important;
        padding: 15px !important;
    }

    .aim-hud {
        padding: 0 10px !important;
        top: 10px !important;
    }

    .hud-item {
        font-size: 16px !important;
        padding: 5px 10px !important;
    }

    /* 7. Why Aura Compare Fixes */
    .compare-panel {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .compare-cell {
        font-size: 13px !important;
        padding: 12px 15px 12px 35px !important;
    }

    /* 8. Footer Fixes */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .footer-logo {
        justify-content: center !important;
    }

    /* 9. Testimonials / Yorumlar Fixes (Yuksek Specificity ile) */
    section.testimonials {
        padding: 30px 0 50px 0 !important;
        overflow: hidden !important;
    }

    .testimonials > .container {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .testimonials .testimonials-wrapper {
        max-width: 100% !important;
        padding: 0 12px !important;
        position: relative !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .testimonials .testimonials-slider {
        overflow: hidden !important;
        min-height: auto !important;
        padding: 0 !important;
        margin: 0 auto 20px auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .testimonials .testimonials-track {
        gap: 12px !important;
        padding: 4px 2px !important;
        width: max-content !important;
        box-sizing: border-box !important;
    }

    .testimonials .testimonials-track > .testimonial-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        flex: 0 0 100% !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        min-height: auto !important;
        padding: 16px !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto auto !important;
        gap: 12px !important;
        box-sizing: border-box !important;
        border-radius: 16px !important;
    }

    .testimonial-header {
        grid-column: 1 / -1 !important;
        grid-row: 1 !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        gap: 14px !important;
        margin-bottom: 0 !important;
    }

    .testimonial-avatar {
        width: 60px !important;
        height: 60px !important;
        flex-shrink: 0 !important;
    }

    .testimonial-info {
        text-align: left !important;
    }

    .testimonial-info h4 {
        font-size: 16px !important;
    }

    .testimonial-info span {
        font-size: 12px !important;
    }

    .testimonial-text {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
        font-size: 13px !important;
        line-height: 1.6 !important;
        -webkit-line-clamp: 6 !important;
    }

    .testimonial-rating {
        grid-column: 1 / -1 !important;
        grid-row: 3 !important;
        justify-content: flex-start !important;
    }

    .slider-btn {
        display: none !important;
    }

    .slider-dots {
        justify-content: center !important;
    }

    /* 10. Hero Boşluk ve Stats Düzeltmeleri */
    .hero {
        padding: 60px 0 30px 0 !important;
        gap: 30px !important;
    }

    .hero .container {
        gap: 30px !important;
    }

    .hero-stats {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .section {
        padding: 30px 0 !important;
    }

    .section-header {
        margin-bottom: 24px !important;
    }

    .section-title {
        font-size: 26px !important;
    }
}

