/* Temel Stil Ayarları - Dark Mavi Tema */
:root {
    /* Renk Paleti - Koyu Mavi Tonları */
    --primary-bg: #0a0a0f;
    --secondary-bg: #16161f;
    --tertiary-bg: #1e1e2a;
    --accent-color: #1e3a8a;
    --accent-secondary: #1e40af;
    --accent-hover: #2563eb;
    --accent-light: rgba(30, 58, 138, 0.2);
    --accent-lighter: rgba(30, 58, 138, 0.1);
    
    /* Metin Renkleri */
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --text-muted: #6c6c7e;
    --text-light: #8b8b9e;
    
    /* Border ve Ayırıcılar */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.1);
    
    /* Kart ve Arka Planlar */
    --card-bg: rgba(22, 22, 31, 0.8);
    --card-hover: rgba(30, 30, 42, 0.9);
    
    /* Gradientler */
    --gradient-accent: linear-gradient(135deg, #1e3a8a, #1e40af);
    --gradient-card: linear-gradient(145deg, rgba(22, 22, 31, 0.9), rgba(10, 10, 15, 0.9));
    --gradient-soft: linear-gradient(135deg, rgba(30, 58, 138, 0.15), rgba(30, 64, 175, 0.1));
    
    /* Gölgeler - Minimal */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.4);
    --shadow-accent: 0 4px 12px rgba(30, 58, 138, 0.3);
    
    /* Geçişler */
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(ellipse at center, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    position: relative;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animasyon Stilleri */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.overlay-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(30, 58, 138, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
    backdrop-filter: blur(2px);
    z-index: -1;
    animation: morphOverlay 12s infinite ease-in-out;
}

@keyframes morphOverlay {
    0%, 100% {
        background: radial-gradient(circle at 30% 30%, rgba(30, 58, 138, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 70% 70%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
    }
    33% {
        background: radial-gradient(circle at 60% 20%, rgba(30, 58, 138, 0.2) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.15) 0%, transparent 50%);
    }
    66% {
        background: radial-gradient(circle at 80% 60%, rgba(30, 58, 138, 0.18) 0%, transparent 50%),
                    radial-gradient(circle at 40% 40%, rgba(30, 64, 175, 0.12) 0%, transparent 50%);
    }
}

/* Header - Navbar Component */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    animation: headerSlideDown 0.6s ease;
    transform: translateY(0);
    opacity: 1;
}

/* Scroll down - navbar gizle (aşağı inerken) */
.header.scrolled.scrolling-down {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Scroll up - navbar göster (yukarı çıkarken) */
.header.scrolled.scrolling-up {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


body.has-announcement .header {
    top: 32px;
}

/* Top Announcement Bar */
.top-announcement-bar {
    background: rgba(22, 22, 31, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 58, 138, 0.2);
    padding: 0.35rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

body.has-announcement .header {
    top: 32px;
}

body.has-announcement {
    padding-top: 32px;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.announcement-text {
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.announcement-text i.fa-tag {
    display: none;
}

.announcement-text::before {
    content: '';
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E");
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.8));
    animation: fireFlicker 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes fireFlicker {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.8));
    }
    25% {
        transform: scale(1.1) rotate(-2deg);
        filter: drop-shadow(0 0 8px rgba(59, 130, 246, 1));
    }
    50% {
        transform: scale(0.95) rotate(2deg);
        filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.6));
    }
    75% {
        transform: scale(1.05) rotate(-1deg);
        filter: drop-shadow(0 0 7px rgba(59, 130, 246, 0.9));
    }
}

.announcement-code {
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.25), rgba(30, 64, 175, 0.2));
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(30, 58, 138, 0.4);
    margin: 0 0.25rem;
    box-shadow: 0 0 8px rgba(30, 58, 138, 0.3);
    transition: var(--transition);
}

.announcement-code:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.35), rgba(30, 64, 175, 0.3));
    box-shadow: 0 0 12px rgba(30, 58, 138, 0.5);
    transform: translateY(-1px);
}

.announcement-copy-btn {
    background: rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(30, 58, 138, 0.5);
    color: var(--accent-color);
    cursor: pointer;
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    font-size: 0.7rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.4rem;
    min-width: 28px;
    min-height: 28px;
}

.announcement-copy-btn:hover {
    background: rgba(30, 58, 138, 0.5);
    border-color: var(--accent-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.4);
}

.top-banner-slider {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-height: none;
    overflow: visible;
    width: 100%;
}

.top-banner-slider::-webkit-scrollbar {
    width: 4px;
}

.top-banner-slider::-webkit-scrollbar-track {
    background: transparent;
}

.top-banner-slider::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 2px;
}

.top-banner-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border: none;
    border-radius: 0;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    animation: bannerSlideIn 0.5s ease both;
}

.top-banner-item.discount-code {
    background: transparent;
    padding: 0.5rem 1.5rem;
    justify-content: center;
    width: 100%;
    border-radius: 0;
    gap: 1rem;
    position: relative;
}

.top-banner-item.discount-code::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-secondary));
    border-radius: 0 2px 2px 0;
}

.top-banner-item:nth-child(1) { animation-delay: 0.1s; }
.top-banner-item:nth-child(2) { animation-delay: 0.2s; }
.top-banner-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes bannerSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-banner-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.banner-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.announcement-hot .banner-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
}

.announcement-discount .banner-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
}

.announcement-success .banner-icon {
    background: linear-gradient(135deg, #51cf66, #40c057);
    color: white;
}

.announcement-warning .banner-icon {
    background: linear-gradient(135deg, #ffd93d, #f6c23e);
    color: #333;
}

.announcement-info .banner-icon {
    background: var(--gradient-accent);
    color: white;
}

.hot-deal .banner-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    animation: hotDealPulse 2s ease-in-out infinite;
}

@keyframes hotDealPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.discount-code .banner-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
}

.banner-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.banner-content-single {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    flex-wrap: wrap;
}

.banner-text {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-text i {
    color: var(--accent-color);
    font-size: 0.9rem;
    filter: drop-shadow(0 0 4px rgba(30, 58, 138, 0.5));
    animation: iconPulse 2s ease-in-out infinite;
}

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

.banner-code-box {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.25), rgba(30, 64, 175, 0.2));
    border: 1px solid rgba(30, 58, 138, 0.4);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: auto;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.2);
    position: relative;
    overflow: hidden;
}

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

.banner-code-box:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.35), rgba(30, 64, 175, 0.3));
    border-color: rgba(30, 58, 138, 0.6);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    transform: translateY(-1px);
}

.banner-code-box:hover::before {
    left: 100%;
}

.banner-code-text {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(30, 58, 138, 0.5);
    position: relative;
}

.banner-code-copy {
    background: rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(30, 58, 138, 0.5);
    color: var(--accent-color);
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 6px;
    font-size: 0.75rem;
    min-width: 32px;
    min-height: 32px;
    position: relative;
    overflow: hidden;
}

.banner-code-copy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.banner-code-copy:hover {
    background: rgba(30, 58, 138, 0.5);
    border-color: var(--accent-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.4);
}

.banner-code-copy:hover::before {
    width: 100px;
    height: 100px;
}

.banner-code-copy i {
    position: relative;
    z-index: 1;
}

.banner-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.banner-title strong {
    color: var(--accent-color);
    font-weight: 700;
}

.banner-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    white-space: nowrap;
}

.banner-link:hover {
    color: var(--accent-hover);
    gap: 0.75rem;
}

.banner-copy-btn {
    background: var(--gradient-accent);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.4rem 0.75rem;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
    white-space: nowrap;
}

.banner-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
}

.banner-copy-btn i {
    font-size: 0.75rem;
}

/* Header Content for Home Page */
.header-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: 
        radial-gradient(ellipse at top left, rgba(30, 58, 138, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(22, 33, 62, 0.2) 0%, transparent 70%),
        linear-gradient(180deg, #0a0a0f 0%, #0f1419 30%, #1a1a2e 60%, #16213e 100%);
    display: flex;
    flex-direction: column;
	overflow: hidden;
}

/* Animated Space Background */
.header-content::before {
	content: '';
	position: absolute;
	inset: 0;
    background: 
        radial-gradient(ellipse at top, rgba(30, 58, 138, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    animation: spacePulse 8s ease-in-out infinite;
	z-index: 0;
}

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

/* Stars Layer */
.header-content::after {
	content: '';
	position: absolute;
	inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 50%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 70% 20%, white, transparent),
        radial-gradient(2px 2px at 10% 60%, white, transparent),
        radial-gradient(1px 1px at 40% 40%, white, transparent),
        radial-gradient(1px 1px at 15% 90%, white, transparent),
        radial-gradient(1px 1px at 25% 15%, rgba(59, 130, 246, 0.8), transparent),
        radial-gradient(1px 1px at 75% 25%, rgba(59, 130, 246, 0.8), transparent),
        radial-gradient(1px 1px at 45% 65%, rgba(59, 130, 246, 0.8), transparent),
        radial-gradient(1px 1px at 85% 75%, rgba(59, 130, 246, 0.8), transparent),
        radial-gradient(1px 1px at 5% 45%, rgba(59, 130, 246, 0.8), transparent),
        radial-gradient(1px 1px at 55% 85%, rgba(59, 130, 246, 0.8), transparent),
        radial-gradient(1px 1px at 95% 35%, rgba(59, 130, 246, 0.8), transparent),
        radial-gradient(1px 1px at 35% 55%, rgba(59, 130, 246, 0.8), transparent),
        radial-gradient(1px 1px at 65% 5%, rgba(59, 130, 246, 0.8), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: starsMove 20s linear infinite;
	z-index: 1;
    opacity: 0.7;
	pointer-events: none;
}

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


/* Nebula Clouds Animation */
@keyframes nebulaFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.4;
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.35;
    }
}

@keyframes nebulaFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.25;
    }
    50% {
        transform: translate(-40px, 40px) scale(1.2);
        opacity: 0.35;
    }
}

@keyframes nebulaFloat3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(50px, 30px) scale(1.15);
        opacity: 0.3;
    }
}

/* Twinkling Stars */
@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Floating Particles */
@keyframes floatParticle1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes floatParticle2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-30px, 30px) scale(1.1);
        opacity: 0.5;
    }
}

/* Nebula Clouds */
.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.nebula-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.6) 0%, rgba(59, 130, 246, 0.3) 50%, transparent 100%);
    animation: nebulaFloat1 25s ease-in-out infinite;
}

.nebula-2 {
    width: 600px;
    height: 600px;
    bottom: -300px;
    right: -200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, rgba(30, 64, 175, 0.2) 50%, transparent 100%);
    animation: nebulaFloat2 30s ease-in-out infinite;
    animation-delay: 5s;
}

.nebula-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(30, 64, 175, 0.4) 0%, rgba(59, 130, 246, 0.2) 50%, transparent 100%);
    animation: nebulaFloat3 35s ease-in-out infinite;
    animation-delay: 10s;
}

/* Distant Stars */
.distant-star {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, transparent 100%);
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(59, 130, 246, 0.4);
}

.star-1 {
    width: 3px;
    height: 3px;
    top: 15%;
    left: 20%;
    animation: starTwinkle 3s ease-in-out infinite;
}

.star-2 {
    width: 2px;
    height: 2px;
    top: 25%;
    left: 75%;
    animation: starTwinkle 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.star-3 {
    width: 4px;
    height: 4px;
    top: 45%;
    left: 10%;
    animation: starTwinkle 2.5s ease-in-out infinite;
    animation-delay: 1s;
}

.star-4 {
    width: 2px;
    height: 2px;
    top: 55%;
    left: 85%;
    animation: starTwinkle 3.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.star-5 {
    width: 3px;
    height: 3px;
    top: 70%;
    left: 30%;
    animation: starTwinkle 4.5s ease-in-out infinite;
    animation-delay: 2s;
}

.star-6 {
    width: 2px;
    height: 2px;
    top: 80%;
    left: 70%;
    animation: starTwinkle 3s ease-in-out infinite;
    animation-delay: 2.5s;
}

.star-7 {
    width: 3px;
    height: 3px;
    top: 35%;
    left: 50%;
    animation: starTwinkle 2.8s ease-in-out infinite;
    animation-delay: 3s;
}

.star-8 {
    width: 2px;
    height: 2px;
    top: 60%;
    left: 60%;
    animation: starTwinkle 3.2s ease-in-out infinite;
    animation-delay: 3.5s;
}

/* Header Content Inner */
.header-content-inner {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 0 80px;
}

.hero-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section - Unique Design */
.hero-content-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #60a5fa;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
    }
}

.badge-icon {
    font-size: 1.2rem;
    animation: rotateIcon 4s linear infinite;
}

@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.badge-text {
    letter-spacing: 0.5px;
}

/* Hero Title */
.hero-main-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Hero Image Slider */
.hero-image-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: imageFadeIn 1s ease-out;
    aspect-ratio: 16 / 6;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
}

@keyframes imageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-slider-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

/* Theme Overlay */
.hero-image-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.4) 0%,
        rgba(30, 64, 175, 0.3) 30%,
        rgba(37, 99, 235, 0.25) 60%,
        rgba(59, 130, 246, 0.2) 100%
    );
    z-index: 2;
    border-radius: 20px;
    pointer-events: none;
}

.hero-image-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 20% 50%,
        rgba(59, 130, 246, 0.3) 0%,
        transparent 50%
    ),
    radial-gradient(
        circle at 80% 50%,
        rgba(139, 92, 246, 0.2) 0%,
        transparent 50%
    );
    z-index: 3;
    border-radius: 20px;
    pointer-events: none;
    animation: overlayPulse 4s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-title-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    line-height: 1;
}

.title-line {
    display: block;
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: -3px;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 30%, #8b5cf6 60%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleReveal 1s ease-out;
}

.title-line-1 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.title-line-2 {
    animation-delay: 0.4s;
    animation-fill-mode: both;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 40%, #ec4899 70%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hero Slogan */
.hero-slogan {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.75rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.slogan-word {
    display: inline-block;
    transition: all 0.3s ease;
    animation: wordFadeIn 0.6s ease-out backwards;
}

.slogan-word:nth-child(1) { animation-delay: 0.6s; }
.slogan-word:nth-child(2) { animation-delay: 0.7s; }
.slogan-word:nth-child(3) { animation-delay: 0.8s; }
.slogan-word:nth-child(4) { animation-delay: 0.9s; }
.slogan-word:nth-child(5) { animation-delay: 1s; }
.slogan-word:nth-child(6) { animation-delay: 1.1s; }
.slogan-word:nth-child(7) { animation-delay: 1.2s; }
.slogan-word:nth-child(8) { animation-delay: 1.3s; }

@keyframes wordFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slogan-word.highlight {
    color: #3b82f6;
    font-weight: 700;
    position: relative;
}

.slogan-word.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    border-radius: 2px;
    animation: underlineGrow 0.5s ease-out 1.5s backwards;
}

@keyframes underlineGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    animation: featureSlideIn 0.6s ease-out backwards;
}

.feature-item:nth-child(1) { animation-delay: 0.3s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.5s; }

@keyframes featureSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

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

/* Hero CTA Buttons */
.hero-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: ctaFadeIn 0.8s ease-out 0.6s backwards;
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

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

.hero-cta-primary:hover::before {
    left: 100%;
}

.hero-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.hero-cta-primary i {
    transition: transform 0.3s ease;
}

.hero-cta-primary:hover i {
    transform: translateX(5px);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
    color: #3b82f6;
    transform: translateY(-3px);
}


/* Responsive Hero */
@media (max-width: 1024px) {
    .title-line {
        font-size: 4.5rem;
    }
    
    .hero-slogan {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        padding: 3rem 1.5rem;
    }
    
    .hero-image-slider {
        max-width: 100%;
        border-radius: 16px;
        aspect-ratio: 16 / 6;
    }
    
    .hero-slider-image {
        border-radius: 16px;
    }
    
    .hero-image-slider::before,
    .hero-image-slider::after {
        border-radius: 16px;
    }
    
    .hero-main-content {
        gap: 2rem;
    }
    
    .title-line {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }
    
    .hero-slogan {
        font-size: 1.1rem;
        gap: 0.4rem 0.6rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-cta-wrapper {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper {
        padding: 2rem 1rem;
    }
    
    .hero-image-slider {
        max-width: 100%;
        border-radius: 12px;
        aspect-ratio: 16 / 6;
    }
    
    .hero-slider-image {
        border-radius: 12px;
    }
    
    .hero-image-slider::before,
    .hero-image-slider::after {
        border-radius: 12px;
    }
    
    .hero-main-content {
        gap: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .title-line {
        font-size: 2.8rem;
    }
    
    .hero-slogan {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* Header Wrapper */
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 2rem;
    position: relative;
    min-height: 70px;
}

/* Navbar Sidebar */
.navbar-sidebar {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.navbar-sidebar-left {
    left: 2rem;
}

.navbar-sidebar-right {
    right: 2rem;
}

/* Navbar Stilleri */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 0;
    position: relative;
    animation: navbarFadeIn 0.8s ease 0.2s both;
    flex: 1;
    min-width: 0;
}

@keyframes navbarFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar Sol - Eski stil, artık sidebar kullanılıyor */
.navbar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    transform: translateY(-2px);
}

.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.logo-link:hover .navbar-logo {
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.4));
}

/* Hizmetlerimiz Dropdown */
.services-dropdown-wrapper {
    position: relative;
}

.services-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.services-dropdown-trigger i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.services-dropdown-wrapper:hover .services-dropdown-trigger {
    background: rgba(255, 255, 255, 0.05);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.services-dropdown-wrapper:hover .services-dropdown-trigger i {
    transform: rotate(180deg);
}

/* Sosyal Medya Nav Butonları */
.social-nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
}

.social-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.discord-btn {
    color: #5865F2;
}

.discord-btn:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.4);
    color: #5865F2;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.instagram-btn {
    color: #E4405F;
}

.instagram-btn:hover {
    background: rgba(228, 64, 95, 0.2);
    border-color: rgba(228, 64, 95, 0.4);
    color: #E4405F;
    box-shadow: 0 4px 12px rgba(228, 64, 95, 0.3);
}

.social-nav-btn i {
    transition: transform 0.3s ease;
}

.social-nav-btn:hover i {
    transform: scale(1.1);
}

.services-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    width: 600px;
    max-width: 90vw;
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.services-dropdown-wrapper:hover .services-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-dropdown-content {
    padding: 1rem;
}

.services-dropdown-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.services-dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: transparent;
}

.services-dropdown-item:hover {
    background: var(--card-hover);
}

.services-item-image-wrapper {
    flex-shrink: 0;
}

.services-item-image-container {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.services-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.services-dropdown-item:hover .services-item-image {
    transform: scale(1.1);
}

.services-item-icon-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.services-item-text {
    margin-left: 0.75rem;
    min-width: 0;
    flex: 1;
}

.services-item-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Navbar Orta */
.navbar-center {
    display: none;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

/* Scroll sonrası navbar kategorileri */
.navbar-categories {
    display: none;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
}

.header.scrolled-content .navbar-center {
    display: flex;
}


.navbar-categories-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.navbar-categories-list::-webkit-scrollbar {
    display: none;
}

.navbar-category-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
}

.navbar-category-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.navbar-category-item i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.navbar-category-item:hover i {
    color: var(--accent-hover);
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

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

.nav-link:hover::before {
    left: 100%;
}

.nav-link i {
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.nav-link:hover {
	color: #ffffff;
	background: rgba(30, 58, 138, 0.2);
	border: 1px solid rgba(30, 58, 138, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.nav-link:hover i {
    transform: scale(1.15) rotate(5deg);
    color: #3b82f6;
}

.nav-link.active {
	color: #ffffff;
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(30, 64, 175, 0.9));
	border: 1px solid rgba(255, 255, 255, 0.15);
	font-weight: 600;
	box-shadow: 0 8px 30px rgba(30, 58, 138, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    animation: activeGlow 2s ease-in-out infinite;
}

@keyframes activeGlow {
    0%, 100% {
        opacity: 0.6;
        width: 60%;
    }
    50% {
        opacity: 1;
        width: 80%;
    }
}

/* Navbar Sağ */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Bakiye ve Kredi Gösterimi */
.balance-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.balance-display i {
    font-size: 1rem;
}

.balance-value {
    font-weight: 700;
    letter-spacing: 0.3px;
}

.balance-green {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.balance-green:hover {
    background: rgba(34, 197, 94, 0.25);
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.balance-gold {
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #eab308;
}

.balance-gold:hover {
    background: rgba(234, 179, 8, 0.25);
    border-color: rgba(234, 179, 8, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.balance-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.balance-add-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(90deg);
}

/* Hızlı Erişim Butonları */
.quick-access-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-access-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
}

.quick-access-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.quick-access-btn i {
    transition: transform 0.3s ease;
}

.quick-access-btn:hover i {
    transform: scale(1.1);
}

.quick-access-btn.active {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.quick-access-btn.active:hover {
    background: rgba(59, 130, 246, 0.35);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Profil Logo Button */
.profile-logo-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-logo-btn:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.profile-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.2));
    color: #3b82f6;
    font-size: 1.2rem;
}

/* Dropdown Header */
.dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
}

.dropdown-user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dropdown-avatar,
.dropdown-avatar-placeholder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dropdown-avatar {
    object-fit: cover;
}

.dropdown-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.2));
    color: #3b82f6;
    font-size: 1.3rem;
}

.dropdown-user-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.dropdown-user-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-user-email {
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon::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.4s ease, height 0.4s ease;
}

.social-icon:hover::before {
    width: 100px;
    height: 100px;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    border-color: rgba(30, 58, 138, 0.6);
}

.social-icon i {
    font-size: 0.9rem;
    color: white;
    z-index: 2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.discord {
    background: linear-gradient(45deg, #5865f2, #4752c4);
}

.social-icon.telegram {
    background: linear-gradient(45deg, #0088cc, #006699);
}

.social-icon.whatsapp {
    background: linear-gradient(45deg, #25d366, #1ebe57);
}

.social-icon:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

/* Auth Butonları */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-login {
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--border-color);
}

.btn-login:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(30, 58, 138, 0.05);
}

.btn-register {
    color: white;
    background: var(--gradient-accent);
    box-shadow: var(--shadow-sm);
    border: none;
}

.btn-register:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-accent);
}

/* Profile Dropdown */
.profile-dropdown-wrapper {
    position: relative;
}

.btn-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.btn-profile:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-accent);
    transform: translateY(-1px);
}

.btn-profile i.fa-user-circle {
    font-size: 1.3rem;
}

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.profile-name {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.profile-balance {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.profile-dropdown-wrapper.active .dropdown-arrow {
    transform: rotate(180deg);
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.profile-dropdown-wrapper.active .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--border-color);
}

.profile-dropdown::after {
    content: '';
    position: absolute;
    top: -7px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(15, 23, 42, 0.95);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--accent-color);
    font-size: 1rem;
}

.dropdown-item:hover {
    background: rgba(30, 58, 138, 0.1);
    border-left-color: var(--accent-color);
    color: var(--accent-color);
    padding-left: 22px;
}

.dropdown-item.logout {
    color: #ef4444;
}

.dropdown-item.logout i {
    color: #ef4444;
}

.dropdown-item.logout:hover {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: #ef4444;
    color: #ef4444;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

/* Profile Dropdown Mobile */
@media (max-width: 768px) {
    .header-wrapper {
        padding: 0 1rem;
    }
    
    .navbar-sidebar {
        gap: 1rem;
    }
    
    .navbar-sidebar-left {
        left: 1rem;
    }
    
    .navbar-sidebar-right {
        right: 1rem;
    }
    
    .navbar-left {
        gap: 1rem;
    }
    
    .navbar-logo {
        height: 50px;
    }
    
    .services-dropdown-trigger {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    .social-nav-buttons {
        gap: 0.4rem;
    }
    
    .social-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .services-dropdown-menu {
        min-width: 500px;
    }
    
    .services-dropdown-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.25rem;
    }
    
    .services-dropdown-item {
        padding: 0.875rem 0.5rem;
    }
    
    .services-item-icon i {
        font-size: 1.5rem;
    }
    
    .services-item-name {
        font-size: 0.75rem;
    }
    
    .navbar-right {
        gap: 0.75rem;
    }
    
    .navbar-sidebar-right {
        gap: 0.75rem;
    }
    
    .balance-display {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .balance-display i {
        font-size: 0.9rem;
    }
    
    .balance-value {
        font-size: 0.85rem;
    }
    
    .balance-add-btn {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
    
    .quick-access-buttons {
        gap: 0.4rem;
    }
    
    .quick-access-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .profile-logo-btn {
        width: 35px;
        height: 35px;
    }
    
    .profile-avatar-placeholder {
        font-size: 1rem;
    }
    
    .profile-dropdown {
        right: 0;
        left: auto;
        min-width: 200px;
    }
    
    /* Scroll sonrası navbar kategorileri - Tablet */
    .navbar-categories {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .navbar-category-item {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .navbar-category-item i {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header-wrapper {
        padding: 0 0.75rem;
    }
    
    .navbar-sidebar-left {
        left: 0.75rem;
    }
    
    .navbar-sidebar-right {
        right: 0.75rem;
    }
    
    .navbar-left {
        gap: 0.75rem;
    }
    
    .navbar-sidebar {
        gap: 0.75rem;
    }
    
    .navbar-logo {
        height: 45px;
    }
    
    .services-dropdown-trigger {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .services-dropdown-trigger span {
        display: none;
    }
    
    .social-nav-buttons {
        gap: 0.3rem;
    }
    
    .social-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .services-dropdown-menu {
        min-width: calc(100vw - 2rem);
        left: auto;
        right: 0;
        padding: 1rem;
    }
    
    .services-dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.25rem;
    }
    
    .services-dropdown-item {
        padding: 0.75rem 0.4rem;
    }
    
    .services-item-icon i {
        font-size: 1.4rem;
    }
    
    .services-item-name {
        font-size: 0.7rem;
    }
    
    .navbar-right {
        gap: 0.5rem;
    }
    
    .navbar-sidebar-right {
        gap: 0.5rem;
    }
    
    .balance-display {
        padding: 0.35rem 0.5rem;
        font-size: 0.75rem;
        gap: 0.4rem;
    }
    
    .balance-display i {
        font-size: 0.8rem;
    }
    
    .balance-value {
        font-size: 0.8rem;
    }
    
    .balance-add-btn {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }
    
    .quick-access-buttons {
        gap: 0.3rem;
    }
    
    .quick-access-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .profile-logo-btn {
        width: 32px;
        height: 32px;
    }
    
    .profile-avatar-placeholder {
        font-size: 0.9rem;
    }
    
    /* Scroll sonrası navbar kategorileri - Mobil */
    .navbar-categories {
        gap: 0.75rem;
        padding: 0 0.25rem;
    }
    
    .navbar-categories-list {
        gap: 0.4rem;
    }
    
    .navbar-category-item {
        padding: 0.35rem 0.6rem;
        font-size: 0.75rem;
        gap: 0.4rem;
    }
    
    .navbar-category-item i {
        font-size: 0.8rem;
    }
    
    .navbar-category-item span {
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Mobil Menü Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 1px;
}

/* Hero Background Animation */
.hero-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.4), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.3), transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.1;
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.shape-4 {
    width: 90px;
    height: 90px;
    top: 40%;
    right: 30%;
    animation-delay: 9s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, -50px) rotate(180deg); }
}

/* Hero Wrapper */
.hero-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 0 2rem;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    z-index: 2;
    animation: heroFadeIn 1s ease 0.3s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.has-top-banner .hero-wrapper {
    margin-top: 0;
    padding-top: calc(6rem + var(--banner-height, 0px));
}

/* ============================================
   HERO SEARCH SECTION - PROFESYONEL TASARIM
   ============================================ */

.hero-search-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    z-index: 2;
    gap: 3rem;
}

/* Search Box */
.search-container {
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 2;
    animation: searchFadeIn 1s ease 0.3s both;
}

@keyframes searchFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-box {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.search-box:focus-within {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 80px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #3b82f6;
    font-size: 1.2rem;
    z-index: 2;
    pointer-events: none;
    animation: searchIconPulse 2s ease-in-out infinite;
}

@keyframes searchIconPulse {
    0%, 100% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
    }
}

.search-input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    animation: searchGlow 3s ease-in-out infinite;
}

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

/* Transformers Style Stats */
.transformers-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    z-index: 2;
    animation: statsTransformIn 1s ease 0.6s both;
}

@keyframes statsTransformIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-transform {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stat-transform::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.6s ease;
}

.stat-transform:hover::before {
    left: 100%;
}

.stat-transform:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.stat-transform-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.2));
    border: 2px solid rgba(59, 130, 246, 0.5);
    border-radius: 12px;
    color: #3b82f6;
    font-size: 1.8rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.stat-transform:hover .stat-transform-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
    border-color: rgba(59, 130, 246, 0.8);
}

.stat-transform-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
}

.stat-transform-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    background-size: 200% 200%;
    animation: valueGlow 3s ease infinite;
    position: relative;
}

@keyframes valueGlow {
    0%, 100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.8));
    }
}

.stat-transform-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-transform-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
}

.stat-transform:hover .stat-transform-line {
    width: 100%;
}

/* Game Logos Row */
.game-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    width: 100%;
    z-index: 2;
    margin-bottom: 3rem;
    animation: logosFadeIn 1s ease 0.2s both;
    flex-wrap: wrap;
}

@keyframes logosFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-logo-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.3) brightness(0.9);
}

.game-logo-item:hover {
    transform: translateY(-5px) scale(1.1);
    filter: grayscale(0) brightness(1.1);
}

.game-logo-img {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.game-logo-item:hover .game-logo-img {
    filter: drop-shadow(0 8px 20px rgba(59, 130, 246, 0.5));
}

.game-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-search-wrapper {
        padding: 4rem 2rem 3rem;
        gap: 2.5rem;
    }
    
    .search-container {
        max-width: 700px;
    }
    
    .transformers-stats {
        gap: 2rem;
    }
    
    .stat-transform {
        padding: 1.25rem 1.5rem;
    }
    
    .stat-transform-value {
        font-size: 2rem;
    }
    
    .game-logos-row {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .game-logo-img {
        height: 45px;
    }
    
    .game-logo-fallback {
        height: 45px;
    }
}

@media (max-width: 768px) {
    .hero-search-wrapper {
        padding: 3rem 1.5rem 2rem;
        gap: 2rem;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .search-input {
        font-size: 1rem;
        padding: 1rem 1.25rem 1rem 3rem;
    }
    
    .transformers-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-transform {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stat-transform-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .stat-transform-value {
        font-size: 1.8rem;
    }
    
    .game-logos-row {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .game-logo-img {
        height: 40px;
    }
    
    .game-logo-fallback {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-search-wrapper {
        padding: 2rem 1rem 1.5rem;
        gap: 1.5rem;
    }
    
    .search-input {
        font-size: 0.9rem;
        padding: 0.9rem 1rem 0.9rem 2.75rem;
    }
    
    .search-icon {
        left: 1rem;
        font-size: 1rem;
    }
    
    .transformers-stats {
        gap: 1rem;
    }
    
    .stat-transform {
        padding: 1rem 1.25rem;
        max-width: 100%;
    }
    
    .stat-transform-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .stat-transform-value {
        font-size: 1.5rem;
    }
    
    .stat-transform-label {
        font-size: 0.75rem;
    }
    
    .game-logos-row {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .game-logo-img {
        height: 40px;
    }
    
    .game-logo-fallback {
        height: 40px;
        padding: 0 1rem;
        font-size: 0.9rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badge Animated - Enhanced */
.hero-badge-animated {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, rgba(22, 22, 31, 0.9), rgba(10, 10, 15, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    width: fit-content;
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.8s ease 0.5s both;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 30px rgba(30, 58, 138, 0.15);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.hero-badge-animated:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(30, 58, 138, 0.3);
    border-color: rgba(30, 58, 138, 0.5);
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(30, 58, 138, 0.4), 
        rgba(59, 130, 246, 0.3), 
        rgba(30, 58, 138, 0.4), 
        transparent
    );
    animation: badgeShine 4s ease-in-out infinite;
}

@keyframes badgeShine {
    0% { left: -100%; opacity: 0; }
    50% { left: 100%; opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.hero-badge-animated i:first-child {
    color: #3b82f6;
    animation: rotateSparkle 3s linear infinite;
    filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.8));
    position: relative;
    z-index: 1;
}

.hero-badge-animated i:last-child {
    color: #3b82f6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.6));
}

.hero-badge-animated:hover i:last-child {
    transform: translateX(8px) scale(1.2);
}

.hero-badge-animated span {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff, #b0b0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes rotateSparkle {
    0% { 
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.8));
    }
    50% { 
        transform: rotate(180deg) scale(1.2);
        filter: drop-shadow(0 0 12px rgba(59, 130, 246, 1));
    }
    100% { 
        transform: rotate(360deg) scale(1);
        filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.8));
    }
}

/* Hero Title Main */
.hero-title-main {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    text-align: center;
    margin: 1rem 0 1.5rem;
    animation: fadeInUp 1s ease 0.7s both;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.title-line-1 {
    background: linear-gradient(135deg, #ffffff, #b0b0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.title-line-2 {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, #3b82f6, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Hero Description Main */
.hero-description-main {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease 0.9s both;
}

/* Hero Stats Main - Sadece Sayılar */
.hero-stats-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 2rem 0;
    animation: fadeInUp 1s ease 1.1s both;
    flex-wrap: nowrap;
    position: relative;
}

.hero-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    padding: 0 2rem;
    position: relative;
    animation: numberGlow 3s ease-in-out infinite;
    background-size: 200% 200%;
    transition: all 0.3s ease;
    cursor: default;
}

.hero-stat-number:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
}

.hero-stat-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-stat-number:hover::before {
    opacity: 1;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.4), transparent);
    position: relative;
    margin: 0 1rem;
}

.stat-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
    animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
    }
}

@keyframes dividerPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Hero Buttons Main */
.hero-buttons-main {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 1.3s both;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    animation: btnGlow 3s ease-in-out infinite;
    pointer-events: none;
}

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

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary i,
.btn-hero-secondary i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.btn-hero-primary span,
.btn-hero-secondary span {
    position: relative;
    z-index: 1;
}

/* Hero Title Animated */
.hero-title-animated {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.title-line {
    display: block;
    color: var(--text-primary);
    animation: slideInWord 0.8s ease both;
}

.title-line:nth-child(1) {
    animation-delay: 0.3s;
}

.title-line:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes slideInWord {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary) 50%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
}

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

/* Hero Description Animated */
.hero-description-animated {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.4s both;
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0.3;
    animation: underlinePulse 2s ease-in-out infinite;
}

@keyframes underlinePulse {
    0%, 100% { opacity: 0.3; transform: scaleX(1); }
    50% { opacity: 0.6; transform: scaleX(1.1); }
}

/* Hero Stats Animated */
.hero-stats-animated {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-card-animated {
    flex: 1;
    background: rgba(22, 22, 31, 0.3);
    border: none;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
    box-shadow: none;
    transition: var(--transition);
}

.stat-card-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(30, 64, 175, 0.05));
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--border-radius-lg);
}

.stat-card-animated:hover {
    transform: translateY(-4px);
    background: rgba(22, 22, 31, 0.5);
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.2);
}

.stat-card-animated:hover::before {
    opacity: 1;
}

.stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    animation: statPulse 4s ease-in-out infinite;
    border-radius: 50%;
    filter: blur(20px);
}

.stat-card-animated:hover .stat-glow {
    opacity: 0.3;
    animation: statPulseHover 2s ease-in-out infinite;
}

@keyframes statPulse {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 0.1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes statPulseHover {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.2); }
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4), rgba(30, 64, 175, 0.3));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.25rem;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.2);
    animation: iconFloat 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    border-radius: var(--border-radius);
    opacity: 0.3;
    z-index: -1;
    filter: blur(8px);
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.stat-card-animated:nth-child(1) .stat-icon {
    animation-delay: 0s;
}

.stat-card-animated:nth-child(2) .stat-icon {
    animation-delay: 0.3s;
}

.stat-card-animated:nth-child(3) .stat-icon {
    animation-delay: 0.6s;
}

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

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Purchase Animation Container */
.purchase-animation-container {
    width: 100%;
    max-width: 600px;
    position: relative;
    animation: fadeInUp 1s ease 0.4s both;
}

.purchase-flow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.purchase-step {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(22, 22, 31, 0.4);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    opacity: 0.5;
    transform: translateX(-20px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.purchase-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
}

.purchase-step.active {
    opacity: 1;
    transform: translateX(0);
    background: rgba(22, 22, 31, 0.6);
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.2);
}

.purchase-step.active::before {
    opacity: 1;
}

.purchase-step.completed {
    opacity: 0.8;
    transform: translateX(0);
}

.purchase-step.completed .step-icon {
    background: var(--gradient-accent);
    color: white;
}

.purchase-step.completed .step-icon i {
    transform: scale(0);
}

.purchase-step.completed .step-icon::after {
    content: '✓';
    position: absolute;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 58, 138, 0.2);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.purchase-step.active .step-icon {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 6px 25px rgba(30, 58, 138, 0.4);
    animation: stepIconPulse 2s ease-in-out infinite;
}

@keyframes stepIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 25px rgba(30, 58, 138, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 35px rgba(30, 58, 138, 0.6);
    }
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.purchase-step.active .step-content h3 {
    color: var(--accent-color);
}

/* Progress Bar */
.progress-bar-container {
    margin-top: 2rem;
    padding: 0 1.25rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 10px;
    width: 0%;
    transition: width 1.5s ease;
    position: relative;
    box-shadow: 0 0 10px rgba(30, 58, 138, 0.5);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

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

.progress-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.progress-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(30, 58, 138, 0.8);
    transform: translateY(-50%) scale(1.2);
}

.progress-dot.completed {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.dot-1 {
    left: 0%;
}

.dot-2 {
    left: 33.33%;
}

.dot-3 {
    left: 66.66%;
}

.dot-4 {
    left: 100%;
}

/* Floating Success Icons */
.floating-success {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.success-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0);
    animation: successFloat 3s ease-in-out infinite;
}

.success-icon i {
    animation: successCheck 0.5s ease;
}

.success-1 {
    top: 20%;
    left: 10%;
    animation-delay: 2s;
}

.success-2 {
    top: 50%;
    right: 15%;
    animation-delay: 4s;
}

.success-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes successFloat {
    0% {
        opacity: 0;
        transform: scale(0) translateY(0);
    }
    10% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    90% {
        opacity: 1;
        transform: scale(1) translateY(-30px);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
}

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

/* Delivery Modal */
.delivery-modal {
    position: absolute;
    top: 50%;
    right: -100%;
    transform: translateY(-50%) scale(0.9);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    max-width: 380px;
}

.delivery-modal.show {
    opacity: 1;
    right: 2rem;
    transform: translateY(-50%) scale(1);
    pointer-events: all;
}

.delivery-modal-content {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(30px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(30, 58, 138, 0.3);
    min-width: 320px;
    position: relative;
    overflow: hidden;
}

.delivery-modal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.2) 0%, transparent 70%);
    animation: modalGlow 2s ease-in-out infinite;
}

@keyframes modalGlow {
    0%, 100% {
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg);
        opacity: 0.5;
    }
}

.delivery-modal-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
    position: relative;
    z-index: 1;
    animation: modalIconBounce 0.6s ease;
    box-shadow: 
        0 10px 40px rgba(30, 58, 138, 0.5),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
}

.delivery-modal-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
    animation: modalIconPulse 2s ease-in-out infinite;
}

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

@keyframes modalIconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

.delivery-modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.delivery-modal-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.delivery-modal-account {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.account-info-item {
    background: rgba(30, 58, 138, 0.1);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: accountInfoSlide 0.5s ease both;
}

.account-info-item:nth-child(1) {
    animation-delay: 0.2s;
}

.account-info-item:nth-child(2) {
    animation-delay: 0.4s;
}

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

.account-info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.account-info-label i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.account-info-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: rgba(22, 22, 31, 0.5);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
}

.account-username,
.account-password {
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    flex: 1;
    word-break: break-all;
}

.copy-btn {
    background: var(--gradient-accent);
    border: none;
    border-radius: var(--border-radius);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.copy-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
}

.copy-btn i {
    font-size: 0.85rem;
}


.btn-hero-primary {
    position: relative;
    padding: 1rem 2rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: var(--border-radius-lg);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.btn-hero-primary .btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary i {
    animation: rocketPulse 2s ease-in-out infinite;
}

@keyframes rocketPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.btn-hero-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0.1;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.btn-hero-secondary:hover::before {
    left: 0;
}

/* Hero Visual Animated */
.hero-visual-animated {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 500px;
    animation: fadeInRight 1s ease 0.3s both;
}

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

.platform-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
    margin-bottom: 2rem;
}

.platform-icon-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: cardFloat 4s ease-in-out infinite;
}

.platform-icon-card:nth-child(1) { animation-delay: 0s; }
.platform-icon-card:nth-child(2) { animation-delay: 0.5s; }
.platform-icon-card:nth-child(3) { animation-delay: 1s; }
.platform-icon-card:nth-child(4) { animation-delay: 1.5s; }
.platform-icon-card:nth-child(5) { animation-delay: 2s; }
.platform-icon-card:nth-child(6) { animation-delay: 2.5s; }

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

.platform-icon-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-accent);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0;
    filter: blur(20px);
    transition: var(--transition);
    animation: iconGlow 3s ease-in-out infinite;
}

.platform-icon-card:hover .icon-glow {
    opacity: 0.3;
}

@keyframes iconGlow {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 0.2; transform: translate(-50%, -50%) scale(1.2); }
}

.platform-icon-card i {
    font-size: 2rem;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.platform-icon-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-hover);
}

.platform-icon-card span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.hero-visual-center {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulseRing 3s ease-out infinite;
}

.ring-1 {
    width: 180px;
    height: 180px;
    animation-delay: 0s;
    border-style: dashed;
}

.ring-2 {
    width: 220px;
    height: 220px;
    animation-delay: 1s;
    border-style: dotted;
}

.ring-3 {
    width: 260px;
    height: 260px;
    animation-delay: 2s;
    border: none;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.1) 0%, transparent 70%);
}

@keyframes pulseRing {
    0% {
        transform: scale(0.9) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        transform: scale(1.4) rotate(180deg);
        opacity: 0;
    }
}

.center-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(30, 64, 175, 0.15));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-color);
    box-shadow: 
        0 8px 32px rgba(30, 58, 138, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    animation: centerIconRotate 4s ease-in-out infinite;
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
}

.center-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary), var(--accent-hover));
    border-radius: 28px;
    opacity: 0.3;
    z-index: -1;
    filter: blur(15px);
    animation: centerIconGlow 3s ease-in-out infinite;
}

.center-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 24px;
    animation: centerIconShine 2s ease-in-out infinite;
}

@keyframes centerIconRotate {
    0%, 100% {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1);
        box-shadow: 
            0 8px 32px rgba(30, 58, 138, 0.3),
            inset 0 2px 10px rgba(255, 255, 255, 0.1);
    }
    25% {
        transform: perspective(1000px) rotateY(5deg) rotateX(-5deg) scale(1.05);
    }
    50% {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.1);
        box-shadow: 
            0 12px 48px rgba(30, 58, 138, 0.5),
            inset 0 2px 10px rgba(255, 255, 255, 0.2);
    }
    75% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) scale(1.05);
    }
}

@keyframes centerIconGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

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

.dashboard-mockup {
    position: relative;
    width: 400px;
    height: 500px;
}

.dashboard-frame {
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    animation: floatDashboard 6s ease-in-out infinite;
}

@keyframes floatDashboard {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(1deg); }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-controls {
    display: flex;
    gap: 6px;
}

.control {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.blue { background: #00d4ff; }

.dashboard-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.dashboard-content {
    height: calc(100% - 50px);
    overflow: hidden;
}

/* Analytics Grid */
.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.analytics-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
    position: relative;
    overflow: hidden;
    animation: cardGlow 3s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { box-shadow: 0 2px 10px rgba(30, 58, 138, 0.1); }
    50% { box-shadow: 0 4px 20px rgba(30, 58, 138, 0.2); }
}

.card-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.card-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.card-icon.discord { background: linear-gradient(45deg, #5865f2, #4752c4); }
.card-icon.tiktok { background: linear-gradient(45deg, #ff0050, #000000); }
.card-icon.telegram { background: linear-gradient(45deg, #0088cc, #006699); }

.card-icon i {
    color: white;
    font-size: 0.8rem;
}

.card-data {
    margin-bottom: 8px;
}

.card-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.card-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
}

.card-chart {
    display: flex;
    align-items: end;
    gap: 2px;
    height: 20px;
}

.chart-line {
    flex: 1;
    background: var(--gradient-accent);
    border-radius: 1px;
    animation: chartGrow 2s ease-in-out infinite;
}

@keyframes chartGrow {
    0%, 100% { transform: scaleY(0.8); }
    50% { transform: scaleY(1.2); }
}

/* Activity Feed */
.activity-feed {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 20px;
    height: 20px;
    background: var(--gradient-accent);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-icon i {
    font-size: 0.6rem;
    color: white;
}

.activity-text {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 32px;
    height: 32px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.floating-element i {
    color: white;
    font-size: 0.8rem;
}

.element-1 {
    top: 10%;
    left: -8%;
    animation: float1 8s ease-in-out infinite;
}

.element-2 {
    top: 30%;
    right: -12%;
    animation: float2 10s ease-in-out infinite;
}

.element-3 {
    bottom: 20%;
    left: -5%;
    animation: float3 7s ease-in-out infinite;
}

.element-4 {
    top: 60%;
    right: -8%;
    animation: float4 9s ease-in-out infinite;
}

.element-5 {
    bottom: 10%;
    right: 20%;
    animation: float5 6s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -20px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 15px) rotate(-180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -10px) rotate(90deg); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, -20px) rotate(-90deg); }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, 20px) rotate(270deg); }
}

/* ========================
   SERVICES PAGE STYLES
   ======================== */

/* Services Page Body */
.services-page {
    overflow-y: auto !important;
    height: auto !important;
}

/* Services Main */
.services-main {
    margin-top: 100px;
    min-height: calc(100vh - 100px);
    padding: 2rem 0;
}

/* Category Filter Section */
.category-filter-section {
    padding: 2rem 0;
    background: var(--secondary-bg);
    border-bottom: 1px solid var(--border-color);
}

.category-filter-wrapper {
    text-align: center;
}

.filter-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.filter-title i {
    color: #1e3a8a;
    font-size: 1.6rem;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn:hover {
    border-color: #1e3a8a;
    color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.category-btn.active {
    background: #1e3a8a;
    border-color: #1e3a8a;
    color: white;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.category-btn.active:hover {
    background: #1e40af;
    color: white;
}

.category-btn i {
    font-size: 1.1rem;
}

/* Services Table Section */
.services-table-section {
    padding: 3rem 0;
}

.services-table-wrapper {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
}

.services-table thead {
    background: var(--secondary-bg);
    border-bottom: 2px solid var(--border-color);
}

.services-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid var(--border-color);
    position: relative;
}

.services-table th:last-child {
    border-right: none;
    text-align: center;
}

.services-table th:first-child {
    text-align: center;
    width: 80px;
}

/* Category Headers */
.category-header {
    background: linear-gradient(135deg, #1e3a8a, #1e40af) !important;
    border: none !important;
}

.category-header.subcategory-header {
    background: linear-gradient(135deg, #1e40af, #2563eb) !important;
}

.category-header:hover {
    background: linear-gradient(135deg, #1e3a8a, #1e40af) !important;
    transform: none !important;
}

.category-title {
    padding: 1rem 1.5rem !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
}

.category-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.category-name {
    flex: 1;
    text-align: left;
}

/* Service Rows */
.service-row {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    background: var(--primary-bg);
}

.service-row:hover {
    background: rgba(30, 58, 138, 0.03);
    transform: scale(1.001);
}

.service-row:last-child {
    border-bottom: none;
}

.services-table td {
    padding: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-right: 1px solid var(--border-color);
    vertical-align: middle;
    font-weight: 500;
}

.services-table td:last-child {
    border-right: none;
}

/* Service ID */
.service-id {
    text-align: center !important;
    width: 80px;
}

.id-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 35px;
    background: #1e3a8a;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Service Name */
.service-name {
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    line-height: 1.4;
    max-width: 400px;
}

/* Service Price */
.service-price {
    font-weight: 700 !important;
    color: #1e3a8a !important;
    font-size: 1rem !important;
    text-align: center !important;
}

/* Service Min/Max */
.service-min,
.service-max {
    text-align: center !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
}

/* Service Duration */
.service-duration {
    text-align: center !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    font-size: 0.85rem !important;
}

/* Service Actions */
.service-actions {
    text-align: center !important;
    width: 80px;
}

.action-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    width: 40px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.action-btn:hover {
    border-color: #1e3a8a;
    color: #1e3a8a;
    background: rgba(30, 58, 138, 0.1);
    transform: translateY(-1px);
}

.action-btn i {
    font-size: 0.9rem;
}

/* Simple Table Mobile Responsiveness */
@media (max-width: 768px) {
    .services-main {
        margin-top: 80px;
        padding: 1rem 0;
    }
    
    .category-filter-section {
        padding: 1.5rem 0;
    }
    
    .filter-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .category-buttons {
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .category-btn {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    .services-table-section {
        padding: 2rem 0;
    }
    
    .services-table-wrapper {
        margin: 0 1rem;
        border-radius: 16px;
    }
    
    .services-table {
        font-size: 0.8rem;
    }
    
    .services-table th,
    .services-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .service-name {
        font-size: 0.8rem !important;
        line-height: 1.3;
    }
    
    .id-badge {
        width: 35px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .action-btn {
        width: 32px;
        height: 28px;
    }
    
    .action-btn i {
        font-size: 0.8rem;
    }
}

.filters-wrapper {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.filters-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.filters-toggle {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.filters-toggle:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.filters-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--primary-bg);
}

.filters-content.active {
    max-height: 1000px;
    padding: 2rem;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section:last-of-type {
    margin-bottom: 0;
}

.filter-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Search Container */
.search-container {
    margin-bottom: 1rem;
}

.search-box-advanced {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.search-box-advanced:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.search-box-advanced i {
    color: var(--text-muted);
    margin-right: 0.75rem;
}

.search-input-advanced {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.search-input-advanced::placeholder {
    color: var(--text-muted);
}

.search-clear {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    opacity: 0;
    transition: all 0.3s ease;
}

.search-box-advanced:focus-within .search-clear {
    opacity: 1;
}

.search-clear:hover {
    color: var(--accent-color);
    background: rgba(30, 58, 138, 0.1);
}

/* Category Tags */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-tag:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-1px);
}

.category-tag.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.category-tag i {
    font-size: 0.9rem;
}

/* Price Range */
.price-range-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-input-group {
    display: flex;
    align-items: center;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
    flex: 1;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    width: 100%;
}

.currency {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price-separator {
    color: var(--text-muted);
    font-weight: 600;
}

.price-suggestions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-suggestion {
    background: var(--tertiary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-suggestion:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Service Type Filters */
.service-type-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-group {
    position: relative;
}

.service-checkbox {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-checkbox:checked + .checkbox-label {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.checkbox-label:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.service-checkbox:checked + .checkbox-label:hover {
    color: white;
}

/* Sort Options */
.sort-select {
    width: 100%;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.sort-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* Sort select option styling */
.sort-select option {
    background: var(--secondary-bg);
    color: var(--text-primary);
    padding: 8px 12px;
}

.sort-select option:hover,
.sort-select option:focus {
    background: var(--accent-color);
    color: white;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.btn-reset-filters,
.btn-apply-filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-reset-filters {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-reset-filters:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
}

.btn-apply-filters {
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: white;
}

.btn-apply-filters:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* Services Grid Section */
.services-grid {
    padding: 3rem 0;
}

.services-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

.results-count {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.view-toggle {
    display: flex;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.view-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active {
    background: var(--accent-color);
    color: white;
}

.view-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* Services Container */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.services-container.view-list .service-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
}

.services-container.view-list .service-header {
    margin-bottom: 0;
    margin-right: 1.5rem;
}

.services-container.view-list .service-content {
    flex: 1;
    margin-right: 1.5rem;
}

.services-container.view-list .service-details {
    display: flex;
    gap: 2rem;
}

.services-container.view-list .service-actions {
    flex-direction: row;
    gap: 0.75rem;
}

/* Service Card */
.service-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.service-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge-popular {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.badge-quality {
    background: var(--secondary-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.badge-premium {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
}

.service-content {
    margin-bottom: 1.5rem;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.detail-label {
    color: var(--text-muted);
}

.detail-value {
    color: var(--text-primary);
    font-weight: 500;
}

.detail-value.price {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.service-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-service-details,
.btn-service-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
}

.btn-service-details {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-service-details:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(30, 58, 138, 0.1);
}

.btn-service-order {
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: white;
}

.btn-service-order:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* Load More */
.load-more-container {
    text-align: center;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-load-more:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Services Page Mobile Responsiveness */
@media (max-width: 768px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-stats {
        gap: 1.5rem;
    }
    
    .filters-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .filters-content.active {
        padding: 1rem;
    }
    
    .category-tags {
        gap: 0.5rem;
    }
    
    .price-inputs {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .service-type-filters {
        gap: 0.75rem;
    }
    
    .filter-actions {
        flex-direction: column;
    }
    
    .services-grid-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-container.view-list .service-card {
        flex-direction: column;
        align-items: stretch;
    }
    
    .services-container.view-list .service-header {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .services-container.view-list .service-content {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .services-container.view-list .service-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .services-container.view-list .service-actions {
        flex-direction: column;
    }
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-content {
        max-width: 100%;
        align-items: center;
    }
    
    .hero-visual {
        align-items: center;
        justify-content: center;
    }
    
    .dashboard-mockup {
        width: 350px;
        height: 450px;
    }
    
    /* Features grid responsive */
    .features-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(25px);
    border-top: 1px solid var(--border-color);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    min-width: 0;
}

.mobile-nav-item i {
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.mobile-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.mobile-nav-item.active {
    color: var(--accent-color);
}

.mobile-nav-item.active i {
    transform: scale(1.1);
}

.mobile-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 0 0 4px 4px;
}

.mobile-nav-item:active {
    transform: scale(0.95);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    z-index: 2000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mobile-sidebar.active {
    right: 0;
    pointer-events: all;
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-sidebar.active .mobile-sidebar-overlay {
    opacity: 1;
    pointer-events: all;
}

.mobile-sidebar-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    backdrop-filter: blur(25px);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.mobile-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-sidebar-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: rotate(90deg);
}

.mobile-sidebar-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.mobile-sidebar-section {
    margin-bottom: 2rem;
}

.mobile-sidebar-section:last-child {
    margin-bottom: 0;
}

.mobile-sidebar-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.mobile-sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.mobile-sidebar-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.mobile-sidebar-link:hover {
    background: rgba(30, 58, 138, 0.1);
    border-color: rgba(30, 58, 138, 0.3);
    color: var(--accent-color);
    transform: translateX(5px);
}

.mobile-sidebar-link.logout {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.2);
}

.mobile-sidebar-link.logout:hover {
    background: rgba(255, 68, 68, 0.2);
    border-color: rgba(255, 68, 68, 0.4);
}

.mobile-sidebar-link.register {
    background: var(--gradient-accent);
    color: white;
    border: none;
    justify-content: center;
    font-weight: 600;
}

.mobile-sidebar-link.register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

.mobile-sidebar-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.mobile-social-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.mobile-social-link.instagram:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(225, 48, 108, 0.1));
    border-color: rgba(225, 48, 108, 0.3);
    color: #e1306c;
}

.mobile-social-link.discord:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(88, 101, 242, 0.1));
    border-color: rgba(88, 101, 242, 0.3);
    color: #5865f2;
}

.mobile-social-link.telegram:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(0, 136, 204, 0.1));
    border-color: rgba(0, 136, 204, 0.3);
    color: #0088cc;
}

.mobile-social-link.whatsapp:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
    border-color: rgba(37, 211, 102, 0.3);
    color: #25d366;
}

@media (max-width: 768px) {
    /* Top Announcement Bar Mobile */
    .top-announcement-bar {
        padding: 0.3rem 0;
    }
    
    .announcement-text {
        font-size: 0.7rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.35rem;
    }
    
    .announcement-text::before {
        width: 14px;
        height: 14px;
    }
    
    .announcement-code {
        font-size: 0.75rem;
        padding: 0.15rem 0.5rem;
        letter-spacing: 1px;
    }
    
    .announcement-copy-btn {
        font-size: 0.65rem;
        padding: 0.15rem 0.35rem;
        margin-left: 0.2rem;
        min-width: 24px;
        min-height: 24px;
    }
    
    body.has-announcement .header {
        top: 28px;
    }
    
    body.has-announcement {
        padding-top: 28px;
    }
    
    .banner-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .banner-title {
        font-size: 0.75rem;
    }
    
    .banner-link,
    .banner-copy-btn {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
    
    /* Hide desktop navbar on mobile */
    .header {
        display: none;
    }
    
    /* Show mobile bottom nav */
    .mobile-bottom-nav {
        display: flex;
    }
    
    /* Adjust body padding for bottom nav */
    body {
        padding-bottom: 70px;
    }
    
    /* Hero adjustments */
    .hero-wrapper {
        flex-direction: column;
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 2rem;
        margin-top: 0;
        padding-top: 2rem;
        padding-bottom: 2rem;
        min-height: auto;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    
    .purchase-animation-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .purchase-step {
        padding: 1rem;
        gap: 1rem;
    }
    
    .delivery-modal {
        max-width: 90%;
        right: 1rem !important;
    }
    
    .delivery-modal.show {
        right: 1rem !important;
    }
    
    .delivery-modal-content {
        padding: 1.5rem;
        min-width: 260px;
    }
    
    .account-info-item {
        padding: 0.75rem;
    }
    
    .account-username,
    .account-password {
        font-size: 0.8rem;
    }
    
    .delivery-modal-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .delivery-modal-content h3 {
        font-size: 1.25rem;
    }
    
    .delivery-modal-content p {
        font-size: 0.9rem;
    }
    
    .account-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .step-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .progress-bar-container {
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-visual-animated {
        width: 100%;
        min-height: 300px;
    }
    
    .platform-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
    }
    
    .platform-icon-card {
        padding: 1rem;
    }
    
    .platform-icon-card i {
        font-size: 1.5rem;
    }
    
    .platform-icon-card span {
        font-size: 0.75rem;
    }
    
    .hero-visual-center {
        width: 150px;
        height: 150px;
    }
    
    .center-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        border-radius: 20px;
    }
    
    .center-icon::before {
        border-radius: 24px;
    }
    
    .center-icon::after {
        border-radius: 20px;
    }
    
    .pulse-ring.ring-1 {
        width: 130px;
        height: 130px;
    }
    
    .pulse-ring.ring-2 {
        width: 160px;
        height: 160px;
    }
    
    .pulse-ring.ring-3 {
        width: 190px;
        height: 190px;
    }
    
    .gradient-orb {
        display: none;
    }
    
    .floating-shapes {
        display: none;
    }
    
    /* Section adjustments */
    .popular-categories-section,
    .features-section,
    .reviews-section,
    .discounted-products-section {
        padding: 2.5rem 0;
    }
    
    .section-header-modern {
        margin-bottom: 2rem;
    }
    
    .section-title-modern {
        font-size: 1.8rem;
    }
    
    .section-subtitle-modern {
        font-size: 0.95rem;
    }
    
    .discounted-products-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .discounted-product-card {
        padding: 1.25rem;
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .discounted-price {
        font-size: 1.3rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .wave-divider {
        height: 50px;
        margin-bottom: 2.5rem;
    }
    
    .wave-divider::before {
        background-size: 350px 50px;
    }
    
    .features-section .section-title {
        font-size: 1.8rem;
    }
    
    .features-section {
        padding: 2.5rem 0;
    }
    
    .features-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .feature-card-modern {
        padding: 1.5rem;
    }
    
    .feature-icon-modern {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card-modern h3 {
        font-size: 1.1rem;
    }
    
    .feature-card-modern p {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    /* Categories grid mobile */
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .category-card {
        border-radius: 16px;
    }
    
    /* Features grid mobile */
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .feature-card-modern {
        padding: 1.5rem;
    }
    
    /* Reviews mobile */
    .reviews-section {
        padding-bottom: 4rem;
    }
    
    .reviews-slider-wrapper {
        padding: 1rem 0 2rem;
        margin: 0 -1rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    
    .reviews-slider-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .reviews-slider {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .review-card {
        min-width: calc(100vw - 3rem);
        max-width: calc(100vw - 3rem);
        padding: 1.5rem;
        scroll-snap-align: start;
        border-radius: 16px;
    }
    
    /* Features grid mobile - 1 column */
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .review-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .review-name {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .review-rating {
        font-size: 0.8rem;
    }
    
    .review-rating i {
        font-size: 0.75rem;
    }
    
    .review-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .review-footer {
        padding-top: 0.75rem;
        font-size: 0.85rem;
    }
    
    .review-platform {
        font-size: 0.8rem;
    }
    
    .review-platform i {
        font-size: 0.9rem;
    }
    
    .review-date {
        font-size: 0.75rem;
    }
    
    /* Footer mobile */
    .main-footer {
        padding: 3rem 0 1.5rem;
        margin-top: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title-main {
        font-size: 2.2rem;
        margin: 1rem 0;
    }
    
    .hero-description-main {
        font-size: 0.9rem;
        padding: 0 1rem;
        margin: 0 auto 1.5rem;
    }
    
    .hero-stats-main {
        gap: 0;
        margin: 1.5rem 0;
        flex-wrap: wrap;
    }
    
    .hero-stat-number {
        font-size: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .stat-divider {
        height: 40px;
        margin: 0 0.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-buttons-main {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-wrapper {
        padding: 1.5rem 1rem;
        min-height: calc(100vh - 70px);
    }
    
    .hero-title-main {
        font-size: 1.8rem;
        margin: 0.75rem 0;
    }
    
    .hero-description-main {
        font-size: 0.85rem;
        padding: 0 0.5rem;
        margin: 0 auto 1rem;
    }
    
    .hero-stats-main {
        gap: 0;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        margin: 1rem 0;
    }
    
    .hero-stat-number {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .stat-divider {
        height: 35px;
        margin: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero-buttons .btn {
        flex: 1;
        min-width: 0;
    }
    
    .dashboard-mockup {
        width: 280px;
        height: 350px;
    }
    
    .floating-elements {
        display: none;
    }
    
    /* Categories 2 columns on very small screens */
    .modern-categories-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .categories-section-header {
        margin-bottom: 2.5rem;
    }
    
    .categories-main-title {
        font-size: 2rem;
    }
    
    .categories-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .category-card-inner {
        padding: 1.5rem;
    }
    
    .category-visual-wrapper {
        height: 150px;
    }
    
    .category-modern-name {
        font-size: 1.2rem;
    }
    
    .view-all-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Mobile nav items smaller text */
    .mobile-nav-item span {
        font-size: 0.65rem;
    }
    
    .mobile-nav-item i {
        font-size: 1.2rem;
    }
    
    /* Section titles smaller */
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .wave-divider {
        height: 40px;
        margin-bottom: 2rem;
    }
    
    .wave-divider::before {
        background-size: 300px 40px;
    }
    
    .features-section .section-title {
        font-size: 1.6rem;
    }
    
    .features-section {
        padding: 2rem 0;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card-modern {
        padding: 1.5rem;
    }
    
    .feature-icon-modern {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card-modern h3 {
        font-size: 1.1rem;
    }
    
    .feature-card-modern p {
        font-size: 0.85rem;
    }
    
    /* Reviews extra small mobile */
    .review-card {
        min-width: calc(100vw - 2rem);
        max-width: calc(100vw - 2rem);
        padding: 1.2rem;
    }
    
    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .review-name {
        font-size: 0.95rem;
    }
    
    .review-text {
        font-size: 0.85rem;
    }
}

/* Service Details Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: 24px 30px 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-title i {
    color: var(--accent-color);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
    margin-left: auto;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.modal-body {
    padding: 30px;
}

.service-info .service-id-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.id-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.id-value {
    background: var(--gradient-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.4;
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

.detail-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
    min-width: 20px;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.detail-value {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.service-warnings {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 12px;
}

.service-warnings h5 {
    color: #ffcc00;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.warning-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.warning-list li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.warning-list li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 8px;
}

.service-description {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.service-description h5 {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px 30px;
    gap: 15px;
}

.btn-secondary, .btn-primary {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.5);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header, .modal-body, .modal-footer {
        padding: 20px;
    }
    
    .service-details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-secondary, .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================
   NEW HOME PAGE SECTIONS
   ======================== */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: -0.3px;
}

.section-title i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Wave Divider - Bölümler Arası Ayraç */
.wave-divider {
    width: 100%;
    height: 80px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.wave-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='500' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 Q125,10 250,40 T500,40' stroke='%231e3a8a' stroke-width='3' fill='none' opacity='0.8'/%3E%3Cpath d='M0,45 Q125,15 250,45 T500,45' stroke='%231e40af' stroke-width='2.5' fill='none' opacity='0.7'/%3E%3Cpath d='M0,50 Q125,20 250,50 T500,50' stroke='%232563eb' stroke-width='2' fill='none' opacity='0.6'/%3E%3Cpath d='M0,55 Q125,25 250,55 T500,55' stroke='%233b82f6' stroke-width='1.5' fill='none' opacity='0.5'/%3E%3Cpath d='M0,60 Q125,30 250,60 T500,60' stroke='%2360a5fa' stroke-width='1' fill='none' opacity='0.4'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 500px 80px;
    background-position: 0 center;
    filter: drop-shadow(0 2px 8px rgba(30, 58, 138, 0.3));
}

.wave-divider-top {
    margin-bottom: 4rem;
}

.wave-divider-bottom {
    margin-top: 4rem;
    transform: rotate(180deg);
}

/* Modern Categories Section */
.modern-categories-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 50%, var(--primary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.modern-categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

/* Section Header */
.categories-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header-content {
    position: relative;
    z-index: 2;
}

.section-label-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: labelFadeIn 0.8s ease-out;
}

.section-label-icon {
    font-size: 0.9rem;
    color: #3b82f6;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.section-label-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #60a5fa;
    letter-spacing: 0.5px;
}

.categories-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: titleSlideIn 1s ease-out;
}

.title-accent {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-main {
    color: var(--text-primary);
}

.categories-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: subtitleFadeIn 1.2s ease-out;
}

@keyframes labelFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
    animation: circleFloat 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 180px;
    height: 180px;
    bottom: -30px;
    left: 20%;
    animation-delay: 4s;
}

@keyframes circleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
}

/* Modern Categories Grid */
.modern-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.modern-category-card {
    text-decoration: none;
    position: relative;
    animation: cardFadeIn 0.6s ease-out backwards;
}

.modern-category-card:nth-child(1) { animation-delay: 0.1s; }
.modern-category-card:nth-child(2) { animation-delay: 0.2s; }
.modern-category-card:nth-child(3) { animation-delay: 0.3s; }
.modern-category-card:nth-child(4) { animation-delay: 0.4s; }
.modern-category-card:nth-child(5) { animation-delay: 0.5s; }
.modern-category-card:nth-child(6) { animation-delay: 0.6s; }
.modern-category-card:nth-child(7) { animation-delay: 0.7s; }
.modern-category-card:nth-child(8) { animation-delay: 0.8s; }
.modern-category-card:nth-child(9) { animation-delay: 0.9s; }
.modern-category-card:nth-child(10) { animation-delay: 1s; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.category-card-inner {
    position: relative;
    background: var(--gradient-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modern-category-card:hover .category-card-inner {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.category-number-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

.modern-category-card:hover .category-number-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.category-visual-wrapper {
    position: relative;
    width: 100%;
    height: 140px;
    margin-bottom: 1rem;
    border-radius: 14px;
    overflow: hidden;
}

.category-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-modern-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: opacity 0.3s ease;
}

.modern-category-card:hover .category-modern-image {
    transform: scale(1.15);
}

.modern-category-card:hover .category-image-overlay {
    opacity: 0.5;
}

.category-icon-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.icon-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    animation: glowPulse 3s ease-in-out infinite;
}

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

.category-icon-container i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.modern-category-card:hover .category-icon-container i {
    transform: scale(1.1) rotate(5deg);
}

.category-info-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-modern-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.modern-category-card:hover .category-modern-name {
    color: #3b82f6;
}

.category-service-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #60a5fa;
    width: fit-content;
    transition: all 0.3s ease;
}

.modern-category-card:hover .category-service-count {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.category-service-count i {
    font-size: 0.75rem;
}

.category-hover-effect {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.modern-category-card:hover .category-hover-effect {
    opacity: 1;
    transform: scale(1);
}

.hover-arrow {
    color: white;
    font-size: 0.9rem;
    animation: arrowSlide 1.5s ease-in-out infinite;
}

@keyframes arrowSlide {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.category-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.modern-category-card:hover .category-shine {
    animation: shineSweep 1s ease;
}

@keyframes shineSweep {
    0% {
        transform: rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(45deg);
        opacity: 0;
    }
}

/* View All Button */
.categories-view-all {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.view-all-btn:hover {
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.6);
}

.view-all-btn:hover::before {
    opacity: 1;
}

.view-all-btn span,
.view-all-btn i {
    position: relative;
    z-index: 1;
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: scale(1.1);
}


/* Features Section */
.features-section {
    padding: 3rem 0;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(30, 58, 138, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

.features-section .section-header {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.features-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.features-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(30, 58, 138, 0.5);
}

.features-section .section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    opacity: 0.9;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

.feature-card-modern {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.75rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card-modern:hover::before {
    opacity: 1;
}


.feature-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 
        0 12px 30px rgba(30, 58, 138, 0.4),
        0 0 0 1px rgba(30, 58, 138, 0.2);
    background: var(--card-hover);
}

.feature-icon-modern {
    width: 64px;
    height: 64px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: white;
    box-shadow: 
        0 6px 16px rgba(30, 58, 138, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
}

.feature-icon-modern::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-accent);
    border-radius: 19px;
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
    transition: var(--transition);
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 30px rgba(30, 58, 138, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.feature-card-modern:hover .feature-icon-modern::after {
    opacity: 0.5;
    filter: blur(12px);
}

.feature-card-modern h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 1.5em;
    letter-spacing: -0.2px;
}

.feature-card-modern h3.text-animate {
    opacity: 0;
}

.feature-card-modern h3 .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotateX(90deg);
    animation: letterFlip 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes letterFlip {
    0% {
        opacity: 0;
        transform: translateY(20px) rotateX(90deg);
    }
    50% {
        opacity: 0.5;
        transform: translateY(10px) rotateX(45deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.feature-card-modern p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    opacity: 0.9;
}

.feature-card-modern p.text-animate {
    opacity: 0;
}

.feature-card-modern p .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUpText 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUpText {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-card-modern:hover .feature-badge {
    box-shadow: var(--shadow-accent);
    transform: scale(1.05);
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: var(--primary-bg);
}

.reviews-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    width: 100%;
}

.reviews-slider {
    display: flex;
    gap: 2rem;
    width: fit-content;
    animation: none;
}

.review-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    min-width: 350px;
    max-width: 350px;
    transition: var(--transition);
    flex-shrink: 0;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

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

.review-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.review-rating {
    color: #ffd700;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.review-rating i {
    font-size: 0.85rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    word-wrap: break-word;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 0.5rem;
}

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

.review-platform i {
    font-size: 1rem;
}

/* İndirimli Ürünler Section */
.discounted-products-section {
    padding: 4rem 0;
    background: var(--primary-bg);
    position: relative;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.section-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(30, 64, 175, 0.15));
    border: 1px solid rgba(30, 58, 138, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    backdrop-filter: blur(10px);
}

.section-header-badge i {
    color: #ff6b6b;
    animation: firePulse 2s ease-in-out infinite;
}

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

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.section-subtitle-modern {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.discounted-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.discounted-product-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    animation: productSlideIn 0.6s ease both;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.discounted-product-card[data-index="0"] { animation-delay: 0.1s; }
.discounted-product-card[data-index="1"] { animation-delay: 0.2s; }
.discounted-product-card[data-index="2"] { animation-delay: 0.3s; }
.discounted-product-card[data-index="3"] { animation-delay: 0.4s; }
.discounted-product-card[data-index="4"] { animation-delay: 0.5s; }
.discounted-product-card[data-index="5"] { animation-delay: 0.6s; }

@keyframes productSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.discounted-product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.3);
}

.product-rank {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
    z-index: 2;
}

.product-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.product-info {
    text-align: center;
    flex: 1;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.product-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.discounted-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Courier New', monospace;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    animation: discountPulse 2s ease-in-out infinite;
}

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

.product-action {
    margin-top: auto;
}

.btn-product {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.product-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.discounted-product-card:hover .product-glow {
    opacity: 1;
    animation: glowRotate 3s linear infinite;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.review-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Footer */
.main-footer {
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    background: var(--gradient-accent);
    border-color: var(--accent-color);
    color: white;
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-payment-methods i {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-payment-methods i:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 1400px) {
    .modern-categories-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.25rem;
    }
    
    .category-card-inner {
        padding: 1.25rem;
    }
    
    .category-visual-wrapper {
        height: 120px;
    }
    
    .category-modern-name {
        font-size: 1rem;
    }
}

@media (max-width: 1200px) {
    .modern-categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
    
    .categories-main-title {
        font-size: 2.5rem;
    }
    
    .categories-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .modern-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        min-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .category-card {
        border-radius: 16px;
    }
    
    .category-image,
    .category-image-placeholder {
        border-radius: 16px;
    }
}