/* ========= GENEL VE DEĞİŞKENLER ========= */
:root {
    --bg-color: #0A0A0A;
    --primary-color: #FF003C;
    --text-color: #f0f0f0;
    --secondary-text-color: #a0a0a0;
    --card-bg: #111111;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 0, 60, 0.5);
}

h2.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 30px; /* Reduced margin */
    position: relative;
    padding-bottom: 15px;
}

h2.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

p {
    color: var(--secondary-text-color);
    margin-bottom: 1rem;
}

.section-intro { /* Added for general section intros */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto; /* More space after intro */
    font-size: 1.15rem;
    color: var(--text-color);
}

.text-center {
    text-align: center;
}

/* ========= BUTONLAR ========= */
.btn {
    display: inline-block;
    padding: 18px 30px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.6);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 0, 60, 1);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* ========= HERO BÖLÜMÜ ========= */
.hero-section {
    height: 80vh; /* Yüksekliği düşürüldü */
    min-height: 600px; /* Minimum yükseklik korundu */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 1)), url('img/bg.webp') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax effect */
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(circle at 10% 10%, rgba(255,0,60,0.1) 1px, transparent 1px),
            radial-gradient(circle at 90% 90%, rgba(255,0,60,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
    animation: grid-fade 8s infinite alternate;
}

@keyframes grid-fade {
    0% { opacity: 0.1; transform: scale(1); }
    100% { opacity: 0.25; transform: scale(1.05); }
}

.hero-content {
    max-width: 900px;
    animation: fadeIn 1.5s ease-in-out;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-brand {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, var(--primary-color), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 3s ease-in-out infinite alternate;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: var(--text-color);
}

/* ========= GENEL SECTION STİLİ ========= */
.content-section, .features-section {
    padding: 100px 0;
    background-color: var(--bg-color);
    position: relative;
}

/* ========= KULLANICI HİKAYELERİ / VİDEOLAR ========= */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.3);
}

.video-card iframe {
    border-radius: 5px;
    margin-bottom: 15px;
}

.before-after-text {
    margin-top: 50px;
    font-size: 1.1rem;
    color: var(--primary-color);
    padding: 15px 25px;
    background-color: rgba(255, 0, 60, 0.05);
    border-left: 5px solid var(--primary-color);
    display: inline-block;
    border-radius: 5px;
}

/* ========= AVANTAJLARA ODAKLANMIŞ BAŞLIKLAR (6 MADDE) ========= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Daha geniş kartlar için */
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 0, 60, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* ========= KARŞILAŞTIRMALI TABLOLAR ========= */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensures table doesn't get too small on mobile */
}

table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    background-color: var(--primary-color);
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

table tr:nth-child(even) {
    background-color: #1a1a1a;
}
table tr:nth-child(odd) {
    background-color: #141414;
}

.check-icon {
    color: #38b2ac; /* Teal-like green */
    font-size: 1.2rem;
}

.cross-icon {
    color: #ef4444; /* Red */
    font-size: 1.2rem;
}

/* ========= HIZ / PERFORMANS TESTLERİ ========= */
.content-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.content-section.reversed .content-layout {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.text-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
}

.text-content ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    color: var(--text-color);
}

.text-content ul li::before {
    content: '\f058'; /* Font Awesome check-circle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.image-content {
    flex: 1;
    text-align: center;
}

.image-content img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.image-caption {
    margin-top: 15px;
    font-style: italic;
    color: var(--secondary-text-color);
}

/* ========= GÖRSEL VE DUYGUSAL MESAJLAŞMA ========= */
/* Uses same content-section and image-content styles */

/* ========= KULLANICI DOSTU İNDİRİM / ÖDÜLLENDİRME ========= */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.reward-card {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.reward-card:hover {
    transform: translateY(-5px);
    background-color: #1a0a0a; /* Slightly lighter dark red */
}

.reward-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
}

.reward-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.limited-time-offer {
    font-size: 1.2rem;
    color: #FFC107; /* Amber for urgency */
    background-color: rgba(255, 193, 7, 0.05);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

/* ========= GİZLİLİK VE GÜVENLİK ========= */
.icon-list {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* ========= FOOTER ========= */
.footer {
    padding: 30px 0;
    background-color: #000;
    text-align: center;
    color: var(--secondary-text-color);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: var(--secondary-text-color);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.separator {
    color: var(--secondary-text-color);
}

/* ========= ANIMASYONLAR ========= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========= RESPONSIVE (MOBİL UYUMLULUK) ========= */
@media (max-width: 992px) {
    .hero-title { font-size: 2rem; }
    .hero-brand { font-size: 4rem; }
    .hero-subtitle { font-size: 1.1rem; }

    .content-layout {
        flex-direction: column !important; /* Düz ve ters dizilimi ezer */
        text-align: center;
    }

    .text-content { margin-bottom: 30px; }
    .text-content h2 { font-size: 2.2rem; }

    .features-grid, .video-grid, .rewards-grid {
        grid-template-columns: 1fr;
    }
    .feature-card, .reward-card { padding: 25px; }

    table { min-width: unset; } /* Allow table to shrink on mobile */
}

@media (max-width: 576px) {
    .hero-title { font-size: 1.5rem; }
    .hero-brand { font-size: 2.8rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .cta-buttons { display: flex; flex-direction: column; align-items: center; }
    .btn { width: 90%; }

    h2.section-title { font-size: 2rem; }
    .text-content h2 { font-size: 1.8rem; }
    .video-card iframe { height: 180px; }
}