/* =====================
   CSS RESET & BASE 
   ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E76D89;
    --secondary: #F4A6BA;
    --accent: #FFB4C8;
    --dark: #521630;
    --light: #FFF8F9;
    --gradient-1: linear-gradient(135deg, #E76D89 0%, #F4A6BA 50%, #FFB4C8 100%);
    --gradient-2: linear-gradient(135deg, #FFB4C8 0%, #E76D89 100%);
    --gradient-3: linear-gradient(135deg, rgba(231, 109, 137, 0.1) 0%, rgba(255, 180, 200, 0.1) 100%);
    --shadow-sm: 0 2px 8px rgba(231, 109, 137, 0.1);
    --shadow-md: 0 4px 16px rgba(231, 109, 137, 0.15);
    --shadow-lg: 0 8px 32px rgba(231, 109, 137, 0.2);
}

html {
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: linear-gradient(180deg, 
        #FFE5EC 0%, 
        #FFE3EA 5%,
        #FFE1E8 10%,
        #FFDFE6 15%,
        #FFDDE4 20%,
        #FFDBE2 25%,
        #FFD9E0 30%,
        #FFD7DE 35%,
        #FFD5DC 40%, 
        #FFD3DA 45%,
        #FFD1D8 50%,
        #FFCFD6 55%,
        #FFCDD4 60%,
        #FFCBD2 65%,
        #FFC9D0 70%, 
        #FFC7CE 75%,
        #FFC5CC 80%,
        #FFC3CA 85%,
        #FFC1C8 90%,
        #FFBFC6 95%,
        #E76D89 100%);
    /* Arka plan sabitleme bazı tarayıcılarda ekstra scroll yaratabiliyor */
    background-attachment: scroll;
    overflow-x: hidden;
    opacity: 1 !important;
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100vh;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* =====================
   NAVIGATION
   ===================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 248, 249, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(231, 109, 137, 0.1);
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background: rgba(255, 248, 249, 0.98);
    box-shadow: 0 4px 16px rgba(231, 109, 137, 0.1);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.navbar-brand {
    text-decoration: none !important;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-md);
}

.logo-image {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

.nav-links a:not(.btn-download):hover::after {
    width: 0%;
}

.btn-download {
    background: var(--gradient-1);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10000;
}

.btn-download:hover {
    transform: none !important;
    box-shadow: var(--shadow-md) !important;
    color: white !important;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(120px);
    animation: float 20s ease-in-out infinite;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
    position: relative;
    z-index: 100;
    max-width: 100%;
    overflow: hidden;
}

.hero-content * {
    position: relative;
    z-index: 100;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

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

.ceyizyap-highlight {
    background: linear-gradient(135deg, #C41E3A 0%, #E76D89 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-description {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    position: relative;
    z-index: 100;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 100;
}

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

.btn-primary:hover {
    opacity: 1 !important;
    color: white !important;
    text-decoration: none !important;
    transform: none !important;
}

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

.btn-secondary:hover {
    background: white !important;
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    text-decoration: none !important;
    transform: none !important;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.hero-free-badge {
    margin-top: 20px;
}

.free-badge-content {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(231, 109, 137, 0.1) 0%, rgba(255, 180, 200, 0.15) 100%);
    border: 2px solid #E76D89;
    border-radius: 20px;
    padding: 20px 40px;
    box-shadow: 0 8px 24px rgba(231, 109, 137, 0.2);
    animation: float-badge 3s ease-in-out infinite;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@keyframes float-badge {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: none;
    }
}

.free-badge-content i {
    font-size: 48px;
    color: #E76D89;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: none;
    }
}

.free-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: #521630;
    margin: 0;
    line-height: 1.2;
}

.free-text p {
    font-size: 15px;
    color: #666;
    margin: 6px 0 0;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

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

.visual-circle {
    position: absolute;
    border-radius: 50%;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(231, 109, 137, 0.4), rgba(255, 180, 200, 0.35));
    animation: pulse 4s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(231, 109, 137, 0.3);
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(244, 166, 186, 0.5), rgba(231, 109, 137, 0.45));
    animation: pulse 4s ease-in-out infinite 0.5s;
    box-shadow: 0 0 50px rgba(244, 166, 186, 0.4);
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 180, 200, 0.6), rgba(244, 166, 186, 0.55));
    animation: pulse 4s ease-in-out infinite 1s;
    box-shadow: 0 0 40px rgba(255, 180, 200, 0.5);
}

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

/* Çeyiz Sandığı Container */
.treasure-box-container {
    position: relative;
    width: 350px;
    height: 400px;
    z-index: 10;
}

/* Sandık */
.treasure-box {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: boxBounce 3s ease-in-out infinite;
}

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

/* Sandık Kapağı */
.box-lid {
    width: 200px;
    height: 50px;
    background: linear-gradient(145deg, #D85A7A 0%, #E76D89 50%, #D85A7A 100%);
    border-radius: 20px 20px 8px 8px;
    position: relative;
    box-shadow: 0 -5px 20px rgba(184, 73, 101, 0.4);
    animation: lidWave 4s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes lidWave {
    0%, 100% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(-20deg);
    }
}

.lid-lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

/* Sandık Gövdesi */
.box-body {
    width: 220px;
    height: 140px;
    background: linear-gradient(145deg, #E76D89 0%, #F4A6BA 50%, #E76D89 100%);
    border-radius: 12px;
    position: relative;
    margin-top: -5px;
    margin-left: -10px;
    box-shadow: 
        0 25px 60px rgba(231, 109, 137, 0.5),
        inset 0 5px 20px rgba(255, 255, 255, 0.3),
        inset 0 -5px 20px rgba(184, 73, 101, 0.4);
}

.box-body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.box-shine {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 30px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 50%;
    filter: blur(5px);
}

/* Sandıktan Çıkan Objeler */
.floating-items {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.treasure-item {
    position: absolute;
    bottom: 150px; /* Sandığın içinden başlar */
    font-size: 40px;
    animation: 
        treasureFloat 6s cubic-bezier(0.25, 0.1, 0.25, 1) infinite,
        continuousRotate 3s linear infinite;
    opacity: 0;
    will-change: transform, opacity;
    filter: drop-shadow(0 4px 12px rgba(231, 109, 137, 0.3));
}

/* Yukarı çıkma animasyonu - dönüş YOK */
@keyframes treasureFloat {
    0% {
        transform: translate3d(-50%, 0, 0) scale(0.3);
        opacity: 0;
    }
    10% {
        transform: translate3d(-50%, -30px, 0) scale(0.7);
        opacity: 0.6;
    }
    20% {
        transform: translate3d(-50%, -70px, 0) scale(1);
        opacity: 1;
    }
    30% {
        transform: translate3d(-50%, -110px, 0) scale(1.05);
        opacity: 1;
    }
    40% {
        transform: translate3d(-50%, -150px, 0) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translate3d(-50%, -190px, 0) scale(1.05);
        opacity: 1;
    }
    60% {
        transform: translate3d(-50%, -230px, 0) scale(1);
        opacity: 0.9;
    }
    70% {
        transform: translate3d(-50%, -260px, 0) scale(0.9);
        opacity: 0.7;
    }
    80% {
        transform: translate3d(-50%, -285px, 0) scale(0.75);
        opacity: 0.5;
    }
    90% {
        transform: translate3d(-50%, -305px, 0) scale(0.55);
        opacity: 0.3;
    }
    100% {
        transform: translate3d(-50%, -320px, 0) scale(0.3);
        opacity: 0;
    }
}

/* Sürekli dönme animasyonu */
@keyframes continuousRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.item-1 {
    left: 50%;
    animation-delay: 0s;
}

.item-2 {
    left: 40%;
    animation-delay: 1s;
}

.item-3 {
    left: 60%;
    animation-delay: 2s;
}

.item-4 {
    left: 35%;
    animation-delay: 3s;
}

.item-5 {
    left: 65%;
    animation-delay: 4s;
}

.item-6 {
    left: 50%;
    animation-delay: 5s;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    color: var(--primary);
    animation: bounce 2s infinite;
}

/* =====================
   HORIZONTAL SCROLL CONTAINER
   ===================== */
.horizontal-scroll-wrapper {
    display: flex;
    flex-direction: row;
    width: fit-content;
    will-change: transform;
}

.horizontal-scroll-section {
    min-width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* =====================
   FEATURES SECTION
   ===================== */
.features {
    padding: 120px 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(10px);
}

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

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-description {
    font-size: 20px;
    color: #666;
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 2px solid rgba(231, 109, 137, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card:hover {
    transform: none !important;
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary) !important;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 24px;
}

.feature-card:hover .feature-icon {
    transform: none !important;
}

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

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* =====================
   SHOWCASE SECTION
   ===================== */
.showcase {
    padding: 120px 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(15px);
}


.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 24px;
    padding: 20px 0;
}

/* Responsive showcase grid */
@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 20px 0;
    }
}

/* Scrollbar stilleri kaldırıldı - artık grid kullanıyoruz */

.showcase-item {
    text-align: center;
}

.showcase-phone {
    position: relative;
    width: 180px;
    height: 360px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
}

.showcase-item:hover .showcase-phone {
    transform: none;
    box-shadow: var(--shadow-lg);
}

.showcase-phone::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 15px;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
    z-index: 2;
}

.showcase-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}


.showcase-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.showcase-info p {
    color: #666;
    font-size: 13px;
}

/* =====================
   BENEFITS SECTION
   ===================== */
.benefits-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.benefits-gradient {
    position: absolute;
    top: 50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: var(--gradient-2);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(100px);
    animation: float 15s ease-in-out infinite;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    border: 2px solid rgba(231, 109, 137, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

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

.benefit-card:hover::before {
    transform: none;
}

.benefit-card:hover {
    transform: none;
    box-shadow: 0 20px 60px rgba(231, 109, 137, 0.2);
    border-color: rgba(231, 109, 137, 0.3);
}

.benefit-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E76D89 0%, #F4A6BA 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 8px 24px rgba(231, 109, 137, 0.3);
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: none;
    box-shadow: 0 8px 24px rgba(231, 109, 137, 0.3);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #521630;
    margin-bottom: 12px;
    text-align: center;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

/* =====================
   DOWNLOAD SECTION
   ===================== */
.download-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(231, 109, 137, 0.15) 0%, rgba(255, 180, 200, 0.2) 100%);
    color: white;
    position: relative;
    /* İçteki pseudo-element taşmalarını gizleyelim */
    overflow: hidden;
    z-index: 100;
}

.download-section::before {
    content: '';
    position: absolute;
    /* Taşmayı engellemek için boyutları seksiyon ile sınırla */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 1;
}

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

.download-content {
    text-align: center;
    position: relative;
    z-index: 100;
}

.download-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #521630;
}

.gradient-text-white {
    color: #521630 !important;
    text-shadow: 0 2px 20px rgba(82, 22, 48, 0.2);
}

.download-content p {
    font-size: 20px;
    margin-bottom: 48px;
    opacity: 0.95;
    color: #521630;
}

.store-buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
    position: relative;
    z-index: 1000;
}

.disabled-store {
    opacity: 0.7;
    cursor: not-allowed;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #521630;
    padding: 16px 30px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(231, 109, 137, 0.2);
    min-width: 200px;
    position: relative;
    z-index: 2000;
    border: 2px solid rgba(231, 109, 137, 0.1);
}

.coming-soon-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #E76D89 0%, #F4576C 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(231, 109, 137, 0.4);
    z-index: 10;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(231, 109, 137, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(231, 109, 137, 0.6);
    }
}

.app-store-btn:hover {
    transform: none !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(231, 109, 137, 0.2) !important;
    background: white !important;
}

.app-store-btn i,
.store-icon {
    font-size: 40px;
    color: #E76D89;
    display: inline-block;
}

.btn-text {
    text-align: left;
}

.btn-text small {
    display: block;
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.btn-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #521630;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: linear-gradient(180deg, 
        #E76D89 0%,
        #D85A7A 10%,
        #C8506B 20%,
        #B8465C 30%,
        #A83C4D 40%,
        #98323E 50%,
        #7A2832 60%,
        #5C1E26 70%,
        #3E141A 80%,
        #2D0F13 90%,
        #1a0a0c 100%);
    color: white;
    padding: 80px 0 32px;
}



.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary);
    transform: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary);
    transform: none;
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

.fade-in {
    animation: fadeInUp 0.8s ease;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Glassmorphism effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Glow effect on hover */
.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(231, 109, 137, 0.6),
                0 0 40px rgba(231, 109, 137, 0.4),
                0 0 60px rgba(231, 109, 137, 0.2);
}

/* Smooth transitions */
* {
    box-sizing: border-box;
}

/* Tüm hover efektlerini devre dışı bırak */
*:hover {
    transform: none !important;
    transition: none !important;
}

a, button, .btn {
}

/* Add depth to sections */
section {
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
}

/* Smooth scrolling enhancement */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =====================
   GLITCH TEXT EFFECT
   ===================== */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch:hover::before,
.glitch:hover::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch:hover::before {
    left: 2px;
    text-shadow: -2px 0 #ff00de;
    animation: glitch-anim-1 0.3s infinite linear alternate-reverse;
}

.glitch:hover::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9;
    animation: glitch-anim-2 0.3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: inset(40% 0 61% 0);
    }
    20% {
        clip-path: inset(92% 0 1% 0);
    }
    40% {
        clip-path: inset(43% 0 1% 0);
    }
    60% {
        clip-path: inset(25% 0 58% 0);
    }
    80% {
        clip-path: inset(54% 0 7% 0);
    }
    100% {
        clip-path: inset(58% 0 43% 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(65% 0 20% 0);
    }
    20% {
        clip-path: inset(12% 0 41% 0);
    }
    40% {
        clip-path: inset(38% 0 20% 0);
    }
    60% {
        clip-path: inset(47% 0 18% 0);
    }
    80% {
        clip-path: inset(73% 0 25% 0);
    }
    100% {
        clip-path: inset(82% 0 8% 0);
    }
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 968px) {
    .hero {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 24px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 48px;
        text-align: center;
        width: 100%;
    }
    
    .hero-description {
        font-size: 18px;
        text-align: center;
        width: 100%;
    }
    
    .hero-image {
        order: 2;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-content {
        order: 1;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Mobilde sadece indir butonunu göster */
    .navbar .btn-download {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 10001;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    /* Showcase responsive - tablet */
    .showcase {
        padding: 80px 0;
    }
    
    .showcase-phone {
        width: 140px;
        height: 280px;
    }
    
    
    .showcase-info h3 {
        font-size: 15px;
    }
    
    .showcase-info p {
        font-size: 12px;
    }
    
    /* Download butonları tablet - yan yana kalsın */
    .store-buttons-container {
        flex-direction: row;
        gap: 20px;
    }
    
    .app-store-btn {
        min-width: 180px;
    }
    
    /* Features ve Benefits responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card,
    .benefit-card {
        padding: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* Free badge responsive - tablet */
    .hero-free-badge {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .free-badge-content {
        flex-direction: column;
        gap: 15px;
        padding: 20px 30px;
        text-align: center;
    }
    
    .free-badge-content i {
        font-size: 40px;
    }
    
    .free-text h3 {
        font-size: 24px;
    }
    
    .free-text p {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    /* Küçük ekranlarda indir butonu */
    .navbar .btn-download {
        padding: 8px 16px;
        font-size: 14px;
        top: 15px;
        right: 15px;
    }
    
    .hero {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .hero .container {
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content {
        text-align: center;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        text-align: center;
        width: 100%;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
        justify-content: center;
        display: flex;
    }
    
    .hero-free-badge {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    /* Showcase responsive */
    .showcase {
        padding: 60px 0;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 12px;
    }
    
    .showcase-phone {
        width: 110px;
        height: 220px;
    }
    
    .showcase-info h3 {
        font-size: 13px;
    }
    
    .showcase-info p {
        font-size: 11px;
    }
    
    /* Features ve Benefits - küçük ekranlar */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card,
    .benefit-card {
        padding: 20px;
    }
    
    .feature-icon,
    .benefit-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .feature-card h3,
    .benefit-card h3 {
        font-size: 18px;
    }
    
    .download-content h2 {
        font-size: 32px;
    }
    
    /* Download butonları responsive - sadece mobilde alt alta */
    .store-buttons-container {
        flex-direction: column;
        gap: 16px;
        margin-top: 30px;
    }
    
    .app-store-btn {
        min-width: 180px;
        padding: 14px 24px;
    }
    
    .app-store-btn i,
    .store-icon {
        font-size: 32px;
    }
    
    .btn-text strong {
        font-size: 16px;
    }
    
    .phone-frame {
        width: 280px;
        height: 560px;
    }
    
    /* Free badge responsive - mobil */
    .free-badge-content {
        flex-direction: column;
        gap: 12px;
        padding: 16px 24px;
        text-align: center;
        margin: 0 10px;
    }
    
    .free-badge-content i {
        font-size: 36px;
    }
    
    .free-text h3 {
        font-size: 20px;
        line-height: 1.1;
    }
    
    .free-text p {
        font-size: 13px;
        margin: 4px 0 0;
    }
}

/* Çok küçük ekranlar için ek responsive kurallar */
@media (max-width: 480px) {
    .hero .container {
        padding: 0 12px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        text-align: center;
    }
    
    .hero-description {
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
    }
    
    .hero-free-badge {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .free-badge-content {
        padding: 16px 20px;
        gap: 12px;
    }
    
    .free-text h3 {
        font-size: 18px;
    }
    
    .free-text p {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .hero .container {
        text-align: center;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.4;
        text-align: center;
    }
    
    .hero-description {
        font-size: 14px;
        text-align: center;
    }
    
    .hero-free-badge {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .free-badge-content {
        padding: 14px 16px;
        gap: 10px;
    }
    
    .free-text h3 {
        font-size: 16px;
    }
    
    .free-text p {
        font-size: 11px;
    }
}
