:root {
    --primary: #FF9900;
    --secondary: #FFCC00;
    --accent: #FF4D4D;
    --dark-bg: #0a0a14;
    --card-bg: rgba(30, 30, 46, 0.85);
    --text-light: #ffffff;
    --text-dim: #cccccc;
    --glass: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 153, 0, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(255, 77, 77, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(255, 204, 0, 0.03) 0%, transparent 50%);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--secondary);
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-top: 0;
}

h3 {
    font-size: 1.3rem;
    color: var(--text-light);
}

p {
    margin-bottom: 1rem;
    color: var(--text-dim);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

strong {
    color: var(--text-light);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-desc {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 15px auto 0;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 20px;
    font-size: 0.85rem;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb li::after {
    content: "›";
    margin-left: 8px;
    color: var(--text-dim);
}

.breadcrumb li:last-child::after {
    content: "";
}

.breadcrumb a {
    color: var(--text-dim);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb li[aria-current="page"] {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 20px rgba(255, 153, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.6);
    color: white;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: white;
    padding: 12px 32px;
}

.btn-outline:hover {
    background: rgba(255, 153, 0, 0.15);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 153, 0, 0.15);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 24px;
    font-size: 0.95rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
}

.logo img {
    height: 45px;
    width: 45px;
    filter: drop-shadow(0 0 8px var(--primary));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    position: relative;
    border-radius: var(--radius);
    margin: 20px auto;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.05), rgba(255, 77, 77, 0.05));
    border-radius: var(--radius);
    border: 1px solid var(--border);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 550px;
    margin-bottom: 25px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin: 25px 0 15px;
    flex-wrap: wrap;
}

.hero-trust {
    font-size: 0.85rem;
    opacity: 0.7;
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(255, 153, 0, 0.2);
    border: 1px solid var(--border);
}

/* Trust Bar */
.trust-bar {
    background: rgba(255, 153, 0, 0.08);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 500;
}

.trust-item i {
    color: var(--primary);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 25px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 153, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
}

.step-img-wrapper {
    margin: 15px 0;
    border-radius: 10px;
    overflow: hidden;
}

.step-img-wrapper img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.step-card:hover .step-img-wrapper img {
    transform: scale(1.05);
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 0;
}

.feature-item {
    text-align: center;
    padding: 35px 25px;
    background: var(--glass);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(255, 153, 0, 0.05);
}

.feature-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card-bg);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    padding: 12px 15px;
    font-size: 0.9rem;
    color: var(--text-dim);
    text-align: center;
    font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.testimonial-author strong {
    display: block;
    color: white;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.article-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.article-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-img {
    overflow: hidden;
}

.article-img img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: transform 0.4s;
}

.article-card:hover .article-img img {
    transform: scale(1.05);
}

.article-body {
    padding: 25px 30px;
}

.article-tag {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.article-list {
    margin: 10px 0 15px 20px;
    color: var(--text-dim);
}

.article-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.code-list code {
    background: rgba(255, 153, 0, 0.15);
    color: var(--secondary);
    padding: 3px 10px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 153, 0, 0.3);
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: white;
    transition: background 0.3s;
    font-size: 0.95rem;
}

.faq-question:hover {
    background: rgba(255, 153, 0, 0.08);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
    background: rgba(0,0,0,0.2);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 18px 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.15), rgba(255, 77, 77, 0.15));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 20px;
    margin-top: 40px;
}

/* About Card */
.about-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.contact-email {
    display: inline-block;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 10px;
}

.contact-email:hover {
    color: var(--secondary);
}

/* Footer */
footer {
    padding: 50px 0 30px;
    margin-top: 0;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

/* Generator Page Styles */
.generator-container {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
    padding: 0 20px;
}

.generator-box {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
}

.input-group {
    margin-bottom: 25px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid var(--border);
    background: rgba(0,0,0,0.3);
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.2);
}

.platform-select {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
}

.platform-option {
    flex: 1;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.platform-option:hover, .platform-option.active {
    border-color: var(--primary);
    background: rgba(255, 153, 0, 0.1);
}

.platform-option i {
    font-size: 2rem;
}

.progress-container {
    display: none;
    margin-top: 30px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.1s;
}

.console-log {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--secondary);
    min-height: 20px;
}

.verification-box {
    display: none;
    animation: fadeIn 0.5s;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
}

/* Fake Captcha */
.fake-captcha {
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    width: 300px;
    height: 74px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    margin: 0 auto 20px;
    justify-content: space-between;
    box-shadow: 0 0 4px rgba(0,0,0,0.08);
    cursor: pointer;
}

.captcha-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-box {
    width: 24px;
    height: 24px;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
    position: relative;
}

.checkbox-box.checked {
    border: none;
}

.checkbox-box.checked::after {
    content: '✓'; 
    color: #009688;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    top: -4px;
    left: 2px;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: none;
}

.captcha-label {
    font-family: Roboto, sans-serif;
    color: #222;
    font-size: 14px;
    font-weight: 500;
}

.captcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.captcha-logo img {
    width: 32px;
    height: 32px;
    opacity: 0.6;
}

.captcha-logo span {
    color: #555;
    font-size: 10px;
    margin-top: 2px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-subtitle {
        margin: 0 auto 25px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 350px;
    }

    .article-card {
        grid-template-columns: 1fr;
    }

    .article-img img {
        min-height: 200px;
        max-height: 250px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 20, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--border);
        z-index: 99;
    }

    .main-nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .trust-bar-inner {
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section {
        padding: 40px 15px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 1.8rem;
    }
}
