/* ========================================
   Global Styles & Variables
   ======================================== */
:root {
    --primary-color: #FFA000;
    --primary-light: #FFB300;
    --primary-dark: #E65100;
    --secondary-color: #FF6D00;
    --accent-color: #FFD180;
    --bg-dark: #0f0f1e;
    --bg-darker: #080812;
    --bg-light: #1a1a2e;
    --bg-card: #151525;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gradient-primary: linear-gradient(135deg, #FFA000 0%, #E65100 100%);
    --gradient-secondary: linear-gradient(135deg, #E65100 0%, #FFA000 100%);
    --gradient-accent: linear-gradient(135deg, #FFD180 0%, #FFA000 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(255, 160, 0, 0.2);
    --shadow-glow-strong: 0 0 40px rgba(255, 160, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* GPU Acceleration */
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ========================================
   SIMPLE: NAVBAR & SCROLL BUTTON - NO ANIMATIONS
   ======================================== */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10000 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.scroll-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

/* Animated Gradient Orb 1 */
body::after {
    content: '';
    position: fixed;
    top: -30%;
    right: -15%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(255, 160, 0, 0.2) 0%, rgba(230, 81, 0, 0.12) 35%, transparent 65%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    animation: floatOrb1 25s ease-in-out infinite;
}

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }

    33% {
        transform: translate(-150px, 100px) scale(1.1);
        opacity: 1;
    }

    66% {
        transform: translate(100px, -80px) scale(0.95);
        opacity: 0.8;
    }
}

/* Neon Lines Animation - VERTICAL (Top to Bottom) */
.bg-lines-vertical {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: space-evenly;
    overflow: hidden;
    opacity: 0.5;
}

.bg-line-v {
    width: 1px;
    height: 100%;
    background: rgba(255, 160, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.bg-line-v::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent, rgba(255, 160, 0, 0.8), transparent);
    animation: dropLineVertical ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 160, 0, 0.6);
}

.bg-line-v:nth-child(1)::after {
    animation-delay: 0s;
    animation-duration: 10s;
}

.bg-line-v:nth-child(2)::after {
    animation-delay: 2s;
    animation-duration: 12s;
}

.bg-line-v:nth-child(3)::after {
    animation-delay: 4s;
    animation-duration: 11s;
}

.bg-line-v:nth-child(4)::after {
    animation-delay: 1s;
    animation-duration: 13s;
}

.bg-line-v:nth-child(5)::after {
    animation-delay: 3s;
    animation-duration: 10.5s;
}

.bg-line-v:nth-child(6)::after {
    animation-delay: 5s;
    animation-duration: 11.5s;
}

.bg-line-v:nth-child(7)::after {
    animation-delay: 1.5s;
    animation-duration: 12.5s;
}

.bg-line-v:nth-child(8)::after {
    animation-delay: 2.8s;
    animation-duration: 11s;
}

.bg-line-v:nth-child(9)::after {
    animation-delay: 0.3s;
    animation-duration: 13.5s;
}

.bg-line-v:nth-child(10)::after {
    animation-delay: 4.2s;
    animation-duration: 10.8s;
}

/* Neon Lines Animation - HORIZONTAL (Right to Left) */
.bg-lines-horizontal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    overflow: hidden;
    opacity: 0.5;
}

.bg-line-h {
    height: 1px;
    width: 100%;
    background: rgba(255, 160, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.bg-line-h::after {
    content: '';
    position: absolute;
    right: -100%;
    top: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(to left, transparent, rgba(255, 160, 0, 0.8), transparent);
    animation: slideLineHorizontal ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 160, 0, 0.6);
}

.bg-line-h:nth-child(1)::after {
    animation-delay: 0s;
    animation-duration: 10s;
}

.bg-line-h:nth-child(2)::after {
    animation-delay: 3s;
    animation-duration: 12s;
}

.bg-line-h:nth-child(3)::after {
    animation-delay: 6s;
    animation-duration: 11s;
}

.bg-line-h:nth-child(4)::after {
    animation-delay: 2s;
    animation-duration: 13s;
}

.bg-line-h:nth-child(5)::after {
    animation-delay: 5s;
    animation-duration: 10.5s;
}

.bg-line-h:nth-child(6)::after {
    animation-delay: 7s;
    animation-duration: 11.5s;
}

.bg-line-h:nth-child(7)::after {
    animation-delay: 1.5s;
    animation-duration: 12.5s;
}

.bg-line-h:nth-child(8)::after {
    animation-delay: 4.5s;
    animation-duration: 11s;
}

.bg-line-h:nth-child(9)::after {
    animation-delay: 6.5s;
    animation-duration: 13.5s;
}

.bg-line-h:nth-child(10)::after {
    animation-delay: 3.2s;
    animation-duration: 10.8s;
}

@keyframes dropLineVertical {
    0% {
        top: -100%;
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        top: 200%;
        opacity: 0;
    }
}

@keyframes slideLineHorizontal {
    0% {
        right: -100%;
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        right: 200%;
        opacity: 0;
    }
}

/* Content layering - removed to fix neon lines visibility */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   Typography
   ======================================== */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* GPU Acceleration */
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 160, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 160, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* AGGRESSIVE: Override any possible hiding */
.navbar[style*="display: none"],
.navbar[style*="visibility: hidden"],
.navbar[style*="opacity: 0"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.nav-brand:hover {
    transform: translateY(-2px);
}

.nav-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 4px 15px rgba(255, 160, 0, 0.4));
    transition: all 0.3s ease;
}

.nav-brand:hover .nav-logo {
    filter: drop-shadow(0 6px 20px rgba(255, 160, 0, 0.6));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    font-size: 12px;
    padding: 10px 20px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 3;
    background: transparent;
    border: none;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.nav-toggle:hover span {
    background: var(--primary-light);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 160, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(230, 81, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 209, 128, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-subtitle-top {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: none;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 20px;
    letter-spacing: -1px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-note {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Background Effects */
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 1400px;
    height: 1400px;
    background: radial-gradient(circle, rgba(255, 160, 0, 0.15) 0%, rgba(230, 81, 0, 0.08) 30%, transparent 60%);
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 12s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 45%, rgba(255, 160, 0, 0.02) 45.5%, rgba(255, 160, 0, 0.02) 46%, transparent 46.5%),
        linear-gradient(135deg, transparent 45%, rgba(230, 81, 0, 0.02) 45.5%, rgba(230, 81, 0, 0.02) 46%, transparent 46.5%);
    background-size: 60px 60px;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
    opacity: 0.6;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: 120px 0;
    position: relative;
    overflow: visible;
}

/* Section layering - removed to fix neon lines visibility */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 56px;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Assassin 2v2 Highlight */
.assassin-highlight {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 40px;
    background: rgba(10, 10, 21, 0.8);
    border: 2px solid rgba(255, 160, 0, 0.3);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.assassin-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 160, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.assassin-content {
    position: relative;
    z-index: 2;
}

.assassin-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    padding: 10px 24px;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(255, 160, 0, 0.5);
}

.assassin-badge i {
    font-size: 18px;
}

.assassin-text {
    color: var(--text-primary);
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 25px 0;
    text-align: left;
}

.assassin-text strong {
    color: var(--primary-color);
    font-weight: 800;
}

.assassin-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 500px;
    margin-top: 25px;
}

.assassin-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255, 160, 0, 0.1);
    border: 1px solid rgba(255, 160, 0, 0.3);
    border-radius: 30px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    min-height: 48px;
    transition: all 0.3s ease;
}

.assassin-feature-item:hover {
    background: rgba(255, 160, 0, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 160, 0, 0.3);
}

.assassin-feature-item i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.assassin-character {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.character-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 160, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}

.assassin-img {
    position: relative;
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(255, 160, 0, 0.4));
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

/* Responsive for Assassin Highlight */
@media (max-width: 1024px) {
    .assassin-highlight {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 35px 30px;
    }
    
    .assassin-text {
        text-align: center;
    }
    
    .assassin-features {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        max-width: 100%;
    }
    
    .assassin-feature-item {
        font-size: 13px;
        padding: 12px 16px;
    }
    
    .assassin-character {
        height: 350px;
        order: -1; /* Karakteri üste taşı */
    }
}

@media (max-width: 640px) {
    .assassin-highlight {
        padding: 25px 20px;
    }
    
    .assassin-character {
        height: 280px;
    }
    
    .assassin-text {
        font-size: 16px;
    }
    
}

/* ========================================
   Features Section
   ======================================== */
.features {
    background: transparent;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 160, 0, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: rgba(10, 10, 21, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 160, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(50px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(255, 160, 0, 0.4);
    border-color: var(--primary-color);
    background: rgba(10, 10, 21, 0.95);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 8px 30px rgba(255, 160, 0, 0.5);
}

.feature-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 15px;
}

.feature-card.special-highlight {
    background: linear-gradient(135deg, rgba(255, 160, 0, 0.05) 0%, rgba(230, 81, 0, 0.05) 100%);
    border: 2px solid rgba(255, 160, 0, 0.3);
    position: relative;
}

.feature-card.special-highlight::before {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-card.special-highlight:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 160, 0, 0.4);
}

/* ========================================
   Screenshot Section
   ======================================== */
.screenshot-section {
    background: transparent;
    position: relative;
    overflow: visible;
}

.screenshot-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 160, 0, 0.18) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.screenshot-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .screenshot-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .screenshot-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.screenshot-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 160, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(50px);
}

.screenshot-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.screenshot-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
    padding: 0;
    margin: 0;
    line-height: 0;
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background: transparent;
    transition: transform 0.5s ease;
    padding: 0;
    margin: 0;
    border: none;
}

.screenshot-card:hover .screenshot-img {
    transform: scale(1.05);
}

.screenshot-info {
    padding: 20px;
}

.screenshot-info h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.screenshot-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   Toggle Features Section
   ======================================== */
.toggle-features {
    background: transparent;
    position: relative;
}

.toggle-features::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(230, 81, 0, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.toggles-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.toggle-item {
    background: rgba(10, 10, 21, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border: 1px solid rgba(255, 160, 0, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(50px);
}

.toggle-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(255, 160, 0, 0.3);
    transform: translateY(-3px);
}

.toggle-info h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.toggle-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-light);
    transition: 0.4s;
    border-radius: 34px;
    border: 2px solid var(--text-muted);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--text-muted);
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked+.toggle-slider {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(26px);
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: rgba(10, 10, 21, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px 25px;
    border-radius: 24px;
    border: 2px solid rgba(255, 160, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(50px);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(255, 160, 0, 0.4);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 2px;
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255, 160, 0, 0.5);
    background: rgba(10, 10, 21, 0.95);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px;
}

.amount {
    font-size: 56px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 20px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .fa-check {
    color: var(--success);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 15px;
    font-style: italic;
}

.pricing-features li strong {
    color: var(--primary-color);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    background: transparent;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    bottom: -25%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 215, 64, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(10, 10, 21, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 45px 35px;
    border-radius: 24px;
    border: 1px solid rgba(255, 160, 0, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(50px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 160, 0, 0.35);
    border-color: var(--primary-color);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-muted);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(10, 10, 21, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 160, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contact-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(255, 160, 0, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(10, 10, 21, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 160, 0, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 160, 0, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 81, 0, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    font-style: italic;
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background: var(--gradient-primary) !important;
    border: none !important;
    border-radius: 16px !important;
    color: white !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    transition: none !important;
    animation: none !important;
    z-index: 9999 !important;
    box-shadow: 0 8px 30px rgba(232, 154, 60, 0.4) !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    transform: none !important;
}

/* AGGRESSIVE: Override any possible hiding */
.scroll-top[style*="display: none"],
.scroll-top[style*="visibility: hidden"],
.scroll-top[style*="opacity: 0"] {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.scroll-top.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 40px rgba(232, 154, 60, 0.8);
}

.scroll-top::before {
    content: '↑';
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        gap: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        border-top: 1px solid rgba(255, 160, 0, 0.2);
        z-index: 10001;
        transform: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-link {
        padding: 15px 20px;
        font-size: 18px;
        width: 100%;
    }

    .nav-link:hover {
        background: rgba(255, 160, 0, 0.1);
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .section-title {
        font-size: 36px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .toggle-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card {
        padding: 40px 20px;
    }

    /* Assassin Highlight Mobile */
    .assassin-highlight {
        flex-direction: column;
        padding: 30px 20px;
    }

    .assassin-content {
        padding-right: 0;
    }

    .assassin-features {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }
    
    .assassin-feature-item {
        padding: 12px 16px;
        font-size: 13px;
        min-height: 44px;
    }

    .assassin-character {
        margin-top: 30px;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Screenshot Gallery Mobile */
    .screenshot-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Toggle Features Mobile */
    .toggle-item {
        padding: 20px 15px;
    }

    .toggle-info h4 {
        font-size: 16px;
    }

    .toggle-info p {
        font-size: 13px;
    }

    /* Contact Mobile */
    .contact-item {
        padding: 20px 15px;
    }

    /* Testimonials Mobile */
    .testimonial-text {
        font-size: 14px;
    }

    /* Scroll to Top Mobile */
    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 20px !important;
        right: 20px !important;
        font-size: 24px;
        position: fixed !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 9999 !important;
    }

    /* Buttons Touch Friendly */
    .btn {
        min-height: 44px;
        padding: 14px 24px;
        font-size: 16px;
    }

    /* Navbar Mobile */
    .navbar {
        padding: 12px 0;
    }

    .nav-logo {
        height: 35px;
    }

    .nav-brand span {
        font-size: 18px;
    }
}

/* ========================================
   Performance Optimizations
   ======================================== */
/* GPU Acceleration for animated elements */
.feature-card,
.pricing-card,
.testimonial-card,
.screenshot-card,
.toggle-item,
.class-card,
.nav-link,
.scroll-top,
.assassin-highlight,
.assassin-feature-item,
.bg-line-v::after,
.bg-line-h::after {
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Optimize hover effects */
.feature-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.screenshot-card:hover {
    will-change: transform, box-shadow;
}

/* Contain layout shifts */
.container {
    content-visibility: auto;
    contain: layout style paint;
}

.section-header {
    contain: layout style paint;
}

/* Optimize animations */
/* Reduced motion removed - animations always enabled */

/* ========================================
   Custom Scrollbar
   ======================================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-light);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ========================================
   Animations
   ======================================== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.feature-icon {
    animation: float 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 1s;
}

/* Loading Animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Glow Effect */
@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    }
}