/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-content {
    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-content .loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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;
    position: relative;
}

.loader-letter:nth-child(1) {
    animation-delay: 0s;
}
.loader-letter:nth-child(2) {
    animation-delay: 0.1s;
}
.loader-letter:nth-child(3) {
    animation-delay: 0.2s;
}
.loader-letter:nth-child(4) {
    animation-delay: 0.3s;
}
.loader-letter:nth-child(5) {
    animation-delay: 0.4s;
}
.loader-letter:nth-child(6) {
    animation-delay: 0.5s;
}
.loader-letter:nth-child(7) {
    animation-delay: 0.6s;
}
.loader-letter:nth-child(8) {
    animation-delay: 0.7s;
}

@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);
    }
}

:root {
    /* Modern Tech Color Palette */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --accent: #ec4899;
    --success: #10b981;
    --warning: #f59e0b;
    
    /* Backgrounds - Dark Mode (Siyah/Gri) */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --bg-card: #1f1f1f;
    --bg-hover: #2a2a2a;
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    
    /* Borders & Dividers */
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(99, 102, 241, 0.3);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.4), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6), 0 4px 6px -2px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.7), 0 10px 10px -5px rgba(0, 0, 0, 0.6);
    
    /* Glow Effects */
    --glow-primary: 0 0 20px rgba(99, 102, 241, 0.5);
    --glow-accent: 0 0 30px rgba(236, 72, 153, 0.5);
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Only apply fade-in on pages with loader */
body.loading-page > *:not(.loader-wrapper) {
    opacity: 0;
    transition: opacity 0.8s ease-out 0.3s;
}

body.loading-page.fade-in > *:not(.loader-wrapper),
body:not(.loading-page) > * {
    opacity: 1;
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header - Animated */
.header {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 24px;
}

.logo h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    }
    50% { 
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.8), 0 0 30px rgba(99, 102, 241, 0.5);
    }
}

.logo p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.1rem;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 0.5rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--glow-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-link span {
    position: relative;
    z-index: 1;
}

/* Hero Section - Animated */
.hero {
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 0;
    filter: brightness(0.55) contrast(1.15) saturate(1.1);
    animation: heroVideoMove 20s ease-in-out infinite;
}

@keyframes heroVideoMove {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1.1);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(26, 26, 26, 0.65) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 20;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 20;
}


.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: 
        0 0 40px rgba(99, 102, 241, 1),
        0 0 80px rgba(99, 102, 241, 0.6),
        3px 3px 15px rgba(0, 0, 0, 1);
    animation: titlePulse 3s ease-in-out infinite;
    position: relative;
    z-index: 20;
}

@keyframes titlePulse {
    0%, 100% { 
        text-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    }
    50% { 
        text-shadow: 0 0 50px rgba(99, 102, 241, 0.8), 0 0 70px rgba(99, 102, 241, 0.5);
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 
        0 2px 15px rgba(0, 0, 0, 1),
        0 0 20px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 20;
    font-weight: 500;
}

/* Buttons - Animated */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0.5rem;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    box-shadow: var(--shadow-md), var(--glow-primary);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg), var(--glow-accent);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--border-hover);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Section Styles */
section {
    padding: 4rem 0;
    position: relative;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
    box-shadow: var(--glow-primary);
    animation: lineExpand 1s ease-out;
}

@keyframes lineExpand {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundPulse 6s ease-in-out infinite;
    z-index: 0;
    transition: opacity 0.6s ease;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--section-bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                filter 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    filter: brightness(0.25) contrast(1.05) saturate(0.8);
    transform: scale(1.05);
    will-change: opacity, filter, transform;
}

.services.section-bg-active::before {
    opacity: 0.05;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services.section-bg-active::after {
    opacity: 0.4;
    filter: brightness(0.3) contrast(1.1) saturate(0.85);
    transform: scale(1.02);
}

/* Radial Gradient Overlay - Creates vignette effect */
.services {
    position: relative;
}

.services .section-bg-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 20%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    pointer-events: none;
}

.services.section-bg-active .section-bg-overlay {
    opacity: 1;
}

/* Mesh Pattern Overlay for texture */
.services .section-bg-mesh {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    pointer-events: none;
}

.services.section-bg-active .section-bg-mesh {
    opacity: 0.5;
}

.services .container {
    position: relative;
    z-index: 3;
}

.services .section-title,
.services .section-subtitle {
    position: relative;
    z-index: 3;
}

/* Color Overlay based on service type */
.services[data-service="mta"] .section-bg-overlay {
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 30%,
        rgba(239, 68, 68, 0.1) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.services[data-service="fivem"] .section-bg-overlay {
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 30%,
        rgba(249, 115, 22, 0.1) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.services[data-service="discord"] .section-bg-overlay {
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 30%,
        rgba(59, 130, 246, 0.1) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.services[data-service="website"] .section-bg-overlay {
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 30%,
        rgba(16, 185, 129, 0.1) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* Service Grid - Enhanced Creative Compact Design */
.service-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 0 auto 2.5rem;
    max-width: 1100px;
    perspective: 1000px;
}

.service-card-compact {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1.5px solid var(--border);
    border-radius: 1.25rem;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    font-family: inherit;
    text-align: left;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.3),
        0 2px 4px -1px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
    animation: cardFloat 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

/* Background Image on Hover */
.service-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    filter: brightness(0.25) contrast(1.05) saturate(0.8);
    transform: scale(1.05);
}

.service-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
}

.service-card-compact:hover .service-bg-image {
    opacity: 0.4;
    transform: scale(1.02);
    filter: brightness(0.3) contrast(1.1) saturate(0.85);
}

.service-card-compact[data-bg-image] .service-bg-image {
    background-image: var(--bg-image-url);
}

.service-card-compact[data-bg-image="https://i.imgur.com/NAhnmSq.jpeg"] .service-bg-image {
    background-image: url('https://i.imgur.com/NAhnmSq.jpeg');
}

.service-card-compact[data-bg-image="https://i.imgur.com/shcuAmR.jpeg"] .service-bg-image {
    background-image: url('https://i.imgur.com/shcuAmR.jpeg');
}

.service-card-compact[data-bg-image="https://i.imgur.com/z459MRj.jpeg"] .service-bg-image {
    background-image: url('https://i.imgur.com/z459MRj.jpeg');
}

.service-card-compact[data-bg-image="https://i.imgur.com/hYWOHh4.jpeg"] .service-bg-image {
    background-image: url('https://i.imgur.com/hYWOHh4.jpeg');
}

.service-card-compact:nth-child(1) { 
    animation-delay: 0s;
    --card-color: #ef4444; /* Kırmızı - MTA */
}
.service-card-compact:nth-child(2) { 
    animation-delay: 0.4s;
    --card-color: #f59e0b; /* Turuncu - FiveM */
}
.service-card-compact:nth-child(3) { 
    animation-delay: 0.8s;
    --card-color: #3b82f6; /* Mavi - Discord */
}
.service-card-compact:nth-child(4) { 
    animation-delay: 1.2s;
    --card-color: #10b981; /* Yeşil - Web Site */
}

@keyframes cardFloat {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg);
    }
    50% { 
        transform: translateY(-8px) rotateX(2deg);
    }
}

/* Shine Effect */
.service-card-compact::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
    z-index: 4;
}

.service-card-compact:hover::after {
    animation: shine 0.8s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

/* Icon Wrapper - Enhanced */
.service-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    z-index: 3;
    perspective: 500px;
}

.service-icon-bg {
    position: absolute;
    inset: -4px;
    background: var(--card-color, var(--primary));
    border-radius: 1rem;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(0.7) rotateY(90deg);
    filter: blur(8px);
    box-shadow: 0 0 20px var(--card-color, var(--primary));
}

.service-icon-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.875rem;
    filter: grayscale(0.4) brightness(0.75);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    transform-style: preserve-3d;
}

.service-card-compact:hover .service-icon-img,
.service-card-compact.active .service-icon-img {
    filter: grayscale(0) brightness(1) saturate(1.2) drop-shadow(0 0 8px var(--card-color, var(--primary)));
    transform: scale(1.1) rotateY(8deg) rotateZ(3deg);
}

.service-card-compact:hover .service-icon-bg,
.service-card-compact.active .service-icon-bg {
    opacity: 0.15;
    transform: scale(1.05) rotateY(0deg);
    filter: blur(8px);
}

/* Service Info - Enhanced */
.service-info {
    flex: 1;
    z-index: 3;
    min-width: 0;
    position: relative;
}

.service-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.service-info h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--card-color, var(--primary));
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 10px var(--card-color, var(--primary));
}

.service-card-compact:hover .service-info h3::after,
.service-card-compact.active .service-info h3::after {
    width: 100%;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(31, 31, 31, 0.9) 100%);
    border: 1px solid var(--border);
    border-radius: 0.625rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--card-color, var(--primary));
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-badge span {
    position: relative;
    z-index: 1;
}

.service-card-compact:hover .service-badge,
.service-card-compact.active .service-badge {
    border-color: var(--card-color, var(--primary));
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.service-card-compact:hover .service-badge::before,
.service-card-compact.active .service-badge::before {
    opacity: 0.15;
}

/* Arrow - Enhanced */
.service-arrow {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(31, 31, 31, 0.9) 100%);
    border: 1.5px solid var(--border);
    border-radius: 0.75rem;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
    z-index: 3;
    position: relative;
    overflow: hidden;
}

.service-arrow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--card-color, var(--primary));
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0.75rem;
}

.service-arrow i {
    position: relative;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-compact:hover .service-arrow,
.service-card-compact.active .service-arrow {
    background: var(--card-color, var(--primary));
    border-color: transparent;
    color: white;
    transform: translateX(8px) scale(1.1) rotate(5deg);
    box-shadow: 
        0 0 12px var(--card-color, var(--primary)),
        0 2px 8px rgba(99, 102, 241, 0.2);
}

.service-card-compact:hover .service-arrow::before,
.service-card-compact.active .service-arrow::before {
    opacity: 0;
}

.service-card-compact:hover .service-arrow i,
.service-card-compact.active .service-arrow i {
    transform: translateX(3px);
}

/* Glow Effect - Reduced */
.service-glow {
    position: absolute;
    inset: -4px;
    background: var(--card-color, var(--primary));
    border-radius: 1.25rem;
    opacity: 0;
    z-index: 1;
    filter: blur(12px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-compact:hover .service-glow,
.service-card-compact.active .service-glow {
    opacity: 0.15;
    filter: blur(15px);
}

/* Active State - Reduced Glow */
.service-card-compact.active {
    border-color: var(--card-color, var(--primary));
    background: linear-gradient(
        135deg, 
        rgba(99, 102, 241, 0.06) 0%, 
        rgba(236, 72, 153, 0.06) 50%,
        rgba(99, 102, 241, 0.06) 100%
    );
    box-shadow: 
        var(--shadow-md),
        0 0 15px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-6px) scale(1.02) rotateX(1deg);
}

.service-card-compact.active .service-info h3 {
    color: var(--card-color, var(--primary));
    text-shadow: 
        0 0 10px var(--card-color, var(--primary));
    transform: translateX(3px);
}

.service-card-compact.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--card-color, var(--primary));
    border-radius: 1.25rem 0 0 1.25rem;
    box-shadow: 0 0 8px var(--card-color, var(--primary));
}

/* Hover Effects - Reduced Glow */
.service-card-compact:hover {
    border-color: var(--card-color, var(--border-hover));
    background: linear-gradient(
        135deg, 
        rgba(31, 31, 31, 0.95) 0%, 
        rgba(26, 26, 26, 0.98) 100%
    );
    box-shadow: 
        var(--shadow-md),
        0 0 15px rgba(99, 102, 241, 0.12),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-6px) scale(1.01) rotateX(1deg) rotateY(1deg);
}

.service-card-compact:hover .service-info h3 {
    transform: translateX(5px);
    color: var(--card-color, var(--primary-light));
}

/* Ripple Effect on Click */
.service-card-compact:active {
    transform: translateY(-6px) scale(0.98);
    transition: transform 0.1s ease;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Services Grid - Animated Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md), var(--glow-primary);
    transform: translateY(-8px) scale(1.02);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
    animation: iconBounce 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.service-card:hover .service-icon {
    animation: iconSpin 0.6s ease;
    transform: scale(1.2);
}

@keyframes iconSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1.2); }
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.9rem;
    flex-grow: 1;
}

.service-price {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* References Section */
.references {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

/* Hexagonal Pattern Background */
.references::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            30deg,
            transparent,
            transparent 1px,
            rgba(99, 102, 241, 0.02) 1px,
            rgba(99, 102, 241, 0.02) 2px
        ),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 1px,
            rgba(236, 72, 153, 0.02) 1px,
            rgba(236, 72, 153, 0.02) 2px
        );
    background-size: 100% 100%, 100% 100%, 120px 120px, 120px 120px;
    pointer-events: none;
    z-index: 0;
    animation: referencesHexMove 25s linear infinite;
}

@keyframes referencesHexMove {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 0 0, 120px 120px, -120px 120px;
    }
}

/* Dot Grid Pattern */
.references::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(99, 102, 241, 0.15) 1px, transparent 0),
        radial-gradient(circle at 1px 1px, rgba(236, 72, 153, 0.1) 1px, transparent 0);
    background-size: 40px 40px, 60px 60px;
    background-position: 0 0, 20px 20px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    animation: referencesDotPulse 6s ease-in-out infinite;
}

@keyframes referencesDotPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* Animated Corner Accents */
.references .references-bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 30%),
        linear-gradient(225deg, rgba(236, 72, 153, 0.1) 0%, transparent 30%),
        linear-gradient(45deg, transparent 70%, rgba(59, 130, 246, 0.08) 100%),
        linear-gradient(315deg, transparent 70%, rgba(168, 85, 247, 0.08) 100%);
    animation: referencesCornerShift 15s ease-in-out infinite;
}

@keyframes referencesCornerShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Scanning Line Effect */
.references .container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(99, 102, 241, 0.5),
        rgba(236, 72, 153, 0.5),
        transparent
    );
    pointer-events: none;
    z-index: 0;
    animation: referencesScanLine 8s linear infinite;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

@keyframes referencesScanLine {
    0% {
        top: -2px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Floating Geometric Shapes */
.references .container::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    top: 10%;
    right: 5%;
    pointer-events: none;
    z-index: 0;
    animation: referencesShapeRotate 25s linear infinite;
    transform-origin: center;
}

@keyframes referencesShapeRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

.references .container {
    position: relative;
    z-index: 1;
}

.references .section-title,
.references .section-subtitle {
    position: relative;
    z-index: 2;
}

/* References Carousel - Infinite Scroll */
.references-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    padding: 1rem 0;
    z-index: 1;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
}

.references-carousel {
    display: flex;
    gap: 1.25rem;
    animation: scrollInfinite 30s linear infinite;
    width: fit-content;
}

@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.reference-item {
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1.5px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    min-width: 300px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.reference-item:nth-child(6n+1) { --ref-color: #ef4444; }
.reference-item:nth-child(6n+2) { --ref-color: #f59e0b; }
.reference-item:nth-child(6n+3) { --ref-color: #3b82f6; }
.reference-item:nth-child(6n+4) { --ref-color: #10b981; }
.reference-item:nth-child(6n+5) { --ref-color: #8b5cf6; }
.reference-item:nth-child(6n+6) { --ref-color: #ec4899; }

.reference-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--ref-color, var(--primary));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 1rem 0 0 1rem;
}

.reference-item:hover::before {
    opacity: 1;
    box-shadow: 0 0 10px var(--ref-color, var(--primary));
}

.reference-item:hover {
    border-color: var(--ref-color, var(--primary));
    box-shadow: 
        var(--shadow-md),
        0 0 20px rgba(99, 102, 241, 0.15);
    transform: translateY(-5px) scale(1.02);
}

.reference-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1.5px solid var(--border);
    border-radius: 0.75rem;
    color: var(--ref-color, var(--primary));
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}

.reference-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ref-color, var(--primary));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 0.75rem;
}

.reference-item:hover .reference-icon::before {
    opacity: 0.15;
}

.reference-item:hover .reference-icon {
    border-color: var(--ref-color, var(--primary));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px var(--ref-color, var(--primary));
}

.reference-info {
    flex: 1;
    min-width: 0;
}

.reference-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.375rem 0;
    line-height: 1.3;
    transition: all 0.4s ease;
}

.reference-item:hover .reference-info h3 {
    color: var(--ref-color, var(--primary));
    transform: translateX(3px);
}

.reference-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
    transition: all 0.4s ease;
}

.reference-item:hover .reference-info p {
    color: var(--text-primary);
}

/* Contact Section */
/* Discord Section - Modern & Stylish */
.discord-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.discord-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://i.imgur.com/z459MRj.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    filter: brightness(0.25) contrast(1.1) saturate(0.8);
    z-index: 0;
    pointer-events: none;
    animation: discordBgMove 30s ease-in-out infinite;
}

@keyframes discordBgMove {
    0%, 100% {
        transform: scale(1) translate(0, 0);
    }
    33% {
        transform: scale(1.05) translate(-20px, -10px);
    }
    66% {
        transform: scale(1.03) translate(10px, -15px);
    }
}

.discord-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(88, 101, 242, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(88, 101, 242, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    animation: backgroundPulse 6s ease-in-out infinite;
    z-index: 0;
}

.discord-section .discord-bg-pattern {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(88, 101, 242, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 101, 242, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    animation: discordPatternMove 20s linear infinite;
}

@keyframes discordPatternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

.discord-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.discord-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.discord-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: discordPulse 3s ease-in-out infinite;
    filter: blur(20px);
}

@keyframes discordPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.discord-icon-wrapper i,
.discord-logo-img {
    position: relative;
    z-index: 1;
    animation: discordFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.5));
}

.discord-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 1rem;
}

@keyframes discordFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.discord-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #5865F2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.discord-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
    line-height: 1.6;
}


.discord-right {
    position: relative;
}

.discord-card {
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(88, 101, 242, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(88, 101, 242, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.discord-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5865F2, #7289da, #5865F2);
    background-size: 200% 100%;
    animation: discordGradient 3s linear infinite;
}

@keyframes discordGradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.discord-card:hover {
    border-color: rgba(88, 101, 242, 0.6);
    transform: translateY(-5px);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(88, 101, 242, 0.3);
}

.discord-card-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(88, 101, 242, 0.2);
}

.discord-server-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.discord-server-avatar {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5865F2 0%, #7289da 100%);
    border-radius: 1rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.discord-server-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: all 0.4s ease;
}

.discord-card:hover .discord-server-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.6);
}

.discord-card:hover .discord-server-avatar-img {
    transform: scale(1.1);
}

.discord-server-details h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.discord-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #43b581;
    box-shadow: 0 0 10px rgba(67, 181, 129, 0.5);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.discord-card-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.discord-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.discord-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(88, 101, 242, 0.05);
    border: 1px solid rgba(88, 101, 242, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.discord-feature:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.3);
    transform: translateX(5px);
}

.discord-feature i {
    color: #43b581;
    font-size: 1.1rem;
}

.discord-feature span {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.discord-join-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #5865F2 0%, #7289da 100%);
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.discord-join-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.discord-join-btn:hover::before {
    width: 300px;
    height: 300px;
}

.discord-join-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

.discord-join-btn i:last-child {
    transition: transform 0.4s ease;
}

.discord-join-btn:hover i:last-child {
    transform: translateX(5px);
}

/* Responsive Discord Section */
@media (max-width: 968px) {
    .discord-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
}

@media (max-width: 768px) {
    .discord-title {
        font-size: 2rem;
    }
    
    .discord-card {
        padding: 1.5rem;
    }
    
    .discord-server-avatar {
        width: 60px;
        height: 60px;
    }
    
    .discord-logo-img {
        width: 100px;
        height: 100px;
    }
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    animation: lineMove 3s linear infinite;
}

@keyframes lineMove {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 20px;
    }

    .nav {
        gap: 1.5rem;
    }

    .hero {
        padding: 3.5rem 0 4.5rem;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .service-grid-compact {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card-compact {
        padding: 1.25rem 1.5rem;
    }

    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .service-info h3 {
        font-size: 1.2rem;
    }

    .service-arrow {
        width: 38px;
        height: 38px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .references-carousel-wrapper {
        margin: 1.5rem 0;
    }

    .reference-item {
        min-width: 260px;
        padding: 1.25rem 1.5rem;
    }

    .reference-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .reference-info h3 {
        font-size: 1.05rem;
    }

    .reference-info p {
        font-size: 0.8rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card-compact {
        padding: 1rem 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.875rem;
    }

    .service-icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .service-info {
        text-align: center;
    }

    .service-info h3 {
        font-size: 1.1rem;
    }

    .service-info h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .service-arrow {
        position: absolute;
        bottom: 0.875rem;
        right: 0.875rem;
        width: 36px;
        height: 36px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Additional Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Reveal Animation - Removed */

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 0;
    animation: teamBgPulse 8s ease-in-out infinite;
}

.team-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    animation: teamPatternMove 25s linear infinite;
}

@keyframes teamPatternMove {
    0% {
        background-position: 0 0;
        transform: rotate(0deg);
    }
    50% {
        background-position: 60px 60px;
        transform: rotate(180deg);
    }
    100% {
        background-position: 0 0;
        transform: rotate(360deg);
    }
}

@keyframes teamBgPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    33% {
        opacity: 0.9;
        transform: scale(1.08) translate(-15px, -10px);
    }
    66% {
        opacity: 0.95;
        transform: scale(1.05) translate(10px, -15px);
    }
}

/* Floating Background Elements */
.team-section .container::before,
.team-section .container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
    filter: blur(40px);
}

.team-section .container::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.team-section .container::after {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    bottom: -300px;
    right: -300px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(50px, -50px) scale(1.15);
        opacity: 0.8;
    }
    66% {
        transform: translate(-30px, 30px) scale(0.95);
        opacity: 0.7;
    }
}

/* Animated Gradient Mesh */
.team-section .team-bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    background-size: 200% 200%;
    pointer-events: none;
    z-index: 0;
    animation: teamGradientShift 15s ease infinite;
    opacity: 0.8;
}

@keyframes teamGradientShift {
    0% {
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% {
        background-position: 100% 50%;
        transform: scale(1.1);
    }
    100% {
        background-position: 0% 50%;
        transform: scale(1);
    }
}

.team-section .container {
    position: relative;
    z-index: 1;
}

.team-section .section-title,
.team-section .section-subtitle {
    position: relative;
    z-index: 2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.team-member-card {
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 1.5px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-member-card:hover::before {
    transform: scaleX(1);
}

.team-member-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(99, 102, 241, 0.2);
}

.member-photo-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.team-member-card:hover .member-photo-wrapper {
    transform: scale(1.05);
    border-color: var(--accent-primary);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member-card:hover .member-photo {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(168, 85, 247, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.team-member-card:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.social-link-discord {
    cursor: pointer;
}

.social-link-discord:hover {
    background: rgba(88, 101, 242, 0.4);
}

.member-info {
    text-align: center;
}

.member-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.team-member-card:hover .member-name {
    color: var(--accent-primary);
}

.member-role {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
    justify-content: center;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
    border: 2px solid transparent;
}

.skill-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.skill-tag:hover::before {
    left: 100%;
}

.skill-tag i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.skill-tag:hover i {
    transform: scale(1.2) rotate(5deg);
}

.skill-text {
    position: relative;
    z-index: 1;
}

/* Skill Tag Colors */
.skill-tag-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1));
    border-color: rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.skill-tag-red:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25), rgba(220, 38, 38, 0.2));
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.skill-tag-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(234, 88, 12, 0.1));
    border-color: rgba(249, 115, 22, 0.4);
    color: #fdba74;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.skill-tag-orange:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(234, 88, 12, 0.2));
    border-color: rgba(249, 115, 22, 0.6);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.skill-tag-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.1));
    border-color: rgba(59, 130, 246, 0.4);
    color: #93c5fd;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.skill-tag-blue:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(37, 99, 235, 0.2));
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.skill-tag-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(147, 51, 234, 0.1));
    border-color: rgba(168, 85, 247, 0.4);
    color: #c4b5fd;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.2);
}

.skill-tag-purple:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(147, 51, 234, 0.2));
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.skill-tag-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(8, 145, 178, 0.1));
    border-color: rgba(6, 182, 212, 0.4);
    color: #7dd3fc;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
}

.skill-tag-cyan:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(8, 145, 178, 0.2));
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.skill-tag-yellow {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(202, 138, 4, 0.1));
    border-color: rgba(234, 179, 8, 0.4);
    color: #fde047;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.2);
}

.skill-tag-yellow:hover {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.25), rgba(202, 138, 4, 0.2));
    border-color: rgba(234, 179, 8, 0.6);
    box-shadow: 0 6px 20px rgba(234, 179, 8, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.skill-tag-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.1));
    border-color: rgba(34, 197, 94, 0.4);
    color: #86efac;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.skill-tag-green:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(22, 163, 74, 0.2));
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.skill-tag-default {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(79, 70, 229, 0.1));
    border-color: rgba(99, 102, 241, 0.4);
    color: #a5b4fc;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.skill-tag-default:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(79, 70, 229, 0.2));
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    transform: translateY(-3px) scale(1.05);
}

/* Responsive Team Section */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member-card {
        padding: 1.5rem;
    }
    
    .member-photo-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .member-skills {
        gap: 0.4rem;
    }
    
    .skill-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .skill-tag i {
        font-size: 0.85rem;
    }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.95), rgba(59, 130, 246, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.4), 0 0 20px rgba(88, 101, 242, 0.2);
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 300px;
    max-width: 90%;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.toast-content i {
    font-size: 1.3rem;
    color: #ffffff;
}

.toast-content span {
    flex: 1;
}

@media (max-width: 768px) {
    .toast-notification {
        min-width: 280px;
        padding: 0.9rem 1.2rem;
        bottom: 20px;
    }
    
    .toast-content {
        font-size: 0.85rem;
    }
    
    .toast-content i {
        font-size: 1.2rem;
    }
}

/* Sepet İkonu */
.cart-icon-btn {
    position: relative;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-icon-btn:hover {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: 5px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.4);
}

/* Sepet Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-modal.active {
    opacity: 1;
    visibility: visible;
}

.cart-modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(31, 31, 31, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.cart-modal.active .cart-modal-content {
    transform: scale(1) translateY(0);
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cart-modal-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.cart-close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.cart-close-btn:hover {
    color: var(--text-primary);
    background: rgba(239, 68, 68, 0.1);
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    min-height: 200px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    color: var(--text-muted);
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.cart-empty p {
    font-size: 1.1rem;
    margin: 0;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}

.cart-item-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-item-price-original {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.cart-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Kupon Kodu Bölümü */
.cart-coupon-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-coupon-input-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.cart-coupon-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 0.625rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cart-coupon-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.cart-coupon-input::placeholder {
    color: var(--text-muted);
}

.cart-coupon-apply-btn,
.cart-coupon-remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.cart-coupon-apply-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}

.cart-coupon-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.cart-coupon-remove-btn {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.cart-coupon-remove-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
}

.cart-coupon-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.625rem;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
}

.cart-coupon-info i {
    color: #10b981;
}

/* Fiyat Özeti */
.cart-price-summary {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
}

.cart-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cart-price-row span:first-child {
    font-weight: 500;
}

.cart-price-row span:last-child {
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.cart-discount-row {
    color: #10b981;
}

.cart-discount-amount {
    color: #10b981 !important;
}

.cart-total-row {
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    font-size: 1.1rem;
}

.cart-final-total {
    font-size: 1.3rem !important;
    color: var(--primary) !important;
}

.cart-total {
    text-align: center;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
}

.cart-total span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cart-checkout-btn,
.cart-clear-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cart-checkout-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.cart-clear-btn {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.cart-clear-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

/* Toast Types */
.toast-notification.toast-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.95));
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4), 0 0 20px rgba(16, 185, 129, 0.2);
}

.toast-notification.toast-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(37, 99, 235, 0.95));
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4), 0 0 20px rgba(59, 130, 246, 0.2);
}

.toast-notification.toast-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.95), rgba(220, 38, 38, 0.95));
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.4), 0 0 20px rgba(239, 68, 68, 0.2);
}

.toast-notification i {
    margin-right: 0.5rem;
}

/* Responsive Sepet */
@media (max-width: 768px) {
    .cart-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .cart-item {
        padding: 0.75rem;
    }
    
    .cart-item-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .cart-item-info h4 {
        font-size: 0.9rem;
    }
}

/* Sipariş Kodu Modal */
.order-code-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.order-code-modal.active {
    opacity: 1;
    visibility: visible;
}

.order-code-modal-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(30, 30, 30, 0.98) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 2rem;
    width: 90%;
    max-width: 550px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(99, 102, 241, 0.2);
    transform: scale(0.85) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
}

.order-code-modal.active .order-code-modal-content {
    transform: scale(1) translateY(0);
}

.order-code-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.order-code-close-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    transform: rotate(90deg);
}

.order-code-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.3);
    animation: successPulse 2s infinite;
}

.order-code-icon i {
    font-size: 2.5rem;
    color: #10b981;
}

@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
}

.order-code-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-code-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.order-code-wrapper {
    background: rgba(99, 102, 241, 0.05);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.order-code-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.order-code-display {
    font-family: 'Courier New', monospace;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.75rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    word-break: break-all;
    position: relative;
    z-index: 1;
}

.order-code-copy-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    border-radius: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    position: relative;
    z-index: 1;
}

.order-code-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.order-code-copy-btn:active {
    transform: translateY(0);
}

.order-code-copy-btn.copied {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.order-code-instruction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(88, 101, 242, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(88, 101, 242, 0.2);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.order-code-instruction i {
    font-size: 1.5rem;
    color: #5865F2;
}

.order-code-instruction strong {
    color: var(--primary);
    font-weight: 600;
}

.order-code-discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #5865F2 0%, #7289da 100%);
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.order-code-discord-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.order-code-discord-btn:hover::before {
    width: 300px;
    height: 300px;
}

.order-code-discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
}

.order-code-discord-btn i {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.order-code-discord-btn span {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .order-code-modal-content {
        padding: 2rem 1.5rem;
    }

    .order-code-title {
        font-size: 1.5rem;
    }

    .order-code-display {
        font-size: 1.25rem;
    }

    .order-code-icon {
        width: 60px;
        height: 60px;
    }

    .order-code-icon i {
        font-size: 2rem;
    }
}
