/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.loader-backdrop {
    position: absolute;
    inset: 0;
    background: #ffffff;
    opacity: 0.98;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Logo Container - Minimal Spinner */
.loader-logo-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-spinner {
    position: absolute;
    inset: 0;
    animation: rotateSpinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-segment {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-radius: 50%;
}

.spinner-segment:nth-child(1) {
    border-top-color: #6366f1;
    animation: segmentFade 1.2s linear infinite;
}

.spinner-segment:nth-child(2) {
    border-right-color: #6366f1;
    animation: segmentFade 1.2s linear 0.4s infinite;
}

.spinner-segment:nth-child(3) {
    border-bottom-color: #6366f1;
    animation: segmentFade 1.2s linear 0.8s infinite;
}

@keyframes rotateSpinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes segmentFade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.loader-brand {
    color: #1e293b;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: 2px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.loader-subtitle {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: none;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #06b6d4;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --light: #f8fafc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

main {
    padding-top: 0;
    margin-top: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
    z-index: 1001;
    height: 39px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-left {
    justify-content: flex-start;
    flex: 0 0 auto;
}

.top-bar-right {
    justify-content: flex-end;
    margin-left: auto;
    flex: 0 0 auto;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.top-bar-link:hover {
    color: #fff;
    transform: translateY(-1px);
}

.top-bar-link i {
    font-size: 14px;
}

/* Announcement Bar */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

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

.announcement-bar + .top-bar {
    top: 48px;
}

.announcement-bar + .top-bar + .header {
    top: 87px;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.announcement-text {
    flex: 1;
    min-width: 200px;
    font-weight: 600;
}

.announcement-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.announcement-coupon {
    background: rgba(255, 255, 255, 0.25);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    color: inherit;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.announcement-coupon:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.05);
}

.announcement-link {
    color: inherit;
    text-decoration: none;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.announcement-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(3px);
}

.announcement-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: inherit;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 39px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin: 0;
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.logo i {
    color: var(--primary-color);
    font-size: 28px;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a i.fa-chevron-down {
    font-size: 12px;
    transition: var(--transition);
}

.nav-dropdown:hover a i.fa-chevron-down {
    transform: rotate(180deg);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    margin-top: 10px;
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-menu a i {
    width: 20px;
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gray-light);
    color: var(--dark);
}

.btn-secondary:hover {
    background: var(--gray);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 110px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #4c1d95 75%, #6b21a8 100%);
}

.hero-home {
    min-height: calc(100vh - 110px);
    padding: 120px 0 80px;
}

.hero-small {
    min-height: 50vh;
    padding: 120px 0 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: fadeInDown 0.6s ease;
}

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

.hero-subtitle-line {
    display: block;
    font-size: 42px;
    font-weight: 700;
    margin-top: 15px;
    color: #ffffff;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-price {
    margin: 30px 0;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price-tag .old-price {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.price-tag .price {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.price-tag .period {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.price-tag .discount-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    animation: badgePulse 2s infinite;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 20;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.15);
}

.dot.active {
    background: #fff;
    border-color: #fff;
    width: 32px;
    border-radius: 5px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
    animation: fadeInUp 0.6s ease 0.45s both;
    position: relative;
    z-index: 15;
}

.stat-item {
    text-align: center;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.35);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animated Shapes - Minimal for Corporate Look */
.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.5;
}

.shape {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out;
    filter: blur(40px);
    z-index: 0;
}

.shape-1 {
    width: 250px;
    height: 250px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 30s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 8s;
    animation-duration: 28s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    left: 20%;
    animation-delay: 15s;
    animation-duration: 35s;
}

.shape-4 {
    width: 220px;
    height: 220px;
    top: 35%;
    right: 12%;
    animation-delay: 20s;
    animation-duration: 32s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(20px, -20px);
    }
    66% {
        transform: translate(-15px, 15px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.hero-small .hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-small .hero-title i {
    margin-right: 16px;
    font-size: 52px;
    vertical-align: middle;
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.3));
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.4));
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 1;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease 0.15s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #f3f4f6;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-hero {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-hero.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-hero.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-hero.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px;
    background: var(--light);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Products Section */
.products-section {
    padding: 0px 0;
    background: var(--light);
}

.products-section.alt-bg {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
    }
}

.section-badge.vps {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    animation: badgePulseVps 3s ease-in-out infinite;
}

@keyframes badgePulseVps {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
    }
}

.section-badge.game {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    animation: badgePulseGame 3s ease-in-out infinite;
}

@keyframes badgePulseGame {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(239, 68, 68, 0.35);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(239, 68, 68, 0.5);
    }
}

.section-badge i {
    font-size: 16px;
    animation: rotate 4s linear infinite;
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-top: 10px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
    min-height: 400px;
}

.products-grid.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Loading Spinner */
.loading-spinner {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 6px solid transparent;
    border-top: 6px solid var(--primary-color);
    border-right: 6px solid var(--secondary-color);
    border-radius: 50%;
    animation: spinGradient 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    position: relative;
}

.spinner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-left: 3px solid var(--primary-light);
    border-bottom: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: spinReverse 1.5s linear infinite;
}

.spinner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    background: var(--gradient);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

@keyframes spinGradient {
    0% { 
        transform: rotate(0deg) scale(1);
        border-top-color: var(--primary-color);
        border-right-color: var(--secondary-color);
    }
    50% { 
        transform: rotate(180deg) scale(1.1);
        border-top-color: var(--secondary-color);
        border-right-color: var(--primary-color);
    }
    100% { 
        transform: rotate(360deg) scale(1);
        border-top-color: var(--primary-color);
        border-right-color: var(--secondary-color);
    }
}

@keyframes spinReverse {
    0% { transform: translate(-50%, -50%) rotate(360deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
}

.products-grid.loading {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Announcement Bar Mobile */
    .announcement-bar {
        padding: 10px 0;
        font-size: 12px;
    }
    
    .announcement-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .announcement-text {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .announcement-actions {
        justify-content: center;
        width: 100%;
        gap: 10px;
    }
    
    .announcement-coupon,
    .announcement-link {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .announcement-close {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 28px;
        height: 28px;
    }
    
    .announcement-bar + .top-bar {
        top: auto;
    }
    
    .announcement-bar + .top-bar + .header {
        top: auto;
    }
    
    /* Top Bar Mobile */
    .top-bar {
        position: relative;
        padding: 10px 0;
        font-size: 11px;
        height: auto;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .top-bar-left,
    .top-bar-right {
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .top-bar-link {
        font-size: 11px;
        gap: 6px;
    }
    
    .top-bar-link i {
        font-size: 12px;
    }
    
    /* Header Mobile */
    .header {
        position: relative;
        top: auto !important;
        padding: 0;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 20px;
        gap: 8px;
    }
    
    .logo i {
        font-size: 22px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gradient);
        border: none;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        color: white;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    }
    
    .mobile-menu-toggle:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: white;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 2000;
        padding: 80px 0 40px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: -1;
    }
    
    .nav-menu.active::before {
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-links {
        flex-direction: column;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .nav-links li {
        border-bottom: 1px solid #f3f4f6;
    }
    
    .nav-links a {
        display: block;
        padding: 18px 30px;
        font-size: 16px;
        font-weight: 600;
        color: var(--dark);
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--gradient);
        transition: height 0.3s ease;
    }
    
    .nav-links a:hover::before,
    .nav-links a.active::before {
        height: 60%;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: linear-gradient(90deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
        color: var(--primary-color);
    }
    
    .nav-actions {
        padding: 20px 30px;
        margin-top: 20px;
    }
    
    .nav-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    /* Products Grid Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-card {
        padding: 30px 25px;
        min-height: auto;
    }
    
    /* Slider Mobile */
    .slider-controls {
        bottom: 60px;
        gap: 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    /* Price Mobile */
    .price-tag .price {
        font-size: 32px;
    }
    
    .price-tag .currency {
        font-size: 18px;
    }
    
    /* Hero Stats Mobile */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    /* Section Spacing */
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
}

.product-card {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(99, 102, 241, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 680px;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.25);
    border-color: var(--primary-color);
}

.product-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(99, 102, 241, 0.6);
    }
}

.product-badge.vps {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.product-badge.game {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.product-category-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.product-category-label.vps {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    color: #f59e0b;
}

.product-category-label.game {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    color: #ef4444;
}

.product-header h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 800;
}

.product-description {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.6;
}

.product-pricing {
    margin-bottom: 30px;
}

.price-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    background: var(--light);
    padding: 6px;
    border-radius: 12px;
}

.period-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

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

.price-display {
    text-align: center;
    padding: 20px 0;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
}

.period-text {
    color: var(--gray);
    font-size: 16px;
}

.product-features {
    list-style: none;
    margin-bottom: auto;
    flex-grow: 1;
}

.product-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features i {
    color: var(--success-color);
    font-size: 16px;
}

.product-card .btn-block {
    margin-top: 20px;
}

/* Security Section */
.security-section {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.security-section .section-title {
    color: var(--white);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.security-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--dark-light);
    border-radius: 16px;
    transition: var(--transition);
}

.security-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-light) 100%);
}

.security-card i {
    font-size: 48px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.security-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.security-card p {
    color: var(--gray-light);
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--dark);
}

.location-info p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.location-features {
    list-style: none;
}

.location-features li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--dark);
}

.location-features i {
    color: var(--success-color);
    font-size: 18px;
}

.location-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 200px;
    color: var(--primary-light);
    opacity: 0.2;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    border-radius: 28px;
    max-width: 580px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
    font-size: 18px;
    color: var(--gray);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
    color: var(--dark);
}

.modal-body {
    padding: 60px 45px;
    text-align: center;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 85vh;
    flex: 1;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.3);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.5);
}

.modal-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    color: var(--white);
    font-size: 48px;
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-icon.success {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.modal-body h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 800;
}

.modal-body p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.success-message {
    font-size: 18px;
    font-weight: 500;
}

.modal-body .price {
    color: var(--primary-color);
    font-size: 32px;
}

.modal-features {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    text-align: left;
    border: 2px solid rgba(99, 102, 241, 0.1);
}

.modal-features h4 {
    margin-bottom: 18px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
}

.modal-features ul {
    list-style: none;
}

.modal-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    font-size: 15px;
}

.modal-features i {
    color: var(--success-color);
    font-size: 18px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.modal-actions .btn {
    flex: 1;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-light);
}

.contact-info i {
    color: var(--primary-light);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-light);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--dark-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray-light);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-enter-active {
    animation: fadeIn 0.5s ease-out;
}

.modal-fade-enter-active,
.modal-fade-leave-active {
    transition: opacity 0.3s ease;
}

.modal-fade-enter-from,
.modal-fade-leave-to {
    opacity: 0;
}

.modal-fade-enter-active .modal-content {
    animation: modalSlideIn 0.3s ease-out;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--light);
    }
    
    .nav-links a {
        display: block;
        padding: 15px 0;
    }
    
    .nav-actions {
        width: 100%;
        flex-direction: column;
        margin-top: 20px;
    }
    
    .nav-actions .btn {
        width: 100%;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .location-visual {
        font-size: 120px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .product-card {
        padding: 30px 20px;
    }
    
    .price {
        font-size: 32px;
    }
    
    .modal-body {
        padding: 40px 25px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

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

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Category Filter Section */
.category-filter-section {
    padding: 40px 0;
    background: var(--light);
}

/* Category Filter Buttons */
.category-filter {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.filter-btn.active {
    background: var(--gradient);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.filter-btn i {
    font-size: 18px;
}

/* Product Category Label */
.product-category-label {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
    color: var(--primary-dark);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.product-category-label.vps {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.product-category-label.game {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    color: #991b1b;
}

/* Discount Styles */
.old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 18px;
    opacity: 0.7;
    margin-bottom: 8px;
}

.product-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    animation: pulse 2s ease-in-out infinite;
}

.product-badge.vps {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.product-badge.game {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

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

/* Enhanced Product Cards */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.vps-card {
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, #f59e0b, #d97706) border-box;
}

.game-card {
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, #8b5cf6, #7c3aed) border-box;
}

/* Modal Enhancements */
.price-comparison {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 25px;
    margin: 25px 0;
}

.old-price-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.old-price-large .label {
    font-size: 14px;
    color: var(--gray);
}

.old-price-large .amount {
    font-size: 20px;
    color: var(--gray);
    text-decoration: line-through;
}

.discount-badge-large {
    background: var(--gradient);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0;
    box-shadow: var(--shadow);
}

.new-price-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.new-price-large .label {
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
}

.new-price-large .amount.highlight {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-display-modal {
    text-align: center;
    padding: 25px;
    background: var(--light);
    border-radius: 12px;
    margin: 25px 0;
}

.modal-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
}

.modal-period {
    font-size: 16px;
    color: var(--gray);
}

/* Countdown Display */
.countdown-display {
    margin-top: 40px;
    text-align: center;
}

.countdown-circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    filter: drop-shadow(0 10px 25px rgba(99, 102, 241, 0.3));
}

.countdown-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.countdown-bg {
    fill: none;
    stroke: rgba(99, 102, 241, 0.1);
    stroke-width: 10;
}

.countdown-progress {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 10;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.5));
}

.countdown-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.countdown-text {
    font-size: 17px;
    color: var(--gray);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.countdown-text i {
    color: var(--primary-color);
    font-size: 20px;
}

.success-message {
    font-size: 18px;
    color: var(--success-color);
    font-weight: 600;
    margin: 15px 0;
}

/* List Transition */
.list-enter-active,
.list-leave-active {
    transition: all 0.5s ease;
}

.list-enter-from {
    opacity: 0;
    transform: translateY(30px);
}

.list-leave-to {
    opacity: 0;
    transform: scale(0.9);
}

.list-move {
    transition: transform 0.5s ease;
}

/* Product List Transition - Filtreleme Animasyonu */
.product-list-enter-active {
    animation: productSlideIn 0.6s ease-out;
}

.product-list-leave-active {
    animation: productSlideOut 0.4s ease-in;
    position: absolute;
}

.product-list-move {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes productSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes productSlideOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.85) translateY(-20px);
    }
}

/* Hero Background Animation */
.hero-background {
    position: relative;
    overflow: hidden;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: particlesFloat 20s ease-in-out infinite;
}

@keyframes particlesFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Enhanced Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
}

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

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

/* Glassmorphism Effect */
.feature-card,
.security-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
}

/* Icon Animations */
.feature-icon,
.security-card i {
    animation: float 3s ease-in-out infinite;
}

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

/* Mobile Responsiveness for New Elements */
@media (max-width: 768px) {
    .category-filter {
        padding: 15px;
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .filter-btn i {
        font-size: 14px;
    }
    
    .countdown-circle {
        width: 100px;
        height: 100px;
    }
    
    .countdown-number {
        font-size: 38px;
    }
    
    .price-comparison {
        padding: 20px 15px;
    }
    
    .new-price-large .amount.highlight {
        font-size: 28px;
    }
}

/* Page Content Styles */
.page-content {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--light);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--gray);
}

/* Content Grid */
.content-grid {
    display: grid;
    gap: 40px;
}

.content-section {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.content-section h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-section h2 i {
    color: var(--primary-color);
    font-size: 32px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list i {
    color: var(--success-color);
    font-size: 18px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.contact-info-card i {
    font-size: 48px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray);
}

/* Legal Content */
.legal-content {
    background: var(--white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.legal-text h2 {
    font-size: 24px;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-text h2:first-of-type {
    margin-top: 0;
}

.legal-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.legal-text ul,
.legal-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-text li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 12px;
}

.legal-text strong {
    color: var(--dark);
    font-weight: 600;
}

.update-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
    font-size: 14px;
    color: var(--gray);
    text-align: center;
}

/* Mobile Responsiveness for Pages */
@media (max-width: 768px) {
    .page-content {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .content-section {
        padding: 30px 20px;
    }
    
    .content-section h2 {
        font-size: 22px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-text {
        padding: 30px 20px;
    }
    
    .legal-text h2 {
        font-size: 20px;
    }
}

/* Category Filter Buttons */
.category-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--gray-light);
    background: var(--white);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.filter-btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.filter-btn i {
    font-size: 16px;
}

/* Product Category Labels */
.product-category-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-category-label.vps {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.product-category-label.game {
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    color: #7c3aed;
}

/* Old Price Display */
.old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 5px;
}

/* List Transition */
.list-enter-active,
.list-leave-active {
    transition: all 0.5s ease;
}

.list-enter-from {
    opacity: 0;
    transform: translateY(30px);
}

.list-leave-to {
    opacity: 0;
    transform: scale(0.9);
}

/* Enhanced Security Section */
.security-section {
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    z-index: -1;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.security-card {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.security-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.security-card i {
    font-size: 56px;
    color: var(--primary-light);
    margin-bottom: 25px;
    display: block;
}

.security-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.security-card p {
    color: var(--gray-light);
    line-height: 1.8;
}

/* Common Features Section (was Location) */
.location-section {
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.location-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.location-features li {
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: var(--dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
    font-weight: 500;
}

.location-features li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.location-features i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.location-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.location-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.location-visual i {
    font-size: 200px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Modal Enhancements */
.price-comparison {
    background: var(--light);
    border-radius: 16px;
    padding: 25px;
    margin: 25px 0;
}

.old-price-large,
.new-price-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.old-price-large .amount {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 20px;
    font-weight: 600;
}

.new-price-large .amount {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discount-badge-large {
    text-align: center;
    padding: 12px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 12px;
    margin: 15px 0;
    font-size: 18px;
    font-weight: 700;
}

.countdown-display {
    text-align: center;
    padding: 20px 0;
}

.countdown-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.countdown-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.countdown-bg {
    fill: none;
    stroke: var(--light);
    stroke-width: 8;
}

.countdown-progress {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 8;
    stroke-dasharray: 283;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s linear;
}

.countdown-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-text {
    font-size: 18px;
    color: var(--gray);
    font-weight: 500;
}

.success-message {
    font-size: 18px;
    color: var(--success-color);
    font-weight: 500;
    margin: 20px 0;
}


/* Mobile Responsive Improvements */
@media (max-width: 968px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 5px;
        display: none;
    }
    
    .nav-dropdown:hover .dropdown-menu,
    .dropdown-menu.show {
        display: block;
    }
    
    .category-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .product-card {
        min-height: auto;
    }
    
    .location-features {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .security-card {
        padding: 30px 20px;
    }
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle-line {
        font-size: 28px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .category-filter {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .location-features li {
        flex-direction: column;
        text-align: center;
    }
}

/* Ortak Özellikler Section */
.common-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.common-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.common-feature-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.common-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.common-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.common-feature-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.common-feature-item p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(124, 58, 237, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.testimonial-card .stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-card .stars i {
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f1f5f9;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 28px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    padding: 8px;
}

.faq-item:hover .faq-question i {
    background: rgba(99, 102, 241, 0.2);
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 30px 28px;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.9;
    background: linear-gradient(to bottom, rgba(99, 102, 241, 0.02), transparent);
}

.faq-answer p {
    margin: 0;
}

/* FAQ Slide Animation */
.faq-slide-enter-active,
.faq-slide-leave-active {
    transition: all 0.3s ease;
    max-height: 200px;
}

.faq-slide-enter-from,
.faq-slide-leave-to {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Alt Background Section */
.alt-bg {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* Responsive - Ortak Özellikler ve FAQ */
@media (max-width: 768px) {
    .common-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .common-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .common-feature-item {
        padding: 30px 20px;
    }
    
    .common-feature-item h4 {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .common-features-grid {
        grid-template-columns: 1fr;
    }
    
    .common-features-section,
    .faq-section {
        padding: 60px 0;
    }
}

/* İletişim Sayfası */
.contact-section {
    padding: 80px 0;
    background: var(--light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px 0;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.contact-info-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.contact-info-box p {
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.info-list a:hover {
    background: var(--light);
    color: var(--primary-color);
}

.info-list a i {
    width: 20px;
    text-align: center;
}

.contact-social {
    background: var(--gradient);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
}

.contact-social h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* İletişim Formu */
.contact-form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 40px;
    text-align: center;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.form-header p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 16px;
    border: 2px solid var(--success-color);
    animation: slideIn 0.5s ease-out;
}

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

.form-success i {
    font-size: 64px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--gray);
    font-size: 16px;
}

/* Responsive - İletişim Sayfası */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 700px;
        padding: 50px 20px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .hero-small .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 35px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    .btn-hero {
        padding: 15px 32px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-social {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .form-header h2 {
        font-size: 24px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
}

/* ========================================
   HAKKIMIZDA SAYFASI (ABOUT PAGE)
======================================== */

.about-content {
    padding: 60px 0;
}

/* About Story Section */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
    animation: fadeInLeft 0.8s ease-out;
}

.story-image:hover {
    transform: translateY(-8px);
}

.image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(168, 85, 247, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.image-placeholder i {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.25);
    z-index: 1;
}

.story-text {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

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

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

/* Mission & Vision Cards */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.mv-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(168, 85, 247, 0.04) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.25);
}

.mv-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1);
}

.mv-icon i {
    font-size: 45px;
    color: #fff;
}

/* Values Section */
.values-section {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(168, 85, 247, 0.04) 100%);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 18px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(168, 85, 247, 0.06) 100%);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.value-icon i {
    font-size: 40px;
    color: #fff;
}

/* Why VioVM Section */
.why-viovm {
    margin-bottom: 80px;
}

.features-list {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.feature-item {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(168, 85, 247, 0.03) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.25);
}

.feature-number {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-number {
    transform: scale(1.1);
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0;
}

/* CTA Section */
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(168, 85, 247, 0.04) 100%);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 20px;
    padding: 70px 50px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 50px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
    border: none;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.cta-btn-secondary {
    background: transparent;
    color: #a855f7;
    border: 2px solid #7c3aed;
}

.cta-btn-secondary:hover {
    background: rgba(124, 58, 237, 0.1);
    transform: translateY(-3px);
}

/* Responsive - Hakkımızda Sayfası */
@media (max-width: 1024px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision {
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .story-text h2,
    .values-section h2,
    .why-viovm h2,
    .cta-section h2 {
        font-size: 32px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .mv-card {
        padding: 35px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 30px;
    }
    
    .feature-item {
        padding: 25px;
        gap: 20px;
    }
    
    .feature-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .cta-section {
        padding: 60px 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .story-text h2,
    .values-section h2,
    .why-viovm h2,
    .cta-section h2 {
        font-size: 28px;
    }
    
    .story-text p,
    .cta-section p {
        font-size: 16px;
    }
    
    .mv-card {
        padding: 30px;
    }
    
    .mv-card i {
        font-size: 48px;
    }
    
    .mv-card h3 {
        font-size: 26px;
    }
    
    .value-card i {
        font-size: 40px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
}


/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: calc(100vh - 110px); /* Viewport'tan header yüksekliğini çıkar */
    min-height: 600px;
    overflow: hidden;
    background: var(--dark);
    margin-top: 110px; /* Top-bar (39px) + Header padding (30px) + Logo/Nav yüksekliği (28px) + Güvenli boşluk */
    z-index: 1; /* Header'ın altında kalması için */
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px; /* Badge'i header'dan uzak tutar */
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.slide-badge.vps {
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
    color: #7dd3fc;
}

.slide-badge.game {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    color: #fbbf24;
}

.slide-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.slide-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.slide-subtitle strong {
    color: var(--white);
    font-weight: 700;
}

.slide-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.slide-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 20px;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: 30px;
}

.slider-btn-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dots .dot.active {
    background: var(--white);
    width: 36px;
    border-radius: 6px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--gray-light);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.brand-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.brand-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.brand-logo {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.intel-logo {
    color: #0071c5;
}

.brand-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

.brand-card p {
    font-size: 14px;
    color: var(--gray);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 70px;
        min-height: calc(100vh - 70px);
    }
    
    .hero-home {
        padding: 0;
        min-height: 100vh;
    }
    
    .hero-slider {
        min-height: 100vh;
        padding-top: 0;
        margin-top: 0;
    }
    
    .slider-container {
        min-height: 100vh;
    }
    
    .hero-slide {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 60px 20px 40px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 18px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 18px;
        letter-spacing: -0.3px;
    }
    
    .hero-small .hero-title {
        font-size: 32px;
    }
    
    .hero-small .hero-title i {
        font-size: 36px;
        margin-right: 10px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
        line-height: 1.6;
    }
    
    .hero-actions {
        gap: 12px;
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
        max-width: 320px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 36px;
    }
    
    .stat-item {
        padding: 16px 12px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .slider-controls {
        bottom: 80px;
        gap: 16px;
    }
    
    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .slider-dots {
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 24px;
    }
    
    .animated-shapes {
        opacity: 0.3;
    }
    
    .shape {
        filter: blur(30px);
    }
    
    .shape-1 {
        width: 180px;
        height: 180px;
    }
    
    .shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .shape-3 {
        width: 140px;
        height: 140px;
    }
    
    .shape-4 {
        width: 160px;
        height: 160px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Modern Category Filter Styles */
.category-filter-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.filter-btn-modern {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 20px;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.filter-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.filter-btn-modern:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.filter-btn-modern:hover::before {
    transform: scaleX(1);
}

.filter-btn-modern.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
}

.filter-btn-modern.active::before {
    transform: scaleX(1);
}

.filter-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    font-size: 28px;
    color: var(--white);
    transition: var(--transition);
}

.filter-btn-modern:hover .filter-icon {
    transform: scale(1.1) rotate(5deg);
}

.filter-icon.linux {
    background: linear-gradient(135deg, #FCC624 0%, #F7A200 100%);
}

.filter-icon.kurumsal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.filter-icon.reseller {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.filter-icon.eco {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.filter-icon.pro {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.filter-icon.minecraft {
    background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
}

.filter-icon.cs2 {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}

.filter-icon.rust {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.filter-icon.fivem {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.filter-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
}

.filter-count {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    background: var(--light);
    padding: 4px 12px;
    border-radius: 12px;
}

.filter-btn-modern.active .filter-label {
    color: var(--primary-color);
}

.filter-btn-modern.active .filter-count {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive Filter */
@media (max-width: 768px) {
    .category-filter-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .filter-btn-modern {
        padding: 20px 15px;
    }
    
    .filter-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .filter-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .category-filter-modern {
        grid-template-columns: 1fr;
    }
}

/* Filter Image Style */
.filter-image {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.filter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.scroll-to-top,
.status-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.15),
        0 0 0 0 rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.scroll-to-top::before,
.status-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-to-top:hover::before,
.status-button:hover::before {
    opacity: 1;
}

.scroll-to-top i,
.status-button i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.scroll-to-top {
    background: var(--gradient);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px) scale(0.5);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.35),
        0 0 0 8px rgba(99, 102, 241, 0.1);
}

.scroll-to-top:hover i {
    transform: translateY(-3px);
    animation: arrowBounce 0.6s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(-3px); }
    50% { transform: translateY(-8px); }
}

.status-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    animation: statusPulse 2s ease-in-out infinite;
}

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

.status-button:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.4),
        0 0 0 8px rgba(16, 185, 129, 0.1);
}

.status-button:hover i {
    animation: statusSpin 0.6s ease-in-out;
}

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

/* Status Tooltip */
.status-button::after {
    content: 'Server Uptime';
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.status-button:hover::after {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Status Modal */
.status-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
    animation: fadeIn 0.35s ease;
}

.status-modal-content {
    background: var(--white);
    border-radius: 32px;
    max-width: 1200px;
    width: 100%;
    height: 85vh;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(16, 185, 129, 0.1),
        0 30px 60px -12px rgba(0, 0, 0, 0.35),
        0 50px 100px -20px rgba(16, 185, 129, 0.2);
    animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.status-modal-header {
    padding: 25px 30px;
    border-bottom: 2px solid rgba(16, 185, 129, 0.1);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.status-modal-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-modal-header h3 i {
    color: #10b981;
    font-size: 28px;
    animation: statusSpin 2s linear infinite;
}

.status-modal-close {
    background: rgba(15, 23, 42, 0.08);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 20px;
    color: var(--gray);
}

.status-modal-close:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    transform: rotate(90deg) scale(1.1);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.35);
}

.status-modal-body {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-radius: 0 0 32px 32px;
    background: var(--white);
}

.status-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 32px 32px;
}

/* Responsive Floating Buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .scroll-to-top,
    .status-button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .status-button::after {
        font-size: 12px;
        padding: 8px 14px;
        right: 65px;
    }
    
    .status-button:hover::after {
        right: 68px;
    }
    
    .status-modal-content {
        height: 90vh;
        border-radius: 24px;
    }
    
    .status-modal-header {
        padding: 20px;
    }
    
    .status-modal-header h3 {
        font-size: 20px;
    }
    
    .status-modal-header h3 i {
        font-size: 24px;
    }
    
    .status-modal-close {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

.filter-btn-modern:hover .filter-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}
