/* Pulla web — uygulamanın aurora + altın temasının web karşılığı */

:root {
    --bg-deep: #081430;
    --bg-mid: #0f2654;
    --gold-light: #faad2e;
    --gold-deep: #eb6b29;
    --glass: rgba(255, 255, 255, 0.10);
    --glass-border: rgba(255, 255, 255, 0.12);
    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.72);
    --text-faint: rgba(255, 255, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    background:
        radial-gradient(52vw 52vw at 12% 6%, rgba(77, 158, 255, 0.42), transparent 70%),
        radial-gradient(42vw 42vw at 96% 32%, rgba(64, 217, 242, 0.22), transparent 70%),
        radial-gradient(48vw 48vw at 45% 100%, rgba(115, 97, 242, 0.30), transparent 70%),
        linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
    background-attachment: fixed;
}

.container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Nav ---------- */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}

.brand-badge {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    overflow: hidden;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 18px rgba(235, 107, 41, 0.45);
}

.brand-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text);
}

/* ---------- Hero ---------- */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 64px 0 88px;
    flex-wrap: wrap;
}

.hero-copy {
    flex: 1 1 380px;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.5px;
}

.hero h1 .gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    margin-top: 18px;
    font-size: 19px;
    color: var(--text-dim);
    max-width: 460px;
}

.hero-cta {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(235, 107, 41, 0.42);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(235, 107, 41, 0.5);
}

.hero-visual {
    flex: 0 1 360px;
    display: flex;
    justify-content: center;
}

.hero-visual img {
    width: min(320px, 78vw);
    filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.45));
    animation: float 5s ease-in-out infinite;
}

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

/* ---------- Özellikler ---------- */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    padding-bottom: 88px;
}

.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px 24px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.card .icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid var(--glass-border);
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
}

.card p {
    font-size: 15px;
    color: var(--text-dim);
}

/* ---------- Premium şeridi ---------- */

.premium {
    margin-bottom: 88px;
    border-radius: 24px;
    padding: 36px 32px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
    box-shadow: 0 20px 48px rgba(235, 107, 41, 0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.premium h2 {
    font-size: 26px;
    font-weight: 800;
}

.premium p {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
}

/* ---------- Footer ---------- */

footer {
    border-top: 1px solid var(--glass-border);
    padding: 32px 0 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--text-faint);
    font-size: 14px;
}

footer .footer-links {
    display: flex;
    gap: 20px;
}

footer a {
    color: var(--text-faint);
    text-decoration: none;
}

footer a:hover {
    color: var(--text);
}

/* ---------- Yasal sayfalar ---------- */

.legal {
    max-width: 760px;
    margin: 24px auto 72px;
    padding: 44px clamp(24px, 5vw, 48px);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.legal h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 6px;
}

.legal .updated {
    color: var(--text-faint);
    font-size: 14px;
    margin-bottom: 32px;
}

.legal h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 10px;
}

.legal p, .legal li {
    color: var(--text-dim);
    font-size: 16px;
}

.legal ul {
    padding-left: 22px;
    margin: 10px 0;
}

.legal li {
    margin-bottom: 6px;
}

.legal a {
    color: var(--gold-light);
    text-decoration: none;
}

.legal a:hover {
    text-decoration: underline;
}
