        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html,
        body {
            height: 100%;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }

        .lp-scene {
            position: relative;
            width: 100vw;
            height: 100vh;
            display: grid;
            grid-template-rows: auto 1fr auto;
            overflow: hidden;
        }

      .lp-bg {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}

.lp-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) saturate(0.8);
}

/* YouTube iframe arka plan: 16:9 oversize trick — iframe object-fit:cover desteklemediği için */
.lp-bg-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;       /* 16:9 oranı */
    min-height: 100vh;
    min-width: 177.78vh;   /* 16:9 oranı */
    border: 0;
    pointer-events: none;
    filter: brightness(0.65) saturate(0.8);
}

/* Görsel arka plan */
.lp-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.65) saturate(0.8);
}

        .lp-grad-left {
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg,
                    rgba(1, 15, 8, 0.97) 0%,
                    rgba(2, 24, 12, 0.92) 30%,
                    rgba(3, 38, 18, 0.72) 55%,
                    rgba(4, 50, 22, 0.35) 72%,
                    transparent 88%);
            z-index: 1;
        }

        /* YENİ: Sağ üst mavi gradient */
        .lp-grad-health {
            position: absolute;
            top: 0;
            right: 0;
            width: 55%;
            height: 60%;
            background: radial-gradient(ellipse at top right,
                    rgba(59, 130, 246, 0.14) 0%,
                    rgba(96, 165, 250, 0.07) 45%,
                    transparent 70%);
            z-index: 2;
            pointer-events: none;
        }

        .lp-grad-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(1, 12, 6, 0.92) 0%, transparent 100%);
            z-index: 1;
        }

        .lp-header {
            position: relative;
            z-index: 10;
            padding: clamp(18px, 2.5vh, 32px) clamp(24px, 3.5vw, 52px) 0;
        }

        .lp-logo img {
            height: clamp(32px, 4vh, 46px);
            width: auto;
            filter: brightness(0) invert(1);
        }

        .lp-content {
            position: relative;
            z-index: 10;
            top: 180px;
            display: flex;
            align-items: center;
            padding: 18px 48px;
        }

        .lp-hero {
            width: 50%;
            display: flex;
            flex-direction: column;
            gap: clamp(8px, 1.2vh, 14px);
        }

        .lp-eyebrow {
            font-size: clamp(11px, 1vw, 13px);
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--landing-accent, #10b981);
            margin: 0;
        }

        .lp-headline {
            margin: 0;
            line-height: 1;
        }

        .lp-headline .lp-hl-main {
            display: block;
            font-size: clamp(2.4rem, 5vw, 2.8rem);
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.5px;
            line-height: 1;
        }

        .lp-headline .lp-hl-sub {
            display: block;
            font-size: clamp(1.5rem, 3.2vw, 2.2rem);
            font-weight: 300;
            color: rgba(255, 255, 255, 0.75);
            letter-spacing: -0.3px;
            line-height: 1.2;
            margin-top: clamp(6px, 1vh, 12px);
        }

        .lp-slogan {
            font-size: clamp(0.95rem, 1.4vw, 1rem);
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.65;
            margin: clamp(4px, 0.8vh, 10px) 0 0;
        }

        .lp-bottom {
            position: relative;
            z-index: 10;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            padding: 0 clamp(24px, 3.5vw, 52px) clamp(20px, 3vh, 40px);
            gap: 24px;
            margin-top: -20px;
        }

        .lp-left-bottom {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .lp-meta-card {
            display: flex;
            gap: 0;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 10px;
            /* DEĞİŞTİ */
            overflow: hidden;
        }

        .lp-meta-item {
            display: flex;
            flex-direction: column;
            gap: 3px;
            padding: 13px 22px;
        }

        .lp-meta-item+.lp-meta-item {
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

        .lp-meta-label {
            font-size: 13px;
            color: var(--landing-accent, #10b981);
            font-weight: 700;
            letter-spacing: 1.8px;
            text-transform: uppercase;
        }

        .lp-meta-value {
            font-size: 16px;
            color: #ffffff;
            font-weight: 500;
        }

        .lp-right-bottom {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 14px;
        }

        .lp-btn-row {
            display: flex;
            gap: 10px;
            width: 100%;
        }

        /* Siteye Git — düz accent, gradient yok */
        .lp-btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            width: 100%;
            background: var(--landing-accent, #10b981);
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.2px;
            padding: 10px 18px;
            border-radius: 10px;
            text-decoration: none;
            transition: background 0.25s;
            white-space: nowrap;
        }

        .lp-btn-primary i {
            font-size: 10px;
        }

        .lp-btn-primary:hover {
            background: rgba(var(--landing-accent-rgb, 16, 185, 129), 0.85);
            color: #ffffff;
        }

        .lp-btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            background: transparent;
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.2px;
            padding: 10px 18px;
            border-radius: 10px;
            border: 1px solid rgba(var(--landing-accent-rgb, 16, 185, 129), 0.3);
            text-decoration: none;
            width: 100%;
            transition: background 0.25s, border-color 0.25s;
            white-space: nowrap;
            backdrop-filter: blur(8px);
        }

        .lp-btn-outline:hover {
            background: rgba(var(--landing-accent-rgb, 16, 185, 129), 0.1);
            border-color: rgba(var(--landing-accent-rgb, 16, 185, 129), 0.5);
            color: #ffffff;
        }

        .lp-scene .others-times-area .timer {
            display: flex !important;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
        }

        .lp-scene .others-times-area .timer .time-box {
            background: rgba(255, 255, 255, 0.08) !important;
            /* DEĞİŞTİ */
            /* DEĞİŞTİ */
            border-radius: 10px !important;
            padding: 14px 20px !important;
            text-align: center;
            width: 100%;
        }

        .lp-scene .others-times-area .timer .time-box::after {
            content: attr(data-label);
            display: block;
            font-size: 9px;
            color: var(--landing-accent, #10b981);
            font-weight: 600;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            margin-top: 5px;
        }

        .lp-scene .others-times-area .timer .time-value {
            color: #ffffff !important;
            font-size: clamp(1.8rem, 3.2vw, 2.1rem) !important;
            font-weight: 700 !important;
            line-height: 1 !important;
            letter-spacing: -0.5px;
            display: block;
        }

        .lp-agenda {
            display: flex;
            flex-direction: column;
            gap: 6px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            /* DEĞİŞTİ */
            border-radius: 10px;
            padding: 12px 16px;
        }

        .lp-agenda-title {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--landing-accent, #10b981);
            margin-bottom: 4px;
        }

        .lp-agenda-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .lp-ag-time {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.35);
            font-weight: 500;
            white-space: nowrap;
            min-width: 80px;
        }

        .lp-ag-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: rgba(var(--landing-accent-rgb, 16, 185, 129), 0.35);
            flex-shrink: 0;
        }

        .lp-ag-name {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 400;
            line-height: 1.3;
        }

        /* Animasyonlar */
        .anim-fade-up {
            opacity: 0;
            transform: translateY(24px);
        }

        .anim-fade-left {
            opacity: 0;
            transform: translateX(-20px);
        }

        .anim-fade-in {
            opacity: 0;
        }

        @media (max-width: 900px) {

            html,
            body {
                overflow-y: auto;
            }

            .lp-scene {
                height: auto;
                min-height: 100vh;
            }
           

              .lp-content {
                margin-top: 16px;
            position: static;
            display: flex;
            align-items: center;
           padding: 24px 24px 32px;
        }

        .lp-headline img {
            max-width: 160px;
        }

            .lp-hero {
                width: 100%;
            }

            .lp-bottom {
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-end;
                padding: 24px 24px 32px;
                gap: 20px;
            }

            .lp-right-bottom {
                align-items: flex-start;
            }

            .lp-meta-card {
                flex-wrap: wrap;
            }
             .lp-slogan {
                font-size: clamp(0.75rem, 1.4vw, 1rem);
            }
        }

        @media (max-width: 576px) {
            .lp-bg {
                position: fixed;
            }

            .lp-grad-left {
                position: fixed;
            }

            .lp-grad-bottom {
                position: fixed;
            }

            .lp-grad-health {
                position: fixed;
                width: 100%;
                height: 40%;
            }

            .lp-scene {
                height: auto;
                min-height: 100svh;
            }

            .lp-hl-main {
                font-size: 2rem;
            }

            .lp-hl-sub {
                font-size: 1.3rem;
            }

            .lp-meta-card {
                width: 100%;
            }

            .lp-meta-item {
                flex: 1;
                padding: 10px;
            }

            .lp-meta-value {
                font-size: 12px;
            }

            .lp-meta-label {
                font-size: 10px;
            }

            .lp-scene .others-times-area .timer {
                gap: 6px;
            }

            .lp-scene .others-times-area .timer .time-box {
                flex: 1;
                padding: 10px 8px !important;
            }

            .lp-scene .others-times-area .timer .time-value {
                font-size: 1.6rem !important;
            }

            .lp-scene .others-times-area .timer .time-box::after {
                font-size: 8px;
                letter-spacing: 1px;
            }

            .lp-right-bottom {
                width: 100%;
            }

            .lp-agenda {
                width: 100%;
            }

            .lp-btn-row {
                flex-direction: column;
            }

            .lp-btn-primary,
            .lp-btn-outline {
                justify-content: center;
            }
        }