@charset "UTF-8";
/* Bankodaş Landing - Spor Alarm Tarzı Profesyonel Tasarım */

:root {
    --landing-bg: #0a0a0f;
    --landing-bg-elevated: #12121a;
    --landing-card: #1a1a24;
    --landing-border: rgba(255, 255, 255, 0.08);
    --landing-accent: #00baff;
    --landing-accent-dim: rgba(0, 186, 255, 0.15);
    --landing-text: #ffffff;
    --landing-text-muted: #8b8b9e;
    --landing-success: #22c55e;
    --landing-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    box-sizing: border-box;
}

/* SEO & Erişilebilirlik - Ekran okuyucular için gizli metin */
.landing-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* site.css beyaz arka planı geçersiz kılmak için !important */
html body.landing-body,
body.landing-body {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh !important;
    height: auto !important;
    font-family: var(--landing-font);
    background: #0a0a0f !important;
    background-color: #0a0a0f !important;
    color: #ffffff !important;
    overflow-x: hidden;
}

/* html elementi - site.css override */
html.landing-page {
    background: #0a0a0f !important;
    background-color: #0a0a0f !important;
}

/* Hero - Tam ekran arka plan, sadece üst gövde */
.landing-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Koyu overlay - yazıların okunabilirliği için */
.landing-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.7) 0%, rgba(10, 10, 15, 0.85) 100%);
    pointer-events: none;
}

.landing-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.landing-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 0 auto 1rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #ffffff !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.landing-subheadline {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    margin: 0 0 1rem;
    color: #ffffff !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.landing-headline-accent {
    background: linear-gradient(135deg, var(--landing-accent), #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-tagline {
    font-size: 1.125rem;
    color: #b8b8c8 !important;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
    margin: 0 auto 2rem;
    max-width: 480px;
    line-height: 1.6;
    text-align: center;
}

.landing-cta-group {
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
}

.landing-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.landing-cta-primary {
    background: var(--landing-accent);
    color: #0a0a0f !important;
}

.landing-cta-primary:hover {
    background: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 186, 255, 0.4);
    color: #0a0a0f !important;
}

.landing-cta-icon {
    width: 22px;
    height: 22px;
}

.landing-cta-large {
    font-size: 1.125rem;
    padding: 1.25rem 2.25rem;
}

.landing-cta-large .landing-cta-icon {
    width: 24px;
    height: 24px;
}

/* Product Mockup */
.landing-product-preview {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.landing-mockup {
    background: var(--landing-card);
    border: 1px solid var(--landing-border);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.landing-mockup-screen {
    background: var(--landing-bg-elevated);
    border-radius: 16px;
    overflow: hidden;
}

.landing-mockup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--landing-border);
}

.landing-mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--landing-text-muted);
    opacity: 0.5;
}

.landing-mockup-title {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #b8b8c8 !important;
}

.landing-mockup-content {
    padding: 16px;
}

.landing-mockup-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.85rem;
    color: #ffffff !important;
}

.landing-mockup-team {
    flex: 1;
    text-align: left;
}

.landing-mockup-team:last-child {
    text-align: right;
}

.landing-mockup-score {
    font-weight: 700;
    color: var(--landing-accent);
    padding: 0 12px;
}

.landing-mockup-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--landing-accent-dim);
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--landing-accent);
    margin: 8px 0;
}

.landing-mockup-alert-icon {
    font-size: 1rem;
}

/* Stats */
.landing-stats {
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
}

.landing-stats-inner {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.landing-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.landing-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff !important;
}

.landing-stat-label {
    font-size: 0.8rem;
    color: #b8b8c8 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 600px) {
    .landing-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Features */
.landing-features {
    padding: 5rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.landing-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
    color: #ffffff !important;
}

.landing-section-subtitle {
    text-align: center;
    color: #b8b8c8 !important;
    margin: 0 0 3rem;
    font-size: 1rem;
}

.landing-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (max-width: 700px) {
    .landing-feature-grid {
        grid-template-columns: 1fr;
    }
}

.landing-feature-card {
    background: var(--landing-card);
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.25s ease;
}

.landing-feature-card:hover {
    border-color: rgba(0, 186, 255, 0.3);
    transform: translateY(-2px);
}

.landing-feature-live {
    border-color: rgba(34, 197, 94, 0.3);
}

.landing-feature-status {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--landing-accent);
    background: var(--landing-accent-dim);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.landing-feature-live .landing-feature-status {
    color: var(--landing-success);
    background: rgba(34, 197, 94, 0.15);
}

.landing-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #ffffff !important;
}

.landing-feature-card p {
    font-size: 0.9rem;
    color: #b8b8c8 !important;
    margin: 0;
    line-height: 1.5;
}

/* FAQ - Featured Snippet için optimize */
.landing-faq {
    padding: 4rem 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.landing-faq .landing-section-title {
    margin-bottom: 2rem;
}

.landing-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.landing-faq-item {
    background: var(--landing-card);
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.landing-faq-question {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #ffffff !important;
}

.landing-faq-answer {
    font-size: 0.9rem;
    color: #b8b8c8 !important;
    margin: 0;
    line-height: 1.6;
}

/* Final CTA */
.landing-final-cta {
    padding: 4rem 1.5rem;
    text-align: center;
    background: var(--landing-bg-elevated);
    border-top: 1px solid var(--landing-border);
}

.landing-final-cta h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #ffffff !important;
}

.landing-final-cta p {
    color: #b8b8c8 !important;
    margin: 0 0 1.5rem;
    font-size: 1rem;
}

/* Footer */
.landing-footer {
    padding: 2rem 1.5rem;
    text-align: center;
    color: #b8b8c8 !important;
    font-size: 0.875rem;
}

.landing-footer a {
    color: var(--landing-accent);
    text-decoration: none;
}

.landing-footer a:hover {
    text-decoration: underline;
}
