/* Fontlar HTML'den yükleniyor - burada @import yok */

:root {
    --red: #FF4655;
    --cyan: #00F5FF;
    --dark: #0F1923;
    --darker: #080D13;
    --card: rgba(15,25,35,0.9);
    --white: #fff;
    --gray: #8B9BB4;
    --border: rgba(255,70,85,0.2);
    /* Sistem fontları - harici istek yok */
    --font-title: 'Impact', 'Arial Black', sans-serif;
    --font-body: 'Segoe UI', 'Arial', sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}

body {
    font-family: var(--font-body);
    background: var(--darker);
    color: var(--white);
    overflow-x: hidden;
}

/* ── ARKA PLAN ── */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(135deg, #080D13 0%, #0F1923 50%, #080D13 100%);
}

/* Grid çizgiler */
.site-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,70,85,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,70,85,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* Renk ışıkları */
.site-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 5% 50%, rgba(255,70,85,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 95% 50%, rgba(0,245,255,0.07) 0%, transparent 60%);
}

/* Valorant karakter görseli - sol */
.bg-char-left {
    position: fixed;
    left: 0;
    bottom: 0;
    height: 90vh;
    max-height: 800px;
    width: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 0.18;
    filter: grayscale(40%) brightness(0.6) contrast(1.2);
    object-fit: contain;
    object-position: bottom left;
    /* Siyah tarafa karışsın diye gradient mask */
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
}

/* Valorant karakter görseli - sağ */
.bg-char-right {
    position: fixed;
    right: 0;
    bottom: 0;
    height: 85vh;
    max-height: 750px;
    width: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
    filter: grayscale(40%) brightness(0.6) contrast(1.2);
    object-fit: contain;
    object-position: bottom right;
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
}

/* Karakter yoksa CSS silüet */
.bg-char-fallback-left,
.bg-char-fallback-right {
    position: fixed;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    width: 260px;
    height: 620px;
    opacity: 0.22;   /* daha görünür */
}
.bg-char-fallback-left { left: 0; }
.bg-char-fallback-right { right: 0; transform: scaleX(-1); }

/* ── CONTAINER ── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(8,13,19,0.95);
    border-bottom: 1px solid var(--border);
    padding: 0;
    will-change: auto;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-brand { text-decoration: none; display: flex; align-items: center; }
.nav-brand .logo { height: 36px; }
.logo-text {
    font-family: var(--font-title);
    font-size: 26px;
    letter-spacing: 3px;
    color: var(--white);
}
.logo-red { color: var(--red); }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 22px;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.nav-menu { display: flex; list-style: none; gap: 32px; }
.nav-menu a {
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-menu a:hover { color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn-primary {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: background 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-primary:hover {
    background: #e03040;
    box-shadow: 0 6px 24px rgba(255,70,85,0.45);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--red);
    color: var(--red);
    padding: 8px 22px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-secondary:hover { background: var(--red); color: #fff; }

.theme-toggle {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    width: 38px; height: 38px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    color: var(--white);
    transition: background 0.2s;
}
.theme-toggle:hover { background: rgba(255,70,85,0.15); }

/* ── TICKER ── */
.testimonials-ticker {
    background: rgba(8,13,19,0.85);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.ticker-track {
    display: flex;
    gap: 32px;
    animation: ticker 35s linear infinite;
    width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,70,85,0.05);
    border: 1px solid rgba(255,70,85,0.12);
    border-radius: 4px;
    padding: 10px 18px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-avatar, .ticker-avatar-placeholder {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid var(--red);
    flex-shrink: 0;
}
.ticker-avatar { object-fit: cover; }
.ticker-avatar-placeholder {
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    background: rgba(255,70,85,0.1);
}

.ticker-name { font-size: 13px; font-weight: 700; color: var(--white); }
.ticker-text { font-size: 12px; color: var(--gray); max-width: 220px; overflow: hidden; text-overflow: ellipsis; }
.ticker-stars { color: var(--red); font-size: 11px; }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 68px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.hero-eyebrow-line { width: 36px; height: 2px; background: var(--red); }
.hero-eyebrow span {
    font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; color: var(--red);
}

.hero-title {
    font-family: var(--font-title);
    font-size: 88px;
    line-height: 0.92;
    margin-bottom: 24px;
}
.hero-title .line1 { color: var(--white); display: block; }
.hero-title .line2 { color: var(--red); display: block; text-shadow: 0 0 30px rgba(255,70,85,0.5); }
.hero-title .line3 { color: var(--white); display: block; }

.hero-description {
    font-size: 17px; line-height: 1.7;
    margin-bottom: 36px; color: var(--gray);
}
.hero-description .accent { color: var(--cyan); font-weight: 700; }

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-large { padding: 14px 36px; font-size: 15px; }

.hero-stats {
    display: flex; gap: 36px;
    margin-top: 44px; padding-top: 28px;
    border-top: 1px solid var(--border);
}
.stat-number {
    font-family: var(--font-title);
    font-size: 40px; color: var(--red); line-height: 1;
}
.stat-label { font-size: 11px; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; margin-top: 3px; }

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 580px;
}

.troll-character {
    max-height: 560px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(255,70,85,0.45));
    animation: heroFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes heroFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

.hero-glow {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 360px; height: 160px;
    background: radial-gradient(ellipse, rgba(255,70,85,0.25) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
    pointer-events: none;
}

/* Halkalar - sadece 2 tane, hafif */
.hero-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255,70,85,0.12);
    pointer-events: none;
}
.hero-ring:nth-child(1) { width: 320px; height: 320px; }
.hero-ring:nth-child(2) { width: 500px; height: 500px; border-color: rgba(0,245,255,0.07); }

.floating-badge {
    position: absolute;
    background: rgba(8,13,19,0.92);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: badgeFloat 3s ease-in-out infinite;
}
.badge-icon { font-size: 22px; }
.badge-text { font-size: 13px; font-weight: 700; }
.badge-sub { font-size: 11px; color: var(--gray); }
.badge-1 { top: 15%; left: -10px; animation-delay: 0s; }
.badge-2 { top: 42%; right: -10px; animation-delay: 1s; border-color: rgba(0,245,255,0.3); }
.badge-3 { bottom: 18%; left: 0; animation-delay: 2s; }

@keyframes badgeFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 60px; }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.section-eyebrow::before,.section-eyebrow::after {
    content: ''; width: 28px; height: 1px; background: var(--red);
}
.section-eyebrow span {
    font-size: 11px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase; color: var(--red);
}

.section-title {
    font-family: var(--font-title);
    font-size: 60px; line-height: 1; text-transform: uppercase;
}
.section-title .white { color: var(--white); }
.section-title .red { color: var(--red); }
.section-title .cyan { color: var(--cyan); }

/* ── SERVICES ── */
.services { padding: 100px 0; position: relative; content-visibility: auto; }


.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 2px solid var(--red);
    padding: 32px 20px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 40px rgba(255,70,85,0.25);
    border-color: var(--red);
}

.service-icon {
    width: 64px; height: 64px;
    margin: 0 auto 18px;
    background: rgba(255,70,85,0.08);
    border: 1px solid rgba(255,70,85,0.25);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    transition: background 0.25s;
    line-height: 1;
}
.service-card:hover .service-icon { background: rgba(255,70,85,0.18); }
.service-icon img { width: 36px; height: 36px; display: block; }

.service-card h3 {
    color: var(--white); font-size: 14px;
    margin-bottom: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.service-card p { color: var(--gray); line-height: 1.5; font-size: 13px; }

/* ── HOW IT WORKS ── */
.how-it-works {
    padding: 100px 0;
    background: rgba(8,13,19,0.4);
    position: relative;
    content-visibility: auto;
}
.how-it-works::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.step { flex: 1; text-align: center; }

.step-number {
    width: 72px; height: 72px;
    background: var(--red);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-title);
    font-size: 32px;
    margin: 0 auto 18px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 0 20px rgba(255,70,85,0.4);
    transition: transform 0.2s;
}
.step:hover .step-number { transform: scale(1.08); }
.step h3 { color: var(--white); font-size: 17px; margin-bottom: 8px; font-weight: 700; text-transform: uppercase; }
.step p { color: var(--gray); font-size: 13px; line-height: 1.5; }
.step-arrow { font-size: 26px; color: var(--red); opacity: 0.4; flex-shrink: 0; padding-top: 24px; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 0; content-visibility: auto; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    padding: 24px;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(255,70,85,0.2); }
.testimonial-card:nth-child(even) { border-left-color: var(--cyan); }

.quote-icon {
    font-family: var(--font-title);
    font-size: 70px; color: var(--red); opacity: 0.12;
    position: absolute; top: 8px; right: 16px; line-height: 1;
}

.testimonial-text { color: var(--gray); line-height: 1.6; margin-bottom: 18px; font-size: 14px; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img,
.author-avatar-placeholder {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid var(--red);
    flex-shrink: 0;
}
.testimonial-author img { object-fit: cover; }
.author-avatar-placeholder {
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; background: rgba(255,70,85,0.1);
}
.author-name { color: var(--white); font-weight: 700; font-size: 14px; }
.author-rank { color: var(--red); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }

/* ── CTA ── */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(255,70,85,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta-title {
    font-family: var(--font-title);
    font-size: 76px; margin-bottom: 14px; text-transform: uppercase;
}
.cta-subtitle { font-size: 20px; color: var(--gray); margin-bottom: 44px; }
.btn-huge { padding: 20px 64px; font-size: 18px; letter-spacing: 2px; }

/* ── FOOTER ── */
.footer {
    background: rgba(8,13,19,0.98);
    padding: 36px 0;
    border-top: 1px solid var(--border);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-brand img { height: 30px; }
.footer-brand .logo-text { font-family: var(--font-title); font-size: 22px; letter-spacing: 3px; color: var(--white); }
.footer-brand .logo-red { color: var(--red); }
.footer-text { color: var(--gray); font-size: 13px; }
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 36px; height: 36px;
    background: rgba(255,70,85,0.08);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray); text-decoration: none;
    font-size: 15px;
    transition: background 0.2s, transform 0.2s;
}
.social-link:hover { background: var(--red); color: #fff; transform: translateY(-2px); }

/* ── FADE UP ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:1100px){ .services-grid{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:900px){
    .hero-content{ grid-template-columns:1fr; text-align:center; }
    .hero-image{ height:320px; }
    .hero-title{ font-size:58px; }
    .hero-buttons{ justify-content:center; }
    .hero-stats{ justify-content:center; }
    .nav-menu{ display:none; }
    .nav-toggle{ display:block; }
    .nav-menu.open{
        display:flex;
        flex-direction:column;
        position:absolute;
        top:68px; left:0; right:0;
        background:rgba(8,13,19,0.98);
        border-bottom:1px solid var(--border);
        padding:20px 24px;
        gap:20px;
        z-index:99;
    }
    .nav-actions .btn-primary{ display:none; }
    .section-title{ font-size:42px; }
    .cta-title{ font-size:50px; }
    .step-arrow{ display:none; }
    .steps-container{ flex-wrap:wrap; gap:28px; }
    .bg-char-fallback-left,.bg-char-fallback-right,
    .bg-char-left,.bg-char-right{ display:none; }
    .floating-badge{ display:none; }
}
@media(max-width:600px){
    .services-grid{ grid-template-columns:1fr 1fr; }
    .hero-title{ font-size:44px; }
    .footer-content{ flex-direction:column; text-align:center; }
    .hero-stats{ gap:20px; }
    .stat-number{ font-size:32px; }
}

/* ── HERO EMOJİ FALLBACK ── */
.hero-emoji {
    font-size: 160px;
    animation: heroFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255,70,85,0.5));
    line-height: 1;
}
