/* ============================================
   ROBLOX HİLE - PROFESSIONAL CSS 2026
   Modern, Responsive, SEO-Friendly Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Rubik:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   CSS VARIABLES - Design System
   ============================================ */
:root {
    /* Primary Colors */
    --primary: #00a2ff;
    --primary-dark: #0088d4;
    --primary-light: #33b5ff;
    --primary-glow: rgba(0, 162, 255, 0.4);
    
    /* Accent Colors */
    --accent-red: #e81123;
    --accent-red-dark: #c40f1f;
    --accent-gold: #ffd700;
    --accent-green: #00c853;
    --accent-purple: #7c4dff;
    
    /* Background Colors */
    --bg-dark: #0a0a1a;
    --bg-gradient-1: #1a1a2e;
    --bg-gradient-2: #16213e;
    --bg-gradient-3: #0f3460;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-bg-hover: rgba(255, 255, 255, 0.08);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* Borders */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(0, 162, 255, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px var(--primary-glow);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-fixed: 1000;
    --z-modal: 2000;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-1) 0%, var(--bg-gradient-2) 50%, var(--bg-gradient-3) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .logo-text {
    font-family: 'Rubik', 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    z-index: var(--z-modal);
    transition: var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-sm);
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-sm);
    }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    position: sticky;
    top: 0;
    z-index: var(--z-fixed);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: white;
    font-weight: 700;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: var(--space-xs);
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.hamburger {
    width: 24px;
    height: 2px;
    background: white;
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: white;
    transition: var(--transition-fast);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Nav Links */
.nav-links {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(0, 162, 255, 0.1);
}

.back-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.back-link:hover {
    color: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 26, 0.98);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-sm);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition-normal);
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: var(--space-sm);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
    color: white;
    font-family: 'Rubik', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(232, 17, 35, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(232, 17, 35, 0.5);
}

.btn-main:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(232, 17, 35, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(232, 17, 35, 0.7), 0 0 60px rgba(232, 17, 35, 0.3); }
}

.btn-success {
    background: linear-gradient(135deg, var(--accent-green) 0%, #00a844 100%);
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.4);
}

.btn-success:hover {
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.5);
}

.btn-icon {
    font-size: 1.1em;
}

.btn-generator {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-size: 1.1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-2xl) 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../img/roblox_robux_hilesi_bedava%20(3).webp') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 26, 0.85) 0%, 
        rgba(10, 10, 26, 0.9) 50%,
        rgba(10, 10, 26, 0.95) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--primary), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--accent-purple), transparent),
        radial-gradient(2px 2px at 50px 160px, var(--primary), transparent),
        radial-gradient(2px 2px at 90px 40px, var(--accent-gold), transparent),
        radial-gradient(2px 2px at 130px 80px, var(--primary), transparent);
    background-size: 200px 200px;
    animation: particleFloat 20s linear infinite;
    opacity: 0.5;
    z-index: 1;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffaa00 100%);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero h1 .highlight {
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
}

.hero-desc {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-trust {
    margin-top: var(--space-md);
    color: var(--accent-green);
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    margin: var(--space-xs) auto 0;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: var(--space-2xl) 0;
    background: rgba(0, 0, 0, 0.2);
}

.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition-normal);
}

.feature-card:hover {
    background: var(--card-bg-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   ARTICLES SECTION
   ============================================ */
.articles {
    padding: var(--space-2xl) 0;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.article-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.article-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.article-image-wrapper {
    position: relative;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.article-card:hover .article-image {
    transform: scale(1.1);
}

.article-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.article-content {
    padding: var(--space-md);
}

.article-content h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    line-height: 1.4;
    transition: var(--transition-fast);
}

.article-card:hover .article-content h3 {
    color: var(--primary);
}

.article-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--space-2xl) 0;
    background: rgba(0, 0, 0, 0.3);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-sm);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-fast);
    flex-shrink: 0;
    margin-left: var(--space-sm);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-answer p {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-sm);
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.cta-section .btn-main {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-main:hover {
    background: var(--bg-dark);
    color: white;
}

/* ============================================
   INFO SECTION (About & Contact)
   ============================================ */
.info-section {
    padding: var(--space-2xl) 0;
}

.info-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.info-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.info-box:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.info-box h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.info-box p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-list {
    margin-top: var(--space-md);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    color: var(--text-secondary);
}

.contact-list li span {
    font-size: 1.2rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-dark);
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-family: 'Rubik', 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: var(--space-xs);
}

/* ============================================
   GENERATOR PAGE STYLES
   ============================================ */
.generator-page {
    background: linear-gradient(135deg, var(--bg-gradient-1) 0%, var(--bg-gradient-2) 50%, var(--bg-gradient-3) 100%);
}

.generator-wrapper {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: var(--space-xl) 0;
}

.generator-container {
    max-width: 550px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.generator-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-purple), var(--accent-red));
}

/* Progress Steps */
.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    gap: var(--space-xs);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    opacity: 0.5;
    transition: var(--transition-fast);
}

.step.active {
    opacity: 1;
}

.step.completed {
    opacity: 1;
}

.step.completed .step-number {
    background: var(--accent-green);
}

.step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.step.active .step-number {
    background: var(--primary);
    border-color: var(--primary);
}

.step-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-line {
    width: 40px;
    height: 2px;
    background: var(--border-color);
    margin-bottom: 20px;
}

/* Generator Header */
.generator-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.generator-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.generator-header h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-xs);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.generator-header p {
    color: var(--text-secondary);
}

/* Generator Form */
.generator-form {
    margin-bottom: var(--space-md);
}

.input-group {
    margin-bottom: var(--space-md);
}

.input-group label {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--text-primary);
}

.label-icon {
    font-size: 1.1rem;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 162, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 162, 255, 0.1);
}

.input-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.input-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: var(--space-sm);
}

.input-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 500px) {
    .input-row {
        grid-template-columns: 1fr;
    }
}

/* Console */
.console-wrapper {
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.console-header {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);
    background: rgba(0, 0, 0, 0.5);
}

.console-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.console-dot.red { background: #ff5f56; }
.console-dot.yellow { background: #ffbd2e; }
.console-dot.green { background: #27ca40; }

.console-title {
    margin-left: var(--space-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.console {
    background: #000;
    color: #0f0;
    padding: var(--space-md);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    height: 180px;
    overflow-y: auto;
    line-height: 1.8;
}

.console p {
    margin-bottom: var(--space-xs);
    animation: typeIn 0.3s ease;
}

@keyframes typeIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Loading Section */
.loading-section {
    text-align: center;
    margin-bottom: var(--space-md);
}

.loading-text {
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.loading-bar-bg {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent-purple));
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
    position: relative;
}

.loading-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.loading-percent {
    margin-top: var(--space-xs);
    font-weight: 700;
    color: var(--primary);
}

/* Captcha Section */
.captcha-section {
    text-align: center;
    margin-bottom: var(--space-md);
}

.captcha-header {
    margin-bottom: var(--space-md);
}

.captcha-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.captcha-header h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.captcha-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.recaptcha-box {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: #f9f9f9;
    color: #333;
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    border: 1px solid #d3d3d3;
    cursor: pointer;
    transition: var(--transition-fast);
}

.recaptcha-box:hover {
    background: #f0f0f0;
    border-color: #bbb;
}

.checkbox {
    width: 28px;
    height: 28px;
    border: 2px solid #c1c1c1;
    border-radius: 3px;
    position: relative;
    transition: var(--transition-fast);
}

.checkbox.checked {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox.checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 18px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Status Messages */
.status-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.status-checking {
    background: rgba(0, 162, 255, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
}

.status-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.status-error {
    background: rgba(232, 17, 35, 0.1);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    flex-direction: column;
    text-align: center;
}

.status-icon {
    font-size: 2rem;
}

.status-text strong {
    display: block;
    margin-bottom: var(--space-xs);
}

.status-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-color);
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.badge span {
    font-size: 1.1rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-card,
.feature-card,
.faq-item,
.info-box {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 992px) {
    .hero {
        min-height: 80vh;
        padding: var(--space-xl) 0;
    }
    
    .hero-stats {
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .generator-container {
        padding: var(--space-md);
        margin: 0 var(--space-sm);
        border-radius: var(--radius-lg);
    }
    
    .progress-steps {
        gap: 0;
    }
    
    .step-text {
        display: none;
    }
    
    .step-line {
        width: 30px;
        margin-bottom: 0;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .btn-main {
        padding: var(--space-sm) var(--space-md);
        font-size: 1rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    header,
    footer,
    .btn-main,
    .hero-particles,
    .hero-scroll-indicator {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .article-card,
    .feature-card,
    .info-box {
        break-inside: avoid;
        border: 1px solid #ccc;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
