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

:root {
    /* Eski renk - renk1 olarak saklandı */
    --renk1: #6366f1;
    --renk1-dark: #4f46e5;
    --renk1-secondary: #8b5cf6;
    
    /* Yeni bebek pembe-mavi teması - daha canlı ve pembe */
    --primary-color: #FFB6D9;
    --primary-dark: #FF9BC7;
    --secondary-color: #FFC0E5;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #fff0f8;
    --bg-dark: #1a202c;
    --border-color: #ffd6ec;
    --gradient: linear-gradient(135deg, #FFB6D9 0%, #FFC0E5 50%, #FFD1F0 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(255, 182, 217, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(255, 182, 217, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(255, 182, 217, 0.4);
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --primary-color: #FFB6D9;
    --primary-dark: #FF9BC7;
    --secondary-color: #FFC0E5;
    --text-primary: #f7fafc;
    --text-secondary: #cbd5e0;
    --bg-primary: #1a202c;
    --bg-secondary: #2d3748;
    --bg-dark: #0f1419;
    --border-color: #4a5568;
    --gradient: linear-gradient(135deg, #FFB6D9 0%, #FFC0E5 50%, #FFD1F0 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

/* System Theme Detection - Auto apply dark theme if system prefers dark */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --primary-color: #FFB6D9;
        --primary-dark: #FF9BC7;
        --secondary-color: #FFC0E5;
        --text-primary: #f7fafc;
        --text-secondary: #cbd5e0;
        --bg-primary: #1a202c;
        --bg-secondary: #2d3748;
        --bg-dark: #0f1419;
        --border-color: #4a5568;
        --gradient: linear-gradient(135deg, #FFB6D9 0%, #FFC0E5 50%, #FFD1F0 100%);
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    }
    
    :root:not([data-theme="light"]) body {
        background-color: var(--bg-primary);
        color: var(--text-primary);
    }
}

@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) {
        --text-primary: #2d3748;
        --text-secondary: #718096;
        --bg-primary: #ffffff;
        --bg-secondary: #fff0f8;
        --bg-dark: #1a202c;
        --border-color: #ffd6ec;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 182, 217, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 23, 68, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundShift 20s ease-in-out infinite;
}

/* Mobilde arka plan animasyonunu optimize et */
@media (max-width: 768px) {
    body::before {
        animation: none; /* Mobilde animasyonu kapat (performans için) */
        opacity: 0.7;
    }
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}


[data-theme="dark"] .navbar {
    background: rgba(26, 32, 44, 0.95);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Theme Toggle Button */
.theme-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    background: var(--border-color);
    border: none;
    border-radius: 13px;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
    overflow: hidden;
    z-index: 10;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--primary-color);
}

.theme-toggle-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle svg {
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-primary);
}

.theme-toggle .sun-icon {
    left: 4px;
    opacity: 1;
    transform: translateY(-50%) translateX(0) rotate(0deg);
}

.theme-toggle .moon-icon {
    right: 4px;
    opacity: 0;
    transform: translateY(-50%) translateX(20px) rotate(180deg);
}

/* Dark theme - slider moves right */
[data-theme="dark"] .theme-toggle {
    background: var(--border-color);
}

[data-theme="dark"] .theme-toggle:hover {
    background: var(--primary-color);
}

[data-theme="dark"] .theme-toggle .sun-icon {
    opacity: 0;
    transform: translateY(-50%) translateX(-20px) rotate(-180deg);
}

[data-theme="dark"] .theme-toggle .moon-icon {
    opacity: 1;
    transform: translateY(-50%) translateX(0) rotate(0deg);
}

/* Slider background circle */
.theme-toggle::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .theme-toggle::before {
    transform: translateX(24px);
    background: var(--bg-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-payment-link {
    background: var(--gradient);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.nav-payment-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-payment-link::after {
    display: none;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    transition: background 0.4s ease;
    position: relative;
    z-index: 1;
    margin-top: 0;
    overflow: hidden;
    isolation: isolate;
}

/* Hero Background Paths - Subtle */
.hero-background-paths {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
    overflow: hidden;
}

.hero-paths-svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
    opacity: 0.4;
}

.hero-background-paths path {
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: pathDraw 25s linear infinite;
    will-change: stroke-dasharray, opacity;
}

@keyframes pathDraw {
    0% {
        stroke-dasharray: 0 1000;
        stroke-dashoffset: 0;
        opacity: 0.1;
    }
    10% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        stroke-dasharray: 1000 0;
        stroke-dashoffset: -1000;
        opacity: 0.1;
    }
}

/* Dark mode için paths rengi */
[data-theme="dark"] .hero-background-paths {
    opacity: 0.04;
}

[data-theme="dark"] .hero-paths-svg {
    color: rgba(255, 182, 217, 0.2);
    opacity: 0.3;
}



.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-visual {
        width: 100%;
        max-width: 100%;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: left;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(255, 182, 217, 0.1);
}

@media (max-width: 968px) {
    .hero-title {
        text-align: center;
        font-size: 2.5rem;
    }
}

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

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: left;
    font-weight: 400;
}

@media (max-width: 968px) {
    .hero-subtitle {
        text-align: center;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

@media (max-width: 968px) {
    .hero-buttons {
        justify-content: center;
    }
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    box-sizing: border-box;
    text-align: center;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '✨';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    transition: left 0.3s ease;
    font-size: 1.2rem;
}

.btn-primary:hover::before {
    left: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: var(--shadow-lg);
    }
    50% {
        box-shadow: 0 10px 25px -3px rgba(255, 182, 217, 0.6);
    }
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

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

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(225, 48, 108, 0.4);
    filter: brightness(1.1);
}

.btn-full {
    width: 100%;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: var(--bg-primary);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 500px;
    transition: background 0.4s ease;
}

.url-example {
    display: flex;
    align-items: center;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    border: 2px dashed var(--border-color);
}

.url-base {
    color: var(--text-secondary);
}

.url-custom {
    color: var(--primary-color);
    font-weight: 600;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    background: var(--bg-primary);
}

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

.feature-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Spotlight Card Styles */
.spotlight-card {
    position: relative;
}

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1rem;
    z-index: 1;
}

.spotlight-card:hover {
    border-color: var(--border-color);
}

.spotlight-card .feature-icon,
.spotlight-card .feature-title,
.spotlight-card .feature-description {
    position: relative;
    z-index: 2;
}

.feature-card::before {
    content: '🎄';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

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

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

.feature-card:hover::before {
    opacity: 0.4;
    animation-duration: 1.5s;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    background: var(--bg-secondary);
    transition: background 0.4s ease;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Pricing Particles Canvas */
.pricing-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

/* Pricing Vignette */
.pricing-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(80% 60% at 50% 15%, rgba(255, 182, 217, 0.04), transparent 60%);
    z-index: 0;
}

/* Pricing Container - z-index fix */
.pricing .container {
    position: relative;
    z-index: 2;
}

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

.pricing-category {
    position: relative;
    z-index: 2;
}

.pricing-grid {
    position: relative;
    z-index: 2;
}

.pricing-card {
    position: relative;
    z-index: 2;
}

.pricing-header,
.pricing-title,
.pricing-price,
.pricing-features,
.pricing-card button {
    position: relative;
    z-index: 3;
}

.pricing-badge {
    position: relative;
    z-index: 10;
}

/* Pricing Cards - Clean Load (No buggy animations) */
.pricing-card {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
}

.pricing-category {
    margin-bottom: 4rem;
}

.pricing-category:last-child {
    margin-bottom: 0;
}

.pricing-category-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    transition: color 0.4s ease;
    position: relative;
}


/* Pricing Toggle - Yeni Modern Tasarım */
.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.pricing-toggle {
    position: relative;
    width: 480px;
    height: 56px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    -webkit-tap-highlight-color: transparent;
    touch-action: pan-y;
}

.pricing-toggle:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 182, 217, 0.15);
}

[data-theme="dark"] .pricing-toggle {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .pricing-toggle:hover {
    border-color: var(--primary-color);
}

.pricing-toggle-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0;
}

.pricing-option {
    position: relative;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    z-index: 2;
    border-radius: 12px;
}

.pricing-toggle[data-selected="website"] .pricing-option[data-option="website"],
.pricing-toggle[data-selected="domain"] .pricing-option[data-option="domain"],
.pricing-toggle[data-selected="bot"] .pricing-option[data-option="bot"] {
    color: white;
}

/* Slider background - Modern pill shape */
.pricing-toggle::before {
    content: '';
    position: absolute;
    width: calc(33.333% - 2.67px);
    height: calc(100% - 8px);
    background: var(--gradient);
    border-radius: 12px;
    top: 4px;
    left: 4px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(255, 182, 217, 0.3);
}

.pricing-toggle.dragging::before {
    transition: none;
}

.pricing-toggle.dragging {
    cursor: grabbing;
}

/* Slider positions for 3 options */
.pricing-toggle[data-selected="domain"]::before {
    transform: translateX(0);
}

.pricing-toggle[data-selected="website"]::before {
    transform: translateX(calc(100% + 4px));
}

.pricing-toggle[data-selected="bot"]::before {
    transform: translateX(calc(200% + 8px));
}

.pricing-toggle.dragging::before {
    transform: translateX(calc(var(--slider-translate, 0px)));
}

/* Hide/show pricing categories */
.pricing-category {
    opacity: 1;
    max-height: none;
    overflow: visible;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(0);
}

/* Default: show website, hide others */
.pricing-category[data-pricing-type="domain"],
.pricing-category[data-pricing-type="bot"] {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-category[data-pricing-type="website"] {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* When website is selected */
.pricing[data-selected="website"] .pricing-category[data-pricing-type="website"] {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.pricing[data-selected="website"] .pricing-category[data-pricing-type="domain"],
.pricing[data-selected="website"] .pricing-category[data-pricing-type="bot"] {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

/* When domain is selected */
.pricing[data-selected="domain"] .pricing-category[data-pricing-type="domain"] {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.pricing[data-selected="domain"] .pricing-category[data-pricing-type="website"],
.pricing[data-selected="domain"] .pricing-category[data-pricing-type="bot"] {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

/* When bot is selected */
.pricing[data-selected="bot"] .pricing-category[data-pricing-type="bot"] {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.pricing[data-selected="bot"] .pricing-category[data-pricing-type="website"],
.pricing[data-selected="bot"] .pricing-category[data-pricing-type="domain"] {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    align-items: start;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: 1rem;
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: visible;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-height: fit-content;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 182, 217, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: cardBackgroundShift 15s ease infinite;
    opacity: 1 !important;
    transform: translateY(0) !important;
    z-index: 2;
    backdrop-filter: blur(10px);
}

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

.pricing-card::before {
    content: '✨';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.25rem;
    opacity: 0.3;
    animation: sparkle 2s ease-in-out infinite;
    z-index: 1;
}

.pricing-card::after {
    content: '🎁';
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 1.25rem;
    opacity: 0.3;
    animation: sparkle 2.5s ease-in-out infinite;
    animation-delay: 1s;
    z-index: 1;
}

/* Duplicate background removed - already defined in main .pricing-card rule above */

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

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

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 182, 217, 0.3), 0 0 30px rgba(255, 107, 157, 0.2);
    border-color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card.featured:hover {
    transform: translateY(-5px);
}

.pricing-card:hover::before,
.pricing-card:hover::after {
    opacity: 0.6;
    animation-duration: 1s;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0.3;
    animation: border-glow 3s ease-in-out infinite;
}

@keyframes border-glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.pricing-card.featured .btn-primary {
    animation: pulse-glow 2s ease-in-out infinite;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 182, 217, 0.4);
    letter-spacing: 0.5px;
}

/* Badge çakışmasını önle */
.pricing-card.featured .pricing-badge {
    z-index: 3;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    word-break: break-word;
    white-space: normal;
    line-height: 1.3;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    width: 100%;
    min-width: 0;
    padding: 0 1.5rem;
    box-sizing: border-box;
    overflow: visible;
    margin: 0 auto;
}

.price-old {
    font-size: 1.25rem;
    font-weight: 500;
    color: #dc2626;
    text-decoration: line-through;
    opacity: 0.8;
    position: relative;
    display: inline-block;
}

.price-old::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    transform: translateY(-50%);
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: keep-all;
    white-space: nowrap;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(255, 182, 217, 0.2);
}

@media (max-width: 768px) {
    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .price-amount {
        font-size: 2rem;
        white-space: normal;
        word-break: break-word;
    }
}

.price-amount.price-special {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 1.4;
    text-align: center;
    width: 100%;
    max-width: 100%;
    display: block;
    padding: 0 1rem;
    box-sizing: border-box;
    margin: 0 auto 1rem auto;
    word-break: break-word;
    overflow-wrap: break-word;
}

.price-period {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-card .btn {
    margin-top: auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* Examples Section with Toggle */
.examples-section {
    background: var(--bg-primary);
    transition: background 0.4s ease;
    overflow: visible; /* Allow cards to move up on hover */
    padding: 80px 0;
}

/* Examples Toggle - Yeni Modern Tasarım */
.examples-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.examples-toggle {
    position: relative;
    width: 360px;
    height: 56px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    -webkit-tap-highlight-color: transparent;
    touch-action: pan-y;
}

.examples-toggle:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 182, 217, 0.15);
}

[data-theme="dark"] .examples-toggle {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .examples-toggle:hover {
    border-color: var(--primary-color);
}

.examples-toggle-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0;
}

.examples-option {
    position: relative;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    z-index: 2;
    border-radius: 12px;
}

.examples-toggle[data-selected="domains"] .examples-option[data-option="domains"],
.examples-toggle[data-selected="websites"] .examples-option[data-option="websites"] {
    color: white;
}

/* Examples toggle slider background - Modern pill shape */
.examples-toggle::before {
    content: '';
    position: absolute;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--gradient);
    border-radius: 12px;
    top: 4px;
    left: 4px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(255, 182, 217, 0.3);
}

.examples-toggle[data-selected="websites"]::before {
    transform: translateX(calc(100% + 4px));
}

.examples-toggle.dragging::before {
    transition: none;
}

.examples-toggle.dragging {
    cursor: grabbing;
}

.examples-toggle.dragging::before {
    transform: translateX(calc(var(--slider-translate, 0px)));
}

/* Examples containers */
.examples-container {
    opacity: 1;
    max-height: 2000px;
    overflow: visible;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(0);
    padding: 20px 0; /* Add padding to prevent clipping on hover */
}

.examples-disclaimer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    font-style: italic;
    display: block;
}

.examples-container[data-examples-type="websites"] .examples-disclaimer {
    display: none;
}

.examples-container[data-examples-type="websites"] {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.examples-container[data-examples-type="domains"] {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.examples-section[data-selected="websites"] .examples-container[data-examples-type="websites"] {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.examples-section[data-selected="websites"] .examples-container[data-examples-type="domains"] {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.examples-section[data-selected="domains"] .examples-container[data-examples-type="domains"] {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.examples-section[data-selected="domains"] .examples-container[data-examples-type="websites"] {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

/* Examples Section */
.examples {
    background: var(--bg-primary);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 10px 0; /* Extra padding for hover effect */
}

.example-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.example-card::before {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.25rem;
    opacity: 0.2;
    animation: sparkle 2s ease-in-out infinite;
}

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

.example-card:hover::before {
    opacity: 0.5;
    animation-duration: 1s;
}

.example-url {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.example-link-icon {
    font-size: 1.25rem;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.example-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.example-link::after {
    content: '↗';
    margin-left: 0.5rem;
    font-size: 0.875rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.example-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.example-link:hover::after {
    opacity: 1;
    transform: translate(3px, -3px);
}

.example-card:hover .example-link-icon {
    animation-duration: 1s;
}

.example-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Website Examples Section */
.website-examples {
    background: var(--bg-primary);
    transition: background 0.4s ease;
}

.website-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 10px 0; /* Extra padding for hover effect */
}

.website-example-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.website-example-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.website-url {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.website-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
}

/* Contact form removed - using WhatsApp only */

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 2rem 0;
    transition: background 0.4s ease;
}

[data-theme="dark"] .footer {
    background: var(--bg-dark);
}

[data-theme="light"] .footer {
    background: var(--bg-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-brand .logo-text {
    font-size: 1.25rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

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

    .hero-buttons {
        justify-content: center;
        align-items: stretch;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        margin: 0;
        text-align: center;
        display: block;
    }

    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 60px;
        min-height: auto;
    }

    .hero .container {
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

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

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

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

    .nav-links {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        margin: 0;
        text-align: center;
        display: block;
        box-sizing: border-box;
    }

    .features-grid,
    .pricing-grid,
    .examples-grid,
    .website-examples-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        display: grid;
        width: 100%;
    }
    
    .pricing-category {
        overflow: visible;
        max-height: none;
    }

    .feature-card,
    .pricing-card,
    .example-card,
    .website-example-card {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.75rem;
    }
    
    .price-amount.price-special {
        font-size: 1.5rem;
        line-height: 1.4;
        text-align: center;
        width: 100%;
        max-width: 100%;
        display: block;
        padding: 0 1rem;
        box-sizing: border-box;
        margin: 0 auto 1rem auto;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .pricing {
        padding-bottom: 8rem;
        padding-top: 2rem;
    }
    
    .pricing-category {
        margin-bottom: 3rem;
    }
    
    .pricing-price {
        gap: 0.3rem;
        padding: 0 1rem;
        width: 100%;
        overflow: visible;
        margin: 0 auto;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        overflow: visible;
        width: 100%;
        min-height: auto;
    }
    
    .pricing-features {
        margin-bottom: 1.5rem;
    }
    
    .pricing-features li {
        padding: 0.6rem 0;
    }

    .pricing-toggle-wrapper,
    .examples-toggle-wrapper {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }

    .pricing-toggle,
    .examples-toggle {
        width: 95%;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }


    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer {
        padding: 1.5rem 0;
    }

    .footer-brand .logo-text {
        font-size: 1.1rem;
    }

    .footer-brand p {
        font-size: 0.8rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

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

    .section-subtitle {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
        max-width: 100%;
        display: block;
        box-sizing: border-box;
    }

    .hero-buttons .btn {
        padding: 0.875rem 1.25rem;
        width: 100%;
        max-width: 100%;
        margin: 0;
        text-align: center;
        display: block;
        box-sizing: border-box;
    }

    .hero-buttons {
        gap: 0.75rem;
        align-items: stretch;
        width: 100%;
    }
    
    .pricing-toggle {
        width: 100%;
        height: 50px;
        font-size: 0.8rem;
    }
    
    .examples-toggle {
        width: 100%;
        height: 50px;
        font-size: 0.8rem;
    }
    
    .pricing-option,
    .examples-option {
        font-size: 0.8rem;
        padding: 0 0.5rem;
    }

    .feature-card,
    .pricing-card,
    .example-card,
    .website-example-card {
        padding: 1.25rem;
    }
    
    .example-url {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .example-link-icon {
        font-size: 1.1rem;
    }
    
    .example-link::after {
        margin-left: 0.3rem;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .pricing-title {
        font-size: 1.25rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
    
    .price-amount.price-special {
        font-size: 1.75rem;
        line-height: 1.4;
        text-align: center;
        width: 100%;
        max-width: 100%;
        display: block;
        padding: 0 0.5rem;
        box-sizing: border-box;
        margin: 0 auto 1.5rem auto;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .pricing {
        padding-bottom: 1rem;
        padding-top: 3rem;
    }
    
    .pricing-category {
        margin-bottom: 3rem;
    }
    
    .pricing-price {
        gap: 0.25rem;
        padding: 0 1rem;
        width: 100%;
        overflow: visible;
        margin: 0 auto 1.5rem auto;
    }
    
    .pricing-card {
        padding: 2.5rem 1.5rem 2.5rem 1.5rem;
        overflow: visible;
        width: 100%;
        min-height: fit-content;
        margin-bottom: 2rem;
        border: 2px solid var(--border-color);
        display: flex;
        flex-direction: column;
    }
    
    .pricing-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-price {
        gap: 0.5rem;
        padding: 0 0.5rem;
        width: 100%;
        overflow: visible;
        margin: 0 auto 2rem auto;
    }
    
    .price-amount {
        font-size: 2.25rem;
    }
    
    .price-amount.price-special {
        font-size: 1.75rem;
        margin: 0 auto 1rem auto;
    }
    
    .price-period {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    
    .pricing-features {
        margin-bottom: 5rem;
        padding: 0;
        flex-grow: 0;
    }
    
    .pricing-features li {
        padding: 0.75rem 0;
        font-size: 0.95rem;
        padding-left: 1.75rem;
    }
    
    .pricing-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .pricing-card .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        display: block;
        margin-top: auto;
        margin-bottom: 0;
        box-sizing: border-box;
        font-weight: 600;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }

    .container {
        padding: 0 15px;
    }

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

    section {
        padding: 50px 0;
    }


    .visual-card {
        padding: 1.5rem;
    }

    .url-example {
        font-size: 1rem;
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav-content {
        padding: 0.75rem 0;
    }

    .theme-toggle {
        width: 45px;
        height: 24px;
        z-index: 10;
        flex-shrink: 0;
    }

    .theme-toggle svg {
        width: 14px;
        height: 14px;
    }

    .theme-toggle .sun-icon {
        left: 4px;
        transform: translateY(-50%) translateX(0) rotate(0deg) !important;
    }

    .theme-toggle .moon-icon {
        right: 4px;
        transform: translateY(-50%) translateX(0) rotate(180deg) !important;
    }

    .theme-toggle::before {
        width: 18px;
        height: 18px;
        top: 3px;
        left: 3px;
    }

    [data-theme="dark"] .theme-toggle::before {
        transform: translateX(21px);
    }

    [data-theme="dark"] .theme-toggle .sun-icon {
        opacity: 0 !important;
        transform: translateY(-50%) translateX(-12px) rotate(-180deg) !important;
    }

    .theme-toggle .moon-icon {
        opacity: 0 !important;
        transform: translateY(-50%) translateX(12px) rotate(180deg) !important;
    }

    [data-theme="dark"] .theme-toggle .moon-icon {
        opacity: 1 !important;
        transform: translateY(-50%) translateX(0) rotate(0deg) !important;
    }

    .logo {
        z-index: 10;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.25rem;
    }

    .theme-toggle {
        width: 45px;
        height: 24px;
        z-index: 10;
        flex-shrink: 0;
    }

    .theme-toggle svg {
        width: 14px;
        height: 14px;
    }

    .theme-toggle .sun-icon {
        left: 4px;
        transform: translateY(-50%) translateX(0) rotate(0deg) !important;
    }

    .theme-toggle .moon-icon {
        right: 4px;
        transform: translateY(-50%) translateX(0) rotate(180deg) !important;
    }

    .theme-toggle::before {
        width: 18px;
        height: 18px;
        top: 3px;
        left: 3px;
    }

    [data-theme="dark"] .theme-toggle::before {
        transform: translateX(21px);
    }

    [data-theme="dark"] .theme-toggle .sun-icon {
        opacity: 0 !important;
        transform: translateY(-50%) translateX(-12px) rotate(-180deg) !important;
    }

    .theme-toggle .moon-icon {
        opacity: 0 !important;
        transform: translateY(-50%) translateX(12px) rotate(180deg) !important;
    }

    [data-theme="dark"] .theme-toggle .moon-icon {
        opacity: 1 !important;
        transform: translateY(-50%) translateX(0) rotate(0deg) !important;
    }

    .logo {
        z-index: 10;
    }
}

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

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

.feature-card,
.pricing-card,
.example-card,
.website-example-card {
    animation: fadeInUp 0.6s ease-out;
}

/* WhatsApp Floating Button */
.whatsapp-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bounce 2s ease-in-out infinite;
}

/* WhatsApp Notification */
.whatsapp-notification {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 182, 217, 0.25) 0%, rgba(255, 192, 229, 0.25) 100%);
    backdrop-filter: blur(20px);
    color: var(--primary-color);
    padding: 0.875rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 6px 25px rgba(255, 182, 217, 0.4), 0 0 20px rgba(255, 182, 217, 0.2);
    animation: notificationBlink 4s ease-in-out infinite;
    pointer-events: none;
    border: 2px solid rgba(255, 182, 217, 0.5);
    letter-spacing: 0.3px;
}

.notification-text {
    display: inline-block;
    animation: textPulse 4s ease-in-out infinite;
}

@keyframes notificationBlink {
    0% {
        opacity: 0;
        transform: translateX(20px) scale(0.8);
    }
    2% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    48% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    50% {
        opacity: 0;
        transform: translateX(20px) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translateX(20px) scale(0.8);
    }
}

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

.whatsapp-button {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(37, 211, 102, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #25D366;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.whatsapp-button:hover {
    background: rgba(37, 211, 102, 0.4);
    border-color: rgba(37, 211, 102, 0.7);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transform: scale(1.05);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: relative;
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 1;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 182, 217, 0.25);
    animation: pulse-text 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
    height: fit-content;
    line-height: 1.4;
}

@keyframes pulse-text {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 4px 12px rgba(255, 182, 217, 0.25);
    }
    50% {
        opacity: 0.95;
        box-shadow: 0 6px 16px rgba(255, 182, 217, 0.35);
    }
}

.whatsapp-tooltip::after {
    display: none;
}

.whatsapp-button:hover {
    animation: bounce 0.6s ease, pulse 2s infinite;
}

/* Instagram Floating Button */
.instagram-wrapper {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 999;
}

.instagram-button {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: bounce 2s ease-in-out infinite;
}

.instagram-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
    animation: none;
}

.instagram-button svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-5px);
    }
}

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-wrapper {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .whatsapp-notification {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .instagram-wrapper {
        bottom: 80px;
        right: 15px;
    }
    
    .instagram-button {
        width: 56px;
        height: 56px;
    }
    
    .instagram-button svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-wrapper {
        bottom: 12px;
        right: 12px;
    }

    .whatsapp-button {
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-button svg {
        width: 26px;
        height: 26px;
    }
    
    .instagram-wrapper {
        bottom: 75px;
        right: 12px;
    }
    
    .instagram-button {
        width: 52px;
        height: 52px;
    }
    
    .instagram-button svg {
        width: 26px;
        height: 26px;
    }
}

/* Discount Banner */
/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 2px solid var(--primary-color);
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.5;
    min-width: 200px;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

[data-theme="dark"] .cookie-banner {
    background: var(--bg-primary);
    border-bottom-color: var(--primary-color);
}

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .newyear-banner-content {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.75rem 10px;
    }
}

.newyear-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

.newyear-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
    flex-shrink: 0;
    min-width: 0;
}

.newyear-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    line-height: 1.2;
}

.newyear-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    white-space: normal;
    line-height: 1.3;
    max-width: 100%;
    word-wrap: break-word;
}

/* Countdown timer - sadece banner içinde görünsün */
.countdown-timer {
    display: none; /* Varsayılan olarak gizli */
}

.newyear-banner .countdown-timer {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    flex-wrap: nowrap;
    justify-content: center;
    white-space: nowrap;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

/* Hero section içindeki countdown timer'ı tamamen gizle */
.hero .countdown-timer,
.hero-content .countdown-timer,
.hero-visual .countdown-timer,
section.hero .countdown-timer,
section#home .countdown-timer,
.hero .countdown-item,
.hero .countdown-number,
.hero .countdown-label,
.hero .countdown-separator {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

@media (max-width: 968px) {
    .newyear-banner .countdown-timer {
        flex-wrap: nowrap;
        width: auto;
        max-width: none;
        flex: 0 0 auto;
    }
}

@media (max-width: 480px) {
    .newyear-banner .countdown-timer {
        flex-wrap: nowrap;
        width: auto;
        max-width: 100%;
        padding: 0.4rem 0.5rem;
    }
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
    animation: pulse 1s infinite;
}

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

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: blink 1s infinite;
}

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

/* Snowflakes Animation - Noel Teması */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.snowflake {
    position: absolute;
    top: -10px;
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: snowfall linear infinite;
    opacity: 0.8;
}

.snowflake:nth-child(1) {
    left: 10%;
    animation-duration: 10s;
    animation-delay: 0s;
    font-size: 1rem;
}

.snowflake:nth-child(2) {
    left: 20%;
    animation-duration: 12s;
    animation-delay: 1s;
    font-size: 1.25rem;
}

.snowflake:nth-child(3) {
    left: 30%;
    animation-duration: 11s;
    animation-delay: 0.5s;
    font-size: 1.5rem;
}

.snowflake:nth-child(4) {
    left: 40%;
    animation-duration: 13s;
    animation-delay: 1.5s;
    font-size: 1rem;
}

.snowflake:nth-child(5) {
    left: 50%;
    animation-duration: 10s;
    animation-delay: 0.2s;
    font-size: 1.35rem;
}

.snowflake:nth-child(6) {
    left: 60%;
    animation-duration: 12s;
    animation-delay: 0.8s;
    font-size: 1.15rem;
}

.snowflake:nth-child(7) {
    left: 70%;
    animation-duration: 11s;
    animation-delay: 1.2s;
    font-size: 1.4rem;
}

.snowflake:nth-child(8) {
    left: 80%;
    animation-duration: 13s;
    animation-delay: 0.4s;
    font-size: 1.1rem;
}

.snowflake:nth-child(9) {
    left: 15%;
    animation-duration: 14s;
    animation-delay: 2s;
    font-size: 1.3rem;
}

.snowflake:nth-child(10) {
    left: 25%;
    animation-duration: 10s;
    animation-delay: 1.8s;
    font-size: 1.2rem;
}

.snowflake:nth-child(11) {
    left: 35%;
    animation-duration: 12s;
    animation-delay: 0.6s;
    font-size: 1.45rem;
}

.snowflake:nth-child(12) {
    left: 45%;
    animation-duration: 11s;
    animation-delay: 1.3s;
    font-size: 1.05rem;
}

.snowflake:nth-child(13) {
    left: 55%;
    animation-duration: 13s;
    animation-delay: 0.9s;
    font-size: 1.25rem;
}

.snowflake:nth-child(14) {
    left: 65%;
    animation-duration: 10s;
    animation-delay: 1.5s;
    font-size: 1.35rem;
}

.snowflake:nth-child(15) {
    left: 75%;
    animation-duration: 12s;
    animation-delay: 0.3s;
    font-size: 1.15rem;
}

@keyframes snowfall {
    0% {
        transform: translateY(-100vh) translateX(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(20px) rotate(360deg);
        opacity: 0;
    }
}

/* Confetti Animation */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FF1744;
    top: -10px;
    opacity: 0.8;
    animation: confettiFall linear infinite;
}

.confetti:nth-child(1) {
    left: 10%;
    animation-duration: 3s;
    animation-delay: 0s;
    background: #FF1744;
}

.confetti:nth-child(2) {
    left: 20%;
    animation-duration: 4s;
    animation-delay: 0.5s;
    background: #FFB6D9;
}

.confetti:nth-child(3) {
    left: 30%;
    animation-duration: 3.5s;
    animation-delay: 1s;
    background: #FFC0E5;
}

.confetti:nth-child(4) {
    left: 40%;
    animation-duration: 4.5s;
    animation-delay: 1.5s;
    background: #FFD1F0;
}

.confetti:nth-child(5) {
    left: 50%;
    animation-duration: 3s;
    animation-delay: 0.2s;
    background: #FF1744;
}

.confetti:nth-child(6) {
    left: 60%;
    animation-duration: 4s;
    animation-delay: 0.7s;
    background: #FFB6D9;
}

.confetti:nth-child(7) {
    left: 70%;
    animation-duration: 3.5s;
    animation-delay: 1.2s;
    background: #FFC0E5;
}

.confetti:nth-child(8) {
    left: 80%;
    animation-duration: 4.5s;
    animation-delay: 1.7s;
    background: #FFD1F0;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* New Year Hero Styles */
.newyear-hero {
    position: relative;
    background: linear-gradient(180deg, 
        rgba(255, 182, 217, 0.05) 0%, 
        rgba(255, 192, 229, 0.03) 50%, 
        rgba(209, 28, 41, 0.02) 100%);
    z-index: 1;
    overflow: hidden;
}

/* New Year Sections - Tüm bölümlere Noel teması */
.newyear-section {
    position: relative;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 240, 248, 0.95) 100%);
    overflow: hidden;
}

@media (max-width: 768px) {
    .newyear-section {
        overflow-x: hidden;
    }
    
    .newyear-section .snowflakes {
        overflow: hidden;
    }
}

[data-theme="dark"] .newyear-section {
    background: linear-gradient(180deg, 
        rgba(26, 32, 44, 0.98) 0%, 
        rgba(45, 55, 72, 0.95) 100%);
}

.newyear-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF1744 0%, #FFB6D9 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.4);
    animation: glow 2s infinite alternate;
}

/* Contact section için de Noel teması */
#contact.newyear-section {
    background: linear-gradient(180deg, 
        rgba(255, 240, 248, 0.95) 0%, 
        rgba(255, 255, 255, 0.98) 100%);
}




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

.discount-modal-date {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .newyear-banner {
        padding: 0.75rem 0;
    }
    
    .newyear-banner-content {
        flex-direction: row;
        gap: 0.6rem;
        padding: 0.75rem 10px;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .newyear-icon {
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .newyear-text {
        flex: 0 1 auto;
        min-width: 140px;
        max-width: 180px;
        padding: 0 3px;
    }
    
    .newyear-title {
        font-size: 0.8rem;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
    }
    
    .newyear-subtitle {
        font-size: 0.6rem;
        text-align: center;
        white-space: normal;
        padding: 0;
        line-height: 1.2;
    }
    
    .newyear-banner .countdown-timer {
        flex: 0 0 auto;
        padding: 0.5rem 0.75rem;
        gap: 0.25rem;
        flex-wrap: nowrap;
        width: auto;
        max-width: none;
        order: 3;
    }
    
    .newyear-banner .countdown-item {
        min-width: 30px;
    }
    
    .newyear-banner .countdown-number {
        font-size: 0.9rem;
    }
    
    .newyear-banner .countdown-label {
        font-size: 0.5rem;
    }
    
    .newyear-banner .countdown-separator {
        font-size: 0.7rem;
        padding: 0 0.03rem;
    }
    
    .countdown-timer {
        padding: 0.5rem 0.75rem;
        gap: 0.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 40px;
    }
    
    .countdown-number {
        font-size: 1.1rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .countdown-separator {
        font-size: 0.9rem;
    }
    
    .newyear-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        text-align: center;
        display: block;
        margin: 0 auto 1rem;
    }
    
    
    /* Adjust navbar position on mobile when banner is present */
    /* Adjust hero padding on mobile when banner is present */
    body.has-newyear-banner .hero {
        padding-top: 110px;
    }
    
    /* Snowflakes optimizasyonu - mobilde daha az kar tanesi */
    .snowflakes .snowflake {
        font-size: 0.8rem;
    }
    
    .snowflakes .snowflake:nth-child(n+10) {
        display: none; /* Mobilde sadece 9 kar tanesi göster */
    }
    
    /* Confetti optimizasyonu - mobilde daha az */
    .confetti-container .confetti {
        width: 6px;
        height: 6px;
    }
    
    .confetti-container .confetti:nth-child(n+6) {
        display: none; /* Mobilde sadece 5 confetti */
    }
    
    /* Modal mobil optimizasyonu */
    .newyear-modal::before,
    .newyear-modal::after {
        font-size: 3rem;
        opacity: 0.05;
    }
    
    /* Feature card dekorasyonları mobilde küçült */
    .feature-card::before {
        font-size: 1.2rem;
        top: 8px;
        right: 8px;
    }
    
    /* Pricing card dekorasyonları mobilde küçült */
    .pricing-card::before,
    .pricing-card::after {
        font-size: 1rem;
    }
    
    /* Yılbaşı badge mobil optimizasyonu */
    .newyear-special-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
        top: -10px;
        right: 10px;
        white-space: normal;
        line-height: 1.2;
        max-width: 120px;
        text-align: center;
    }
    
    .pricing-card.featured .newyear-special-badge {
        top: 30px;
        right: 10px;
        max-width: 130px;
    }
    
    .pricing-title {
        font-size: 1.25rem;
        word-break: break-word;
        line-height: 1.3;
    }
    
    .pricing-price {
        padding: 0 0.5rem;
    }
    
    .price-old {
        font-size: 1.1rem;
    }
    
    .price-period {
        font-size: 0.75rem;
        text-align: center;
        padding: 0 0.5rem;
    }
    
    
    .pricing-category-title {
        font-size: 1.5rem;
    }
}

/* Çok küçük ekranlar için ek optimizasyonlar (480px ve altı) */
@media (max-width: 480px) {
    .newyear-banner {
        padding: 0.5rem 0;
    }
    
    .newyear-banner-content {
        gap: 0.5rem;
        padding: 0.5rem 8px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    
    .newyear-icon {
        font-size: 1.2rem;
        order: 1;
    }
    
    .newyear-text {
        order: 2;
        min-width: 120px;
        max-width: 150px;
    }
    
    .newyear-title {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .newyear-subtitle {
        font-size: 0.55rem;
        line-height: 1.1;
    }
    
    .newyear-banner .countdown-timer {
        order: 3;
    }
    
    .newyear-banner .countdown-timer {
        padding: 0.4rem 0.5rem;
        gap: 0.15rem;
        flex-wrap: nowrap;
        width: auto;
        max-width: 100%;
        flex: 0 0 auto;
    }
    
    .newyear-banner .countdown-item {
        min-width: 28px;
    }
    
    .newyear-banner .countdown-number {
        font-size: 0.85rem;
    }
    
    .newyear-banner .countdown-label {
        font-size: 0.45rem;
    }
    
    .newyear-banner .countdown-separator {
        font-size: 0.7rem;
        padding: 0;
    }
    
    .newyear-text {
        order: 2;
        min-width: 120px;
        max-width: 150px;
    }
    
    .newyear-banner .countdown-timer {
        order: 3;
    }
    
    body.has-newyear-banner .navbar {
        top: 50px;
    }
    
    body.has-newyear-banner .hero {
        padding-top: 130px;
    }
    
    /* Çok küçük ekranlarda daha az kar tanesi */
    .snowflakes .snowflake:nth-child(n+7) {
        display: none; /* Sadece 6 kar tanesi */
    }
    
    .snowflakes .snowflake {
        font-size: 0.7rem;
    }
    
    /* Confetti daha da azalt */
    .confetti-container .confetti:nth-child(n+4) {
        display: none; /* Sadece 3 confetti */
    }
    
    .confetti-container .confetti {
        width: 4px;
        height: 4px;
    }
    
    /* Modal küçük ekranlar için */
    .newyear-modal::before,
    .newyear-modal::after {
        font-size: 2rem;
    }
    
    /* Feature ve pricing kartları için ek küçültme */
    .feature-card::before {
        font-size: 1rem;
    }
    
    .pricing-card::before,
    .pricing-card::after {
        font-size: 0.85rem;
    }
    
    /* Yılbaşı badge çok küçük ekranlar */
    .newyear-special-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.6rem;
        top: -8px;
        right: 8px;
    }
    
    .pricing-card.featured .newyear-special-badge {
        top: 25px;
        right: 8px;
    }
    
    
    .pricing-category-title {
        font-size: 1.25rem;
    }
}

/* Discount Modal */
.discount-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    padding: 1rem;
}

.discount-modal.hidden {
    display: none;
}

.discount-modal-content {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    max-width: 450px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-color);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.discount-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.discount-modal-close:hover {
    color: var(--primary-color);
    background: rgba(255, 182, 217, 0.1);
    transform: rotate(90deg);
}

.discount-modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.discount-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.discount-modal-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.discount-modal-btn {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 182, 217, 0.3);
}

.discount-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 182, 217, 0.4);
}

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

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

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

[data-theme="dark"] .discount-modal-content {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
}

[data-theme="dark"] .discount-modal-title {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .discount-modal-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .discount-modal-icon {
        font-size: 3rem;
    }
    
    .discount-modal-title {
        font-size: 1.5rem;
    }
    
    .discount-modal-text {
        font-size: 1rem;
    }
    
    .discount-modal-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: var(--bg-primary);
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10001;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    animation: slideUp 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.modal-description {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-buttons .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-method-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.payment-method-btn:hover {
    border-color: var(--primary-color);
    background: rgba(255, 182, 217, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.payment-method-btn:active {
    transform: translateY(0);
}

.payment-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

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

.construction-notice {
    background: rgba(255, 182, 217, 0.1);
    border: 2px dashed var(--primary-color);
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.construction-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.coming-soon-message {
    background: rgba(255, 182, 217, 0.1);
    border: 2px dashed var(--primary-color);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.coming-soon-text {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

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

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-buttons .btn {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
}

/* Payment System Styles */
.promo-code-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 0.75rem;
    border: 2px solid var(--border-color);
}

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

.promo-input-group {
    display: flex;
    gap: 0.75rem;
}

.promo-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: border-color 0.3s;
}

.promo-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.promo-message {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.price-summary {
    background: var(--bg-primary);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 2px solid var(--border-color);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

.total-row {
    font-weight: 700;
    font-size: 1.125rem;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--primary-color);
}

.price-amount-final {
    color: var(--text-primary);
    font-weight: 600;
}

.discount-amount {
    color: #10b981;
    font-weight: 600;
}

.total-amount {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-method-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    width: 100%;
}

.payment-method-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.payment-method-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.payment-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.payment-info {
    flex: 1;
}

.payment-info h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.payment-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.payment-status {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.payment-status.active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.payment-status.maintenance {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.payment-details {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 0.75rem;
    border: 2px solid var(--primary-color);
}

.payment-details h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.crypto-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.crypto-address {
    display: flex;
    gap: 0.75rem;
    margin: 1rem 0;
}

.crypto-address input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.crypto-note {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 0.5rem;
    color: var(--text-primary);
    margin: 1rem 0;
}

.crypto-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.plan-info-section {
    background: var(--bg-primary);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border-color);
}

.plan-info-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.plan-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.plan-detail-row span:first-child {
    color: var(--text-secondary);
}

.plan-detail-row span:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .promo-input-group {
        flex-direction: column;
    }
    
    .payment-method-btn {
        padding: 1rem;
    }
    
    .payment-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .crypto-address {
        flex-direction: column;
    }
    
    .crypto-actions {
        flex-direction: column;
    }
    
    .crypto-actions .btn {
        width: 100%;
    }
}

