/* ============================================
   ŞİFRESİZ BEĞENİ HİLESİ - Premium CSS Design
   Instagram & TikTok Beğeni Hilesi 2026
   ============================================ */

:root {
    /* Instagram Gradient Colors */
    --instagram-purple: #833AB4;
    --instagram-pink: #E1306C;
    --instagram-orange: #F77737;
    --instagram-yellow: #FCAF45;
    
    /* TikTok Colors */
    --tiktok-red: #FE2C55;
    --tiktok-cyan: #25F4EE;
    --tiktok-black: #010101;
    
    /* Primary Theme */
    --primary: #E1306C;
    --primary-dark: #833AB4;
    --primary-light: #FCE4EC;
    --secondary: #1a1a2e;
    --accent: #25F4EE;
    
    /* Backgrounds */
    --bg-body: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0d0d0d;
    --card-bg: #ffffff;
    
    /* Text */
    --text-main: #1a1a2e;
    --text-dim: #6c7a89;
    --text-light: #ffffff;
    
    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-instagram: 0 10px 40px rgba(225, 48, 108, 0.3);
    --shadow-tiktok: 0 10px 40px rgba(254, 44, 85, 0.3);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.logo span {
    background: linear-gradient(135deg, var(--instagram-purple), var(--instagram-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--instagram-purple), var(--instagram-pink));
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ============================================
   HEADER / HERO
   ============================================ */
header {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 30%, #fff5f8 60%, #ffffff 100%);
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(225, 48, 108, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(131, 58, 180, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    padding: 80px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.15;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--instagram-purple), var(--instagram-pink), var(--instagram-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-tiktok {
    background: linear-gradient(135deg, var(--tiktok-red), var(--tiktok-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    line-height: 1.8;
}

.badge-secure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.badge-secure i {
    font-size: 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--instagram-purple), var(--instagram-pink));
    border-radius: 16px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-instagram);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(225, 48, 108, 0.4);
}

.btn-primary i {
    font-size: 1.1rem;
}

.btn-instagram {
    background: linear-gradient(135deg, var(--instagram-purple), var(--instagram-pink), var(--instagram-orange));
    box-shadow: var(--shadow-instagram);
}

.btn-instagram:hover {
    box-shadow: 0 15px 40px rgba(131, 58, 180, 0.4);
}

.btn-tiktok {
    background: linear-gradient(135deg, var(--tiktok-black), #333);
    box-shadow: var(--shadow-tiktok);
    position: relative;
    overflow: hidden;
}

.btn-tiktok::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 244, 238, 0.3), transparent);
    transition: var(--transition);
}

.btn-tiktok:hover::before {
    left: 100%;
}

.btn-tiktok:hover {
    box-shadow: 0 15px 40px rgba(254, 44, 85, 0.4);
}

.btn-launch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 220px;
    padding: 16px 30px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--instagram-purple), var(--instagram-pink));
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-launch:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(225, 48, 108, 0.45);
}

.btn-launch.tiktok {
    background: linear-gradient(135deg, var(--tiktok-black), #1a1a1a);
}

.btn-launch.tiktok:hover {
    box-shadow: 0 12px 35px rgba(254, 44, 85, 0.4);
}

/* ============================================
   PLATFORM CARDS
   ============================================ */
.platforms {
    padding: 80px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.platforms h2 {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

.platform-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 40px 35px;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--instagram-purple), var(--instagram-pink));
    opacity: 0;
    transition: var(--transition);
}

.platform-card.instagram::before {
    background: linear-gradient(135deg, var(--instagram-purple), var(--instagram-pink), var(--instagram-orange));
}

.platform-card.tiktok::before {
    background: linear-gradient(135deg, var(--tiktok-cyan), var(--tiktok-red));
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-icon {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.platform-card:hover .platform-icon {
    transform: scale(1.08) rotate(-3deg);
}

.platform-info h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 8px;
}

.platform-info p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

.feature-tag {
    background: var(--bg-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 500;
}

.feature-tag.highlight {
    background: linear-gradient(135deg, var(--instagram-purple), var(--instagram-pink));
    color: white;
}

.feature-tag.tiktok-highlight {
    background: linear-gradient(135deg, var(--tiktok-red), var(--tiktok-cyan));
    color: white;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.features h2 {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 35px 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-light), #fff);
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-dim);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
section.content {
    padding: 60px 0;
}

.glass-panel {
    background: var(--card-bg);
    border: 1px solid rgba(225, 48, 108, 0.1);
    padding: 45px;
    border-radius: 28px;
    margin-bottom: 35px;
    box-shadow: var(--shadow-soft);
}

.glass-panel h2 {
    font-size: 1.9rem;
    color: var(--secondary);
    margin-bottom: 25px;
}

.glass-panel h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin: 30px 0 18px;
}

.glass-panel p {
    color: var(--text-dim);
    margin-bottom: 18px;
    line-height: 1.85;
}

.glass-panel ul,
.glass-panel ol {
    margin-left: 25px;
    color: var(--text-dim);
}

.glass-panel li {
    margin-bottom: 12px;
}

.glass-panel img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 25px 0;
    box-shadow: var(--shadow-medium);
}

/* Image Gallery for SEO */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 0;
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 15px 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
    margin-bottom: 15px;
    background: var(--bg-light);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(225, 48, 108, 0.2);
}

.faq-header {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-header:hover {
    background: rgba(225, 48, 108, 0.05);
}

.faq-header h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary);
}

.faq-header i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 28px;
    color: var(--text-dim);
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 0 28px 22px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 60px;
}

footer .logo {
    color: white;
    justify-content: center;
    margin-bottom: 25px;
}

footer a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 18px;
    font-weight: 500;
    transition: var(--transition);
}

footer a:hover {
    color: var(--tiktok-cyan);
}

footer p {
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-links {
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    margin: 0;
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--instagram-purple), var(--instagram-pink));
    transform: translateY(-3px);
}

/* ============================================
   GENERATOR BOX (For Inner Pages)
   ============================================ */
.generator-box {
    background: white;
    border-radius: 28px;
    padding: 50px 45px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.form-input {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid #e8e8e8;
    border-radius: 14px;
    font-size: 1.05rem;
    font-family: inherit;
    margin-bottom: 18px;
    transition: var(--transition);
    background: #fafafa;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 5px rgba(225, 48, 108, 0.1);
}

.form-input::placeholder {
    color: #aaa;
}

.btn-game {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--instagram-purple), var(--instagram-pink));
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-game:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.4);
}

.btn-game.tiktok {
    background: linear-gradient(135deg, var(--tiktok-black), #1a1a1a);
}

.btn-game.tiktok:hover {
    box-shadow: 0 15px 40px rgba(254, 44, 85, 0.4);
}

/* Platform Header */
.platform-header {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.platform-header.instagram {
    background: linear-gradient(135deg, var(--instagram-purple) 0%, var(--instagram-pink) 50%, var(--instagram-orange) 100%);
}

.platform-header.tiktok {
    background: linear-gradient(135deg, var(--tiktok-black) 0%, #1a1a1a 50%, var(--tiktok-black) 100%);
}

.platform-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.platform-header h1 {
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.platform-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* Loader Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader {
    border: 5px solid #f0f0f0;
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    animation: spin 0.8s linear infinite;
    margin: 25px auto;
}

.loader.tiktok {
    border-top-color: var(--tiktok-red);
}

/* Info Note */
.info-note {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border-left: 4px solid #10b981;
    padding: 18px 22px;
    border-radius: 0 14px 14px 0;
    margin: 20px 0;
}

.info-note p {
    color: #047857;
    font-weight: 500;
    margin: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Pulse effect for CTA */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(225, 48, 108, 0.3);
    }
    50% {
        box-shadow: 0 10px 60px rgba(225, 48, 108, 0.5);
    }
}

.btn-primary.pulse {
    animation: pulse 2s infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-content {
        padding: 50px 15px 40px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 16px 35px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 320px;
    }

    .nav-links {
        display: none;
    }

    .platforms {
        grid-template-columns: 1fr;
        padding: 50px 0;
    }

    .platforms h2,
    .features h2 {
        font-size: 1.7rem;
    }

    .platform-card {
        padding: 30px 25px;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }

    .glass-panel {
        padding: 30px 22px;
    }

    .glass-panel h2 {
        font-size: 1.5rem;
    }

    .generator-box {
        padding: 35px 25px;
        margin-top: -70px;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .btn-primary {
        width: 100%;
    }

    .btn-launch {
        max-width: 100%;
    }

    .platform-icon {
        width: 75px;
        height: 75px;
    }

    footer a {
        display: block;
        margin: 10px 0;
    }
}