:root {
    --bg1: #1b1b2a;
    --bg2: #2a2740;
    --acc1: #ff5e62;
    --acc2: #ff9966;
    --gold: #ffd369;
    --ink: #f6f7fb;
    --card: rgba(255, 255, 255, .06);
    --stroke: rgba(255, 255, 255, .12);
    --muted: #cfd2dc;
    --ok: #2bd67b;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: sans-serif;
    color: var(--ink);
    background: linear-gradient(135deg, var(--bg1), var(--bg2));
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    border: 1px solid var(--stroke);
    background: var(--card);
    border-radius: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700
}

.brand .logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: conic-gradient(from 180deg, var(--acc1), var(--acc2))
}

.brand .apklogo {
    height: 60px;
    border-radius: 6px;
}


.cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.btn {
    border: none;
    cursor: pointer;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 10px;
    color: #111;
    background: linear-gradient(135deg, var(--gold), #fbe9a0);
}

.btn.secondary {
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--stroke)
}

.hero {
    display: grid;
    grid-template-columns:1.2fr .8fr;
    gap: 24px;
    align-items: center;
    margin-top: 22px
}

.card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 24px;
    padding: 28px
}

.h1 {
    font-size: clamp(28px, 4.2vw, 48px);
    margin: 0
}

.highlight {
    background: linear-gradient(135deg, var(--acc1), var(--acc2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.sub {
    color: var(--muted);
    margin: .8rem 0 1.4rem
}

.store-badge img {
    height: 56px
}

.play-badge {
    position: relative;
    display: inline-block;
    text-decoration: none !important;
}

.play-badge::after {
    content: "";
    position: absolute;
    bottom: 0; /* butonun altına otur */
    left: 0; /* tam sol başlasın */
    width: 100%; /* buton genişliği kadar olsun */
    height: 3px; /* çizgi kalınlığı */
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.9), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.play-badge:hover::after {
    transform: scaleX(1);
}


/* Hover’da altın plaka efekti */
.play-badge:hover {
    color: #111;
    background: linear-gradient(135deg, #FFD700, #FFC107, #FFD700);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}


.media {
    aspect-ratio: 9/16;
    border-radius: 24px;
    border: 1px solid var(--stroke);
    overflow: hidden
}

.phone-shot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px
}

.live {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(43, 214, 123, .10);
    border: 1px solid rgba(43, 214, 123, .25);
    color: #d7ffe8
}

.dot {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--ok)
}

.dot::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 2px solid rgba(43, 214, 123, .45);
    animation: pulse 1.8s ease-out infinite
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(.6)
    }
    70% {
        opacity: 0;
        transform: scale(1.6)
    }
    100% {
        opacity: 0
    }
}

.features {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px;
    margin-top: 22px
}

.feat {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--stroke);
    background: var(--card)
}

.feat h3 {
    margin: 0 0 .4rem
}

.feat p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5
}

.strip {
    margin-top: 22px;
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 12px
}

.tile {
    height: 120px;
    border-radius: 16px;
    border: 1px solid var(--stroke);
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8bdc9
}

details {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 14px;
    padding: 12px 14px
}

summary {
    cursor: pointer;
    font-weight: 600
}

.faq {
    display: grid;
    gap: 10px
}

.faq-content {
    margin-top: 8px;
    color: var(--muted)
}

footer {
    margin: 26px 0;
    color: #a9afbb;
    font-size: 13px;
    text-align: center
}

@media (max-width: 880px) {
    .hero {
        grid-template-columns:1fr
    }

    .features {
        grid-template-columns:1fr 1fr
    }

    .strip {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 560px) {
    .features {
        grid-template-columns:1fr
    }

    .strip {
        grid-template-columns:1fr
    }

    .store-badge img {
        height: 50px
    }
}
