* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #ec4899;
    --accent-color: #14b8a6;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Floating Background Shapes */
.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--secondary-color), #f472b6);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), #5eead4);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    bottom: 20%;
    left: 20%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Navbar Styles - Scroll sırasında üstte sabit kalır */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 28px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px 60px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

/* Neon LED Title Effect */
.hero-title.neon-title {
    font-size: 72px;
    text-align: center;
    margin-bottom: 35px;
}

.neon-text {
    display: inline-block;
    font-size: 80px;
    font-weight: 800;
    letter-spacing: 8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #6366f1, #ec4899, #6366f1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neonGradient 4s ease infinite;
    position: relative;
}

/* Arka plan ışık efekti */
.neon-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 200%;
    background: radial-gradient(ellipse at center, 
        rgba(99, 102, 241, 0.4) 0%, 
        rgba(236, 72, 153, 0.3) 25%,
        rgba(0, 245, 255, 0.2) 50%,
        transparent 70%);
    filter: blur(30px);
    animation: neonPulse 2.5s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

/* İkinci katman ışık efekti */
.neon-text::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(99, 102, 241, 0.6) 0%, 
        rgba(236, 72, 153, 0.4) 30%,
        transparent 60%);
    filter: blur(20px);
    animation: neonPulse 2s ease-in-out infinite reverse;
    z-index: -1;
    pointer-events: none;
}

@keyframes neonGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes neonPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.hero-title-line {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
    transform: translateY(20px);
}

/* Hero Tagline - Dikkat Çekici Slogan */
.hero-tagline {
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.5;
    text-align: center;
    position: relative;
    padding: 20px 0;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
    transform: translateY(20px);
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline::before,
.hero-tagline::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--primary-color);
    opacity: 0.6;
    animation: starPulse 2s ease-in-out infinite;
    -webkit-text-fill-color: var(--primary-color);
}

.hero-tagline::before {
    left: -30px;
    animation-delay: 0s;
}

.hero-tagline::after {
    right: -30px;
    animation-delay: 1s;
}

@keyframes starPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
    transform: translateY(20px);
}

.btn-hero-primary {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-hero-secondary {
    padding: 15px 40px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    display: flex;
    gap: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
    transform: translateY(20px);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Floating Emojis - Köşelere Dağılmış */
.hero-float-emoji {
    position: absolute;
    font-size: 32px;
    opacity: 0.7;
    filter: drop-shadow(0 4px 15px rgba(99, 102, 241, 0.2));
    z-index: 1;
    pointer-events: none;
}

.float-1 {
    top: 15%;
    left: 8%;
    font-size: 28px;
    animation: gentleFloat1 6s ease-in-out infinite;
}

.float-2 {
    bottom: 25%;
    left: 5%;
    font-size: 36px;
    animation: gentleFloat2 7s ease-in-out infinite 1s;
}

.float-3 {
    top: 30%;
    right: 42%;
    font-size: 24px;
    animation: gentleFloat3 5s ease-in-out infinite 0.5s;
}

.float-4 {
    bottom: 15%;
    right: 38%;
    font-size: 30px;
    animation: gentleFloat4 6.5s ease-in-out infinite 1.5s;
}

@keyframes gentleFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
    50% { transform: translate(10px, -15px) rotate(5deg); opacity: 0.9; }
}

@keyframes gentleFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
    50% { transform: translate(-8px, -20px) rotate(-5deg); opacity: 0.8; }
}

@keyframes gentleFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    50% { transform: translate(5px, 12px) scale(1.1); opacity: 0.9; }
}

@keyframes gentleFloat4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
    50% { transform: translate(-12px, -10px) rotate(8deg); opacity: 0.85; }
}

@media (max-width: 768px) {
    .float-1 { font-size: 22px; top: 12%; left: 5%; }
    .float-2 { font-size: 28px; bottom: 30%; left: 3%; }
    .float-3 { display: none; }
    .float-4 { display: none; }
}

@media (max-width: 480px) {
    .float-1 { font-size: 20px; }
    .float-2 { font-size: 24px; }
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 500px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.illustration-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatCard 4s infinite ease-in-out;
}

.card-emoji {
    font-size: 32px;
}

.card-text {
    font-weight: 600;
    color: var(--text-dark);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 5%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 3s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
}

/* Ayın Deyimi Section */
.idiom-of-month {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.idiom-of-month::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.idiom-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

/* Idiom Card Styles */
.idiom-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.idiom-card:nth-child(1) { animation-delay: 0.1s; }
.idiom-card:nth-child(2) { animation-delay: 0.2s; }
.idiom-card:nth-child(3) { animation-delay: 0.3s; }

.idiom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.idiom-card:hover::before {
    transform: scaleX(1);
}

.idiom-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
    border-color: var(--primary-light);
}

/* Featured Card - Extra Emphasis */
.idiom-card.featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(236, 72, 153, 0.03) 100%);
    border: 2px solid var(--primary-light);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
}

.idiom-card.featured::before {
    height: 5px;
}

.idiom-card.featured:hover {
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.3);
    transform: translateY(-20px) scale(1.02);
}

/* Card Header */
.idiom-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.idiom-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.idiom-card:hover .idiom-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

.idiom-badge {
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
}

.idiom-badge.trending {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.idiom-badge.new {
    background: linear-gradient(135deg, var(--accent-color), #10b981);
    box-shadow: 0 4px 10px rgba(20, 184, 166, 0.3);
}

/* Card Content */
.idiom-content {
    margin-bottom: 25px;
}

.idiom-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.idiom-card:hover .idiom-title {
    letter-spacing: 0.5px;
}

.idiom-meaning {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.idiom-example {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
    margin-top: 15px;
}

.example-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.example-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

/* Card Footer */
.idiom-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.btn-learn-more {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-learn-more:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.idiom-stats {
    display: flex;
    gap: 15px;
}

.idiom-stats .stat {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    user-select: none;
}

.idiom-stats .stat:hover {
    transform: scale(1.05);
}

/* View All Button */
.view-all-container {
    text-align: center;
}

.btn-view-all {
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-view-all:hover::before {
    left: 0;
}

.btn-view-all:hover {
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

/* İki kartlık düzen */
.about-content.about-content-two {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Uyumlu Kartlar */
.about-card.about-card-large {
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.about-card.about-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-card.about-card-large:hover::before {
    transform: scaleX(1);
}

.about-card.about-card-large:hover {
    border-color: var(--primary-light);
}

.about-card.about-card-large .card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-card.about-card-large h3 {
    font-size: 22px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card.about-card-large p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.about-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== Detaylı Açıklama Bölümü ========== */
.detailed-section {
    position: relative;
    padding: 60px 40px;
    margin-top: 40px;
    overflow: visible;
}

/* Uçuşan Emojiler */
.floating-detail-emojis {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1100px;
    pointer-events: none;
    z-index: 3;
}

.detail-emoji {
    position: absolute;
    font-size: 36px;
    animation: floatDetailEmoji 5s ease-in-out infinite;
    z-index: 0;
}

.detail-emoji-1 { top: 5%; left: -60px; animation-delay: 0s; }
.detail-emoji-2 { top: 15%; right: -60px; animation-delay: 0.8s; }
.detail-emoji-3 { top: 45%; left: -70px; animation-delay: 1.6s; }
.detail-emoji-4 { bottom: 35%; right: -65px; animation-delay: 2.4s; }
.detail-emoji-5 { bottom: 10%; left: -55px; animation-delay: 3.2s; }
.detail-emoji-6 { top: 75%; right: -70px; animation-delay: 4s; }

@keyframes floatDetailEmoji {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) rotate(10deg);
    }
}

/* İçerik Kutusu */
.detailed-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    background: white;
    padding: 50px 60px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.detailed-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.detailed-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detailed-text {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.detailed-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.detailed-list li {
    font-size: 16px;
    color: var(--text-dark);
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.detailed-list li:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    transform: translateX(5px);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .detailed-section {
        padding: 40px 30px;
    }
    
    .detailed-content {
        padding: 40px 35px;
    }
}

/* Responsive - Mobil */
@media (max-width: 768px) {
    .detailed-section {
        padding: 30px 15px;
        margin-top: 30px;
    }
    
    .detailed-content {
        padding: 35px 25px;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .detailed-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .detailed-text {
        font-size: 15px;
        line-height: 1.7;
        text-align: left;
    }
    
    .detailed-list {
        grid-template-columns: 1fr;
    }
    
    /* Emojileri mobilde gizle - alan dar */
    .floating-detail-emojis {
        display: none;
    }
}

/* Responsive - Küçük mobil */
@media (max-width: 480px) {
    .detailed-section {
        padding: 20px 10px;
        margin-top: 20px;
    }
    
    .detailed-content {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .detailed-title {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .detailed-text {
        font-size: 14px;
        line-height: 1.65;
    }
}

/* How to Use Section */
.how-to-use {
    padding: 100px 0;
    background: var(--bg-light);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    align-items: center;
}

.step-card {
    background: white;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-md);
    grid-column: span 1;
}

.step-card:nth-child(1) {
    grid-column: span 2;
}

.step-card:nth-child(3) {
    grid-column: span 2;
}

.step-card:nth-child(5) {
    grid-column: span 2;
}

.step-card:nth-child(7) {
    grid-column: span 2;
}

.step-arrow {
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
}

.additional-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-box {
    background: white;
    padding: 35px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.info-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.info-box p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-illustration {
        height: 400px;
    }

    .idiom-showcase {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-content.about-content-two {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .about-card.about-card-large {
        padding: 30px 25px;
    }

    .about-detailed {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .step-card {
        grid-column: span 1 !important;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }

    .nav-buttons .btn {
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-title.neon-title {
        font-size: 48px;
    }

    .neon-text {
        font-size: 52px;
        letter-spacing: 4px;
    }

    .hero-tagline {
        font-size: 20px;
        padding: 15px 30px;
    }

    .hero-tagline::before,
    .hero-tagline::after {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .idiom-card {
        padding: 25px;
    }

    .idiom-title {
        font-size: 20px;
    }

    .idiom-icon {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .idiom-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .btn-learn-more {
        width: 100%;
        justify-content: center;
    }

    .additional-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-title.neon-title {
        font-size: 36px;
    }

    .neon-text {
        font-size: 38px;
        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 16px;
        padding: 10px 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons button {
        width: 100%;
    }
}

/* Welcome Modal */
.welcome-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.welcome-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: modalSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    z-index: 2;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.close-text {
    font-size: 14px;
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
}

/* Modal Image Section */
.modal-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.modal-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 3s infinite ease-in-out;
}

.modal-emoji {
    font-size: 120px;
    position: relative;
    z-index: 2;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-emoji {
    position: absolute;
    font-size: 32px;
    animation: floatAround 4s infinite ease-in-out;
}

.emoji-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.emoji-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.emoji-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.emoji-4 {
    bottom: 15%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translate(10px, -10px) rotate(5deg);
        opacity: 1;
    }
    50% {
        transform: translate(-5px, 5px) rotate(-5deg);
        opacity: 0.7;
    }
    75% {
        transform: translate(5px, 10px) rotate(3deg);
        opacity: 1;
    }
}

/* Modal Text Section */
.modal-text {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    width: fit-content;
    animation: slideInRight 0.6s ease 0.3s backwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
    animation: slideInRight 0.6s ease 0.4s backwards;
}

.modal-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
    animation: slideInRight 0.6s ease 0.5s backwards;
}

.modal-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Modal Features */
.modal-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease backwards;
}

.feature-item:nth-child(1) { animation-delay: 0.6s; }
.feature-item:nth-child(2) { animation-delay: 0.7s; }
.feature-item:nth-child(3) { animation-delay: 0.8s; }

.feature-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
}

.feature-icon {
    font-size: 28px;
}

.feature-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

/* Modal Buttons */
.modal-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    animation: slideInRight 0.6s ease 0.9s backwards;
}

.btn-modal-primary,
.btn-modal-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.btn-modal-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 200%;
    color: white;
    flex: 1;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4), 0 0 40px rgba(236, 72, 153, 0.2);
    position: relative;
    overflow: hidden;
    animation: gradientFlow 3s ease infinite, buttonGlow 2s ease-in-out infinite alternate;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.btn-modal-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2.5s infinite;
}

.btn-modal-primary::after {
    content: '✨';
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    opacity: 0;
    transition: all 0.3s ease;
}

.btn-modal-primary:hover::after {
    opacity: 1;
    right: 60px;
}

.btn-modal-primary span {
    position: relative;
    z-index: 1;
}

.btn-modal-primary svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-modal-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5), 0 0 60px rgba(236, 72, 153, 0.3);
}

.btn-modal-primary:hover svg {
    transform: translateX(5px);
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes buttonGlow {
    0% {
        box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4), 0 0 40px rgba(236, 72, 153, 0.2);
    }
    100% {
        box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5), 0 0 50px rgba(236, 72, 153, 0.3);
    }
}

.btn-modal-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-modal-secondary:hover {
    background: var(--border-color);
    transform: translateY(-3px);
}

/* Image Display View */
.modal-image-view {
    display: none;
    grid-template-columns: 1fr;
    padding: 0;
}

.modal-image-view.active {
    display: flex;
}

.image-display-container {
    width: 100%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.image-placeholder-area {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border: 3px dashed var(--border-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.image-placeholder-area:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
}

.image-placeholder-area .placeholder-icon {
    font-size: 80px;
    opacity: 0.5;
}

.placeholder-text {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

.image-actions {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 600px;
}

.btn-image-back,
.btn-image-continue {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.btn-image-back {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    flex: 0.8;
}

.btn-image-back:hover {
    background: var(--border-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-image-continue {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    flex: 1.2;
    box-shadow: var(--shadow-md);
}

.btn-image-continue:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-content {
        grid-template-columns: 1fr;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 13px;
    }

    .close-text {
        font-size: 13px;
    }

    .modal-close svg {
        width: 18px;
        height: 18px;
    }

    .modal-image {
        padding: 40px 30px;
        min-height: 250px;
    }

    .illustration-bg {
        width: 200px;
        height: 200px;
    }

    .modal-emoji {
        font-size: 80px;
    }

    .float-emoji {
        font-size: 24px;
    }

    .modal-text {
        padding: 35px 30px;
    }

    .modal-title {
        font-size: 26px;
    }

    .modal-description {
        font-size: 15px;
    }

    .modal-features {
        grid-template-columns: 1fr;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .btn-modal-primary,
    .btn-modal-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-close {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 12px;
    }

    .close-text {
        font-size: 12px;
    }

    .modal-close svg {
        width: 16px;
        height: 16px;
    }

    .modal-text {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 22px;
    }

    .modal-description {
        font-size: 14px;
    }

    .feature-icon {
        font-size: 24px;
    }

    .feature-text {
        font-size: 12px;
    }

    .btn-modal-primary,
    .btn-modal-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .image-display-container {
        padding: 40px 20px;
    }

    .image-placeholder-area .placeholder-icon {
        font-size: 60px;
    }

    .placeholder-text {
        font-size: 16px;
    }

    .image-actions {
        flex-direction: column;
    }

    .btn-image-back,
    .btn-image-continue {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ========== Site Turu (Tour) Stilleri ========== */
.site-tour {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.site-tour.active {
    display: block;
}

/* Blur Overlay - Sadece karartma, blur yok */
.tour-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

/* Spotlight - Vurgulanan alan etrafında karartma */
.tour-spotlight {
    position: fixed;
    border-radius: 15px;
    background: transparent;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.85);
    z-index: 99997;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.tour-spotlight::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    animation: spotlightPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--primary-color), 0 0 40px rgba(99, 102, 241, 0.5);
}

/* Vurgulanan element - EN ÜSTTE */
.tour-highlighted {
    position: relative !important;
    z-index: 99998 !important;
    border-radius: 15px;
}

/* Navbar içindeki elementler için özel stil */
.navbar .tour-highlighted,
.nav-menu.tour-highlighted,
.nav-buttons.tour-highlighted,
.logo.tour-highlighted {
    background-color: rgba(255, 255, 255, 0.95) !important;
    padding: 10px 15px !important;
    border-radius: 12px !important;
}

/* Hamburger menü için özel stil */
.hamburger.tour-highlighted {
    background-color: rgba(255, 255, 255, 0.95) !important;
    padding: 12px !important;
    border-radius: 10px !important;
}

/* Hero içindeki elementler */
.hero .tour-highlighted {
    background-color: rgba(248, 250, 252, 0.95) !important;
    padding: 15px 20px !important;
    border-radius: 15px !important;
}

/* Section'lar için */
section.tour-highlighted {
    background-color: var(--bg-light) !important;
}

/* Detaylı açıklama bölümü için - emojiler animasyonlu kalsın */
.detailed-section.tour-highlighted .floating-detail-emojis {
    z-index: 99999 !important;
}

.detailed-section.tour-highlighted .detail-emoji {
    animation: floatDetailEmoji 5s ease-in-out infinite !important;
    opacity: 1 !important;
}

.detailed-section.tour-highlighted .detail-emoji-1 { animation-delay: 0s !important; }
.detailed-section.tour-highlighted .detail-emoji-2 { animation-delay: 0.8s !important; }
.detailed-section.tour-highlighted .detail-emoji-3 { animation-delay: 1.6s !important; }
.detailed-section.tour-highlighted .detail-emoji-4 { animation-delay: 2.4s !important; }
.detailed-section.tour-highlighted .detail-emoji-5 { animation-delay: 3.2s !important; }
.detailed-section.tour-highlighted .detail-emoji-6 { animation-delay: 4s !important; }

@keyframes spotlightPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

/* Kedi Maskot ve Konuşma Balonu */
.tour-mascot {
    position: fixed;
    z-index: 100000;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mascot-emoji {
    font-size: 60px;
    animation: mascotBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    z-index: 100001;
    position: relative;
}

@keyframes mascotBounce {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Konuşma Balonu */
.speech-bubble {
    background: white;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(99, 102, 241, 0.2);
    max-width: 350px;
    position: relative;
    animation: bubbleAppear 0.4s ease;
    z-index: 100001;
}

@keyframes bubbleAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.speech-bubble::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    border: 15px solid transparent;
    border-right-color: white;
    border-left: 0;
}

.bubble-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.bubble-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tour-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-skip {
    background: var(--bg-light);
    color: var(--text-light);
}

.tour-skip:hover {
    background: var(--border-color);
    color: var(--text-dark);
}

.tour-next {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    flex: 1;
    justify-content: center;
}

.tour-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
}

.tour-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.tour-next:hover .tour-arrow {
    transform: translateX(3px);
}

.tour-progress {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

/* Responsive Tour */
@media (max-width: 768px) {
    /* Mobilde mascot ekranın altında sabit */
    .tour-mascot {
        position: fixed !important;
        bottom: 20px !important;
        top: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90%;
        max-width: 350px;
        flex-direction: column;
        align-items: center;
    }
    
    .mascot-emoji {
        font-size: 40px;
        order: -1;
    }
    
    .speech-bubble {
        max-width: 100%;
        width: 100%;
        padding: 15px 18px;
        border-radius: 16px;
    }
    
    .speech-bubble::before {
        display: none;
    }
    
    .bubble-text {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    .bubble-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .tour-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .tour-skip {
        flex: 0.7;
    }
    
    .tour-next {
        flex: 1.3;
    }
    
    .tour-progress {
        font-size: 11px;
        padding-top: 8px;
    }
    
    /* Spotlight mobilde daha küçük padding */
    .tour-spotlight {
        border-radius: 8px;
    }
    
    .tour-spotlight::before {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: 11px;
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .tour-mascot {
        width: 94%;
        max-width: 300px;
        bottom: 15px !important;
    }
    
    .mascot-emoji {
        font-size: 35px;
    }
    
    .speech-bubble {
        padding: 12px 15px;
        border-radius: 14px;
    }
    
    .bubble-text {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .bubble-buttons {
        gap: 8px;
    }
    
    .tour-btn {
        padding: 9px 12px;
        font-size: 12px;
    }
}

/* Disabled look for guarded buttons */
.disabled-state {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(0.2);
}

/* ========== Video Modal Styles ========== */
.modal-video-view {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.video-display-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.intro-video {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    /* Video kontrollerini gizle */
    pointer-events: none;
}

/* Video seekbar'ı tamamen engelle */
.intro-video::-webkit-media-controls-timeline {
    display: none !important;
}

.intro-video::-webkit-media-controls-current-time-display,
.intro-video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

.intro-video::-webkit-media-controls-seek-back-button,
.intro-video::-webkit-media-controls-seek-forward-button {
    display: none !important;
}

.video-overlay-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-overlay-controls.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.play-icon {
    font-size: 32px;
    color: white;
    margin-left: 5px;
}

/* Video oynarken Atla butonu stili */
.modal-video-view ~ .modal-close,
.modal-container:has(.modal-video-view[style*="flex"]) .modal-close {
    z-index: 10;
}

@media (max-width: 768px) {
    .intro-video {
        max-height: 50vh;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .play-icon {
        font-size: 24px;
    }
}

