/* ==========================================
   DOPiverse WAY - MAIN STYLES
   Based on Figma Design Reference
   ========================================== */

/* CSS Variables */
:root {
    /* Background Colors */
    --bg-dark: #0a0e27;
    --bg-dark-2: #0d1230;
    --bg-dark-3: #0f1435;
    --bg-dark-4: #1a1f4e;

    /* Accent Colors */
    --cyan: #53eafd;
    --cyan-border: #00d3f2;
    --cyan-light: #a2f4fd;
    --purple: #c4b4ff;
    --purple-dark: #8e51ff;
    --blue: #8ec5ff;
    --blue-title: #7bd0f3;

    /* Gradient Colors */
    --gradient-primary-start: rgba(0, 184, 217, 0.2);
    --gradient-primary-end: rgba(142, 81, 255, 0.2);

    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #d1d5dc;
    --text-muted: #99a1af;
    --text-dark: #6a7282;

    /* Border Colors */
    --border-cyan: rgba(0, 211, 242, 0.2);
    --border-cyan-strong: rgba(0, 211, 242, 0.4);
    --border-white: rgba(255, 255, 255, 0.1);

    /* Fonts */
    --font-poppins: 'Poppins', sans-serif;
    --font-inter: 'Poppins', sans-serif;
    --font-outfit: 'Poppins', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Section Container */
.section-container {
    max-width: 1252px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Global section titles are now shared in ../styles.css */

/* ==========================================
   HEADER OVERRIDES
   ========================================== */
/* ==========================================
   HEADER OVERRIDES
   ========================================== */
.header .logo-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.header .logo-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.header .logo-text {
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Header navigation - match main page font */
.header .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
}

.header .cta-button {
    font-family: 'Poppins', sans-serif;
}

/* Desktop Navigation - Ensure proper display */
@media (min-width: 769px) {
    .main-nav {
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: center !important;
        right: auto !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    .nav-list {
        display: flex !important;
        flex-direction: row !important;
        gap: 35px !important;
    }

    .nav-list li {
        border-bottom: none !important;
    }

    .nav-list li a.nav-link {
        padding: 0 !important;
        font-size: 0.95rem !important;
    }

    .mobile-menu-btn {
        display: none !important;
    }

    .mobile-overlay {
        display: none !important;
    }

    .cta-desktop {
        display: inline-block !important;
    }

    .nav-cta-mobile {
        display: none !important;
    }

    /* Desktop Dropdown */
    .nav-dropdown .dropdown-menu {
        position: absolute !important;
        max-height: none !important;
        overflow: visible !important;
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 711px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

/* Hero alt kısmı yumuşak geçiş */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, #0a0e27 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0A0E27 0%, #1A1F4E 50%, #0A0E27 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/dopiverse/hero-bg.png') center center / cover no-repeat;
    opacity: 0.3;
    z-index: -1;
}

/* Stars - Preserve existing stars but adjust opacity if needed */
.hero-stars {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

/* Decorative Dots - Absolute positions from Figma (assuming 1200px container context) */
.hero-dots {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.dot {
    position: absolute;
    border-radius: 50%;
}

.dot-1 {
    width: 8px;
    height: 8px;
    left: 299.75px;
    top: 177.75px;
    background: #53EAFD;
    opacity: 0.53;
}

.dot-2 {
    width: 4px;
    height: 4px;
    left: 795.34px;
    top: 237px;
    background: #C4B4FF;
    opacity: 0.62;
}

.dot-3 {
    width: 6px;
    height: 6px;
    left: 346px;
    top: 647px;
    background: #8EC5FF;
    opacity: 0.97;
}

.dot-4 {
    width: 4px;
    height: 4px;
    left: 895.25px;
    top: 474px;
    background: #A2F4FD;
    opacity: 0.88;
}

.dot-5 {
    width: 8px;
    height: 8px;
    left: 599.5px;
    top: 355.5px;
    background: #A684FF;
    opacity: 0.53;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: row-reverse;
    /* Resim sağda, içerik solda kalsın */
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 580px;
    /* Figma width */
    gap: 24px;
}

.hero-title {
    font-family: var(--font-poppins);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-white);
    margin-bottom: 0;
    position: static;
    transform: none;
    text-align: left;
    left: auto;
    bottom: auto;
    padding-bottom: 15px;
}

.hero-title br {
    display: block;
    content: "";
    margin-bottom: 10px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #22d3ee, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-bottom: 5px;
}

.hero-subtitle {
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #D1D5DC;
    margin-bottom: 16px;
}

/* Hero Features List */
.hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.hero-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-family: var(--font-poppins);
    font-size: 18px;
    /* Figma font size */
    font-weight: 600;
    /* Figma font weight */
    line-height: 27px;
    /* 150% */
    letter-spacing: -0.44px;
    color: #FFFFFF;
}

.check-icon-container {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.67px solid #00D4FF;
    /* Figma vector border */
    border-radius: 50%;
    /* Assuming circular check from context */
}

/* Eğer SVG içinde zaten daire varsa border kaldırılabilir, ama Figma 'Vector' border demiş */
.hero-features .check-icon {
    width: 12px;
    height: 12px;
}

.hero-features .highlight {
    color: #53EAFD;
    /* Matches checkmark/theme */
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    align-items: center;
}

/* Button styles are now shared in ../styles.css */

/* Hero Image */
.hero-image {
    position: relative;
}

/* Glow Effect Behind Image */
.hero-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(26, 31, 78, 0.6) 0%, rgba(13, 17, 53, 0.6) 100%);
    border-radius: 24px;
    filter: blur(30px);
    z-index: 0;
}

.hero-image-main {
    position: relative;
    z-index: 1;
    width: 500px;
    height: 500px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.44) 0%, rgba(13, 17, 53, 0.44) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-element {
    /* Eski stili koru veya kaldır, Figma listesinde bu element yoktu ama görselde olabilir */
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 20;
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */
.problem-section {
    padding: 80px 0;
    position: relative;
    background-color: #0a0e27;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/dopiverse/problem-bg.jpg') center center / cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

/* Problem üst ve alt kısmı yumuşak geçiş */
.problem-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background:
        linear-gradient(to bottom, #0a0e27 0%, transparent 100px),
        linear-gradient(to top, #0a0e27 0%, transparent 100px);
    z-index: 1;
    pointer-events: none;
}

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

/* Global section titles are now shared in ../styles.css */

.problem-cards {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 20px 0 40px;
}

/* Problem Card - Figma Pixel-Perfect Style */
.problem-card {
    flex: 0 0 200px;
    width: 200px;
    min-height: 340px;
    background: linear-gradient(180deg, rgba(15, 20, 45, 0.9) 0%, rgba(10, 14, 39, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Tüm problem kartlarına beyaz border */
.problem-card:nth-child(1),
.problem-card:nth-child(2),
.problem-card:nth-child(3),
.problem-card:nth-child(4),
.problem-card:nth-child(5) {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Alt kısımda yumuşak difüz glow efekti */
.problem-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 180, 220, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Tüm kartlar düz hizada - zigzag kaldırıldı */
.problem-card:nth-child(1),
.problem-card:nth-child(2),
.problem-card:nth-child(3),
.problem-card:nth-child(4),
.problem-card:nth-child(5) {
    margin-top: 0;
    margin-bottom: 0;
}

.problem-card:hover {
    border-color: rgba(0, 180, 220, 0.25);
    transform: translateY(-4px);
}

/* Resim Alanı */
.problem-card-image {
    width: 100%;
    height: 60%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    flex-shrink: 0;
}


.problem-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.problem-card:hover .problem-card-image img {
    transform: scale(1.03);
}

/* Yazı Alanı - en altta */
.problem-card-content {
    padding: 16px 14px 20px;
    text-align: center;
    background:
        linear-gradient(to bottom, #0a0e27 0%, transparent 100px),
        linear-gradient(to top, #161e46 0%, transparent 100px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: auto;
}

.problem-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #7BD0F3;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 8px;
}

.problem-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
}

/* Scrollbar styling for cards */
.problem-cards::-webkit-scrollbar {
    height: 6px;
}

.problem-cards::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.problem-cards::-webkit-scrollbar-thumb {
    background: rgba(0, 211, 242, 0.3);
    border-radius: 3px;
}

.problem-cards::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 211, 242, 0.5);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    padding: 96px 0;
    background: var(--bg-dark);
    position: relative;
}

/* Hero arka planı - Game Mechanics'ten Customization'a kadar - Tam genişlik */
/* Hero arka planı - Game Mechanics'ten Customization'a kadar - Tam genişlik */
.hero-bg-wrapper {
    position: relative;
    padding: 48px 0;
    margin-top: -96px;
    padding-top: 96px;
    margin-bottom: 80px;
}

.hero-bg-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    background: url('../assets/dopiverse/hero-bg.png') center center / cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

/* Üst ve Alt Kısım Yumuşak Geçiş */
.hero-bg-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    background:
        linear-gradient(to bottom, #0a0e27 0%, transparent 150px),
        linear-gradient(to top, #0a0e27 0%, transparent 150px);
    z-index: 1;
    pointer-events: none;
}

.hero-bg-wrapper>* {
    position: relative;
    z-index: 2;
}

/* Cleaned up duplicate rule */

/* Section title spacing handled globally */

.feature-block {
    display: flex;
    gap: 48px;
    align-items: stretch;
    margin-bottom: 128px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    display: flex;
}

.feature-card {
    padding: 32px;
    background: linear-gradient(135deg, rgba(0, 184, 217, 0.05) 0%, transparent 100%);
    border: 1px solid rgba(0, 211, 242, 0.2);
    border-radius: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card-title {
    font-family: var(--font-poppins);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
}

.feature-card-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.feature-card-intro {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.feature-card-list {
    list-style: none;
}

.feature-card-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.5;
}

.feature-card-list li::before {
    content: '•';
    color: #53eafd;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.feature-image {
    flex: 1;
    display: flex;
    align-items: center;
}

.feature-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    border: 1px solid var(--border-white);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.feature-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-image-grid .offset-image {
    margin-top: 32px;
}

/* ==========================================
   PARENT SECTION
   ========================================== */
.parent-section {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
}

/* Parent Section Background */
.parent-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url('../assets/dopiverse/parent-bg.png') center center / cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

/* Parent Section Gradient Overlays (Top & Bottom) */
.parent-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background:
        linear-gradient(to bottom, #0a0e27 0%, transparent 150px),
        linear-gradient(to top, #0a0e27 0%, transparent 150px);
    z-index: 1;
    pointer-events: none;
}

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

/* Section title spacing handled globally */

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

.parent-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Parent Feature Pill - Figma Style */
.parent-feature-pill {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border-radius: 9999px;
    border: 1px solid rgba(0, 211, 242, 0.4);
    background: rgba(10, 14, 39, 0.8);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
}

.parent-feature-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.parent-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.parent-feature-pill p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-white);
}

.parent-dashboard img {
    width: 100%;
    min-height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Signup Section styles are now shared in ../styles.css */

/* Local form and footer overrides removed. Styles are now global in ../styles.css */

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .hero-section {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
        padding-top: 100px !important;
        padding-bottom: 100px !important;
        /* Bir sonraki bölümle mesafe */
        position: relative !important;
    }

    .hero-container {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 20px !important;
        height: auto !important;
        margin: 0 !important;
    }

    .hero-image {
        display: block !important;
        width: 100% !important;
        margin-bottom: 40px !important;
        text-align: center;
    }

    .hero-image-main {
        display: inline-flex !important;
        max-width: 300px !important;
        width: 80% !important;
        height: auto !important;
        aspect-ratio: 1 !important;
        margin: 0 auto !important;
    }

    .hero-content {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
        text-align: center;
    }

    .hero-title {
        text-align: center !important;
        margin-bottom: 24px !important;
    }

    .hero-subtitle {
        text-align: center !important;
    }

    .hero-features {
        display: block !important;
        text-align: left;
        margin: 32px 0 !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
        margin-top: 32px !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        max-width: 280px !important;
    }

    .feature-block,
    .feature-block.reverse {
        flex-direction: column;
    }

    .parent-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    /* Global title styles used */

    .hero-section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .hero-title {
        font-size: 30px !important;
        line-height: 1.2 !important;
    }

    .hero-features li {
        font-size: 14px;
    }

    .problem-cards {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        /* Align items stretch ensures all cards have the same height as the tallest one */
        align-items: stretch !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        padding: 40px 20px 60px !important;
        gap: 20px !important;
        position: relative !important;
        z-index: 50 !important;

        /* Native Touch Scroll - KESİN ÇÖZÜM */
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none;
        scroll-behavior: auto !important;
        /* JS ile smooth yapılıyor, native'de auto kalsın */
        touch-action: pan-x pan-y !important;
        /* Hem yatay hem dikey kaydırmaya izin ver */
        pointer-events: auto !important;
        /* Tıklamayı garantiye al */
    }

    .problem-cards::-webkit-scrollbar {
        display: none;
    }

    /* ÖNEMLİ: Ana section'daki overflow: hidden manuel kaydırmayı engelliyor! */
    .problem-section {
        overflow-x: visible !important;
        /* Yatay kaydırmaya izin ver */
        overflow-y: visible !important;
        /* Dikey de visible olsun ki kartlar kesilmesin */
        padding: 40px 0 !important;
        /* Mobilde padding'i 80px'den 40px'e düşürdük */
    }

    /* Hero background wrapper'daki aşırı boşlukları mobilde azalt */
    .hero-bg-wrapper {
        padding: 24px 0 !important;
        /* 48px'den 24px'e düştü */
        margin-bottom: 40px !important;
        /* 80px'den 40px'e düştü */
        padding-top: 60px !important;
        /* 96px'den 60px'e düştü */
        margin-top: -60px !important;
        /* Bunu da uyumlu hale getirdik */
    }

    /* Gradient overlay yüksekliklerini de azalt */
    .hero-bg-wrapper::after {
        background:
            linear-gradient(to bottom, #0a0e27 0%, transparent 80px),
            linear-gradient(to top, #0a0e27 0%, transparent 80px) !important;
    }

    .problem-card {
        flex: 0 0 75% !important;
        /* Genişlik %75 ideal */
        width: 75% !important;
        max-width: 320px !important;

        height: auto !important;
        /* Stretch sayesinde container boyunu alır */
        min-height: auto !important;

        scroll-snap-align: center !important;
        scroll-snap-stop: always !important;

        margin-bottom: 0 !important;
        transform: none !important;

        display: flex;
        flex-direction: column;
        user-select: none;
    }

    .problem-card-image {
        height: 200px !important;
        /* SABİT YÜKSEKLİK - Resimlerin devleşmesini engelle */
        width: 100% !important;
        flex-shrink: 0 !important;
    }

    .problem-card-image img {
        height: 100% !important;
        object-fit: cover !important;
    }

    .problem-card-content {
        flex: 1 1 auto !important;
        /* İçeriğin esnek olması sağlandı */
        display: flex;
        flex-direction: column;
        padding: 20px 16px !important;
        overflow: visible !important;
        /* Yazıların kesilmesini engelle */
        background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 1) 100%);
    }

    /* Mobilde zigzag marjlarını tamamen sıfırla */
    .problem-card:nth-child(2),
    .problem-card:nth-child(4) {
        margin-bottom: 0 !important;
    }

    .feature-block {
        margin-bottom: 64px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-card-title {
        font-size: 20px;
    }

    .parent-feature-pill {
        flex-direction: column;
        text-align: center;
        border-radius: 24px;
        padding: 24px 16px;
    }
}

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

    /* Global title styles used */

    .feature-card-list li {
        font-size: 14px;
    }

    .parent-feature-pill p {
        font-size: 16px;
    }
}

/* Hero Section Mobile Adjustments */
@media (max-width: 1200px) {
    .hero-dots {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-image-main {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .hero-screenshot {
        width: 85%;
        height: 85%;
    }
}

/* ==========================================
   VIDEO THUMBNAIL WITH PLAY OVERLAY
   ========================================== */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.02);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: background 0.3s ease;
}

.video-thumbnail:hover .play-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.play-icon {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-icon {
    transform: scale(1.1);
}

/* Video Player when active */
.video-thumbnail.playing {
    cursor: default;
}

.video-thumbnail.playing .play-overlay {
    display: none;
}

.video-thumbnail.playing img {
    display: none;
}

.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}