/* POPPINS FONT AILESI - LOCAL OPTIMIZASYONU
   font-display: swap ve metric overrides ile Lighthouse uyumlu hale getirildi.
*/

/* Regular - 400 */
@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-v24-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    /* Metrik düzeltmeleri: Sistem fontuyla Poppins arasındaki farkı kapatır */
    ascent-override: 105%;
    descent-override: 35%;
    line-gap-override: 10%;
}

/* Medium - 500 */
@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-v24-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    ascent-override: 105%;
    descent-override: 35%;
    line-gap-override: 10%;
}

/* SemiBold - 600 */
@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-v24-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    ascent-override: 105%;
    descent-override: 35%;
    line-gap-override: 10%;
}

/* Bold - 700 */
@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-v24-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    ascent-override: 105%;
    descent-override: 35%;
    line-gap-override: 10%;
}

/* --- Global Font Uygulaması --- */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---------- 2. DEĞİŞKENLER (Telegram Teması) ---------- */
:root {
    --bg-primary: #0e1621;      
    --bg-secondary: #17212b;    
    --bg-card: #242f3d;         
    --bg-card-hover: #2b394a;
    --accent: #24a1de;          
    --text-primary: #ffffff;
    --text-secondary: #7f91a4;  
    --border: rgba(255, 255, 255, 0.08);
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

/* ---------- 3. SIFIRLAMA VE GENEL ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 25px;
}

section {
    padding: 100px 0; /* Bölümler arası ana boşluk */
}

/* ---------- 4. HEADER & NAV ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(14, 22, 33, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* ---------- 5. BUTONLAR ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-register, .btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-register:hover, .btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(36, 161, 222, 0.4);
}

/* ---------- 6. HERO SECTION ---------- */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: radial-gradient(circle at top center, rgba(36, 161, 222, 0.15), transparent 70%);
    overflow: hidden;
}

.hero-content { max-width: 850px; }

.hero-content h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-feature {
    background: var(--bg-card);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature i { color: var(--accent); }

/* ---------- 7. SECTION HEADERS ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px; /* Başlık ile kartlar arasındaki boşluk */
}

.section-header h2, .section-header h3 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

/* ---------- 8. GRIDS & CARDS ---------- */
.features { background: var(--bg-secondary); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; /* Kartlar arasındaki nefes alma alanı */
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.feature-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.onlyfans-img {
    width: 400px;
    height: 400px;
    overflow: hidden;
}

.onlyfans-img img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

.feature-card h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
}

.feature-card p {
    padding: 0 20px 25px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* ---------- 9. SEO CONTENT ---------- */
.seo-content { background: var(--bg-secondary); }
.content-wrapper { max-width: 900px; margin: 0 auto; }

.main-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--accent);
}

.main-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* ---------- Ortalama ---------- */

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    
    /* Metinleri ortalayan sihirli dokunuş: */
    text-align: center; 
}

/* Padding değerlerini de ortalamaya göre hafifçe düzeltebilirsin */
.feature-card h3 {
    padding: 20px 15px 10px; /* Sağ ve soldan eşit boşluk */
    font-size: 18px;
}

.feature-card p {
    padding: 0 15px 25px; /* Sağ ve soldan eşit boşluk */
    color: var(--text-secondary);
    font-size: 14px;
}

/* ---------- 10. FOOTER ---------- */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.footer-logo img { height: 40px; }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

/* ---------- 11. ANIMATIONS & RESPONSIVE ---------- */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-hero { animation: fadeSlideUp 0.8s ease forwards; }
.animate-hero-delay-1 { animation: fadeSlideUp 0.8s 0.2s ease forwards; opacity: 0; }
.animate-hero-delay-2 { animation: fadeSlideUp 0.8s 0.4s ease forwards; opacity: 0; }

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .nav { height: 70px; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 32px; }
    .footer-top { flex-direction: column; gap: 30px; }
}