/*
Theme Name: Hunhax içerik indirici 
Theme URI: https://hunhax.com
Author: Deniz iri
Author URI: https://hunhax.com
Description: Neon tarzı çoklu platform içerik indirici teması. Instagram, YouTube, Twitter, TikTok ve daha fazlası.
Version: 2.0.0
License: GPL v2 or later
Text Domain: novatools
Tags: neon, dark, modern, instagram, youtube, downloader, social-media
*/

/* ======================================================
   NEON TEMA - ANA STILLER
   ====================================================== */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0f;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: 
        radial-gradient(ellipse at 10% 20%, rgba(0, 255, 170, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(0, 200, 255, 0.05) 0%, transparent 50%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

/* ===== NEON GLOW ===== */
.neon-text {
    color: #00ff88;
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 0.5),
        0 0 20px rgba(0, 255, 136, 0.3),
        0 0 40px rgba(0, 255, 136, 0.1);
}

.neon-border {
    border: 2px solid #00ff88;
    box-shadow: 
        0 0 10px rgba(0, 255, 136, 0.3),
        inset 0 0 10px rgba(0, 255, 136, 0.1);
}

.neon-glow {
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.2),
        0 0 40px rgba(0, 255, 136, 0.1),
        0 0 80px rgba(0, 255, 136, 0.05);
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #0a0a0f;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    min-height: 54px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.3),
        0 0 40px rgba(0, 255, 136, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.5),
        0 0 60px rgba(0, 255, 136, 0.2),
        0 0 100px rgba(0, 255, 136, 0.1);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-outline {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
}

.btn-outline:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
.navbar {
    background: rgba(10, 10, 15, 0.95);
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00ff88;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.logo img {
    height: 38px;
}

.logo span {
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #b0b0b0;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 6px 4px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-links a:hover {
    color: #00ff88;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .btn-outline::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid rgba(0, 255, 136, 0.2);
    font-size: 1.5rem;
    color: #00ff88;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

/* ===== HERO ===== */
.hero {
    padding: 80px 0 70px;
    text-align: center;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 200, 255, 0.03) 0%, transparent 50%);
    animation: heroGlow 20s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(2%, 2%) rotate(3deg); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #ffffff;
    line-height: 1.2;
}

.hero h1 span {
    color: #00ff88;
    text-shadow: 
        0 0 20px rgba(0, 255, 136, 0.5),
        0 0 40px rgba(0, 255, 136, 0.2),
        0 0 80px rgba(0, 255, 136, 0.1);
}

.hero p {
    font-size: 1.2rem;
    color: #a0a0b0;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

/* ===== PLATFORM SELECTOR ===== */
.platform-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 600;
    font-size: 0.9rem;
    color: #a0a0b0;
    backdrop-filter: blur(10px);
}

.platform-btn:hover {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
    transform: translateY(-2px);
}

.platform-btn.active {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
}

.platform-btn i {
    font-size: 1.2rem;
}

/* ===== DOWNLOAD FORM ===== */
.download-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.05),
        inset 0 0 30px rgba(0, 255, 136, 0.02);
    max-width: 850px;
    margin: 0 auto 30px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.download-form input,
.download-form select {
    flex: 1;
    padding: 16px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.04);
    color: #e0e0e0;
    min-height: 54px;
    transition: all 0.3s ease;
}

.download-form input::placeholder {
    color: #666;
}

.download-form input:focus,
.download-form select:focus {
    border-color: #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.download-form select option {
    background: #0a0a0f;
    color: #e0e0e0;
}

.download-form .btn-primary {
    flex: 0 0 auto;
    padding: 16px 40px;
}

/* ===== QUALITY BADGE ===== */
.quality-badge {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.quality-badge span {
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #a0a0b0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.quality-badge span:hover {
    border-color: #00ff88;
    color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.quality-badge i {
    color: #00ff88;
    font-size: 0.9rem;
}

/* ===== RESULT CARD ===== */
.result-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    box-shadow: 
        0 0 40px rgba(0, 255, 136, 0.05),
        inset 0 0 40px rgba(0, 255, 136, 0.02);
    max-width: 650px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.6s ease;
}

.result-card img {
    border-radius: 12px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.result-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.result-actions .btn-primary {
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

/* ===== FEATURES ===== */
.features {
    padding: 80px 0;
    background: transparent;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-title span {
    color: #00ff88;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.section-subtitle {
    text-align: center;
    color: #8888a0;
    max-width: 650px;
    margin: 0 auto 55px;
    font-size: 1.1rem;
}

/* ===== FEATURES GRID (YAN YANA) ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.05);
}

.feature-card i {
    font-size: 2.8rem;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-card p {
    color: #8888a0;
    font-size: 0.95rem;
}

/* ===== STEPS (YAN YANA) ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.step {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.step:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.05);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #0a0a0f;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 18px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

/* ===== SPECS GRID (YAN YANA) ===== */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.spec-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 136, 0.2);
}

.spec-item i {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.spec-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #ffffff;
}

.spec-item p {
    color: #8888a0;
    font-size: 0.85rem;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 22px 28px;
    border-radius: 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 255, 136, 0.2);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #ffffff;
}

.faq-item h4 i {
    color: #00ff88;
    font-size: 1rem;
    margin-top: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.faq-item p {
    color: #8888a0;
    padding-left: 34px;
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
    padding: 70px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 200, 255, 0.05));
    border-top: 1px solid rgba(0, 255, 136, 0.05);
    border-bottom: 1px solid rgba(0, 255, 136, 0.05);
}

.cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta h2 span {
    color: #00ff88;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.cta p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #8888a0;
}

.cta .btn-primary {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #0a0a0f;
}

/* ===== FOOTER ===== */
footer {
    background: rgba(10, 10, 15, 0.95);
    color: #8888a0;
    padding: 50px 0 25px;
    margin-top: auto;
    border-top: 1px solid rgba(0, 255, 136, 0.05);
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

footer .logo {
    color: #00ff88;
    font-size: 1.5rem;
}

footer .footer-brand p {
    margin-top: 12px;
    color: #8888a0;
    font-size: 0.9rem;
}

footer .footer-column h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 14px;
    font-weight: 700;
}

footer .footer-column ul li {
    margin-bottom: 8px;
}

footer .footer-column ul li a {
    color: #8888a0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

footer .footer-column ul li a:hover {
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

footer .copyright {
    width: 100%;
    text-align: center;
    padding-top: 25px;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #555;
    grid-column: 1 / -1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.5), 0 0 60px rgba(0, 255, 136, 0.2);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00ff88;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 50px 0 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .download-form {
        padding: 20px;
        flex-direction: column;
    }

    .download-form input,
    .download-form select {
        width: 100%;
    }

    .download-form .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links a:not(.btn-outline) {
        display: none;
    }

    .nav-links.active {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 18px 0;
        border-top: 1px solid rgba(0, 255, 136, 0.1);
        margin-top: 12px;
    }

    .nav-links.active a:not(.btn-outline) {
        display: block;
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .features-grid,
    .steps,
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .platform-selector {
        gap: 8px;
    }

    .platform-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .faq-item p {
        padding-left: 0;
    }

    footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .result-actions {
        flex-direction: column;
    }

    .result-actions .btn-primary {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .quality-badge span {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-height: 46px;
    }

    .btn-outline {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
}

/* ===== SELECTION ===== */
::selection {
    background: #00ff88;
    color: #0a0a0f;
}

::-moz-selection {
    background: #00ff88;
    color: #0a0a0f;
}