/* CSS Variables */
:root {
    --bg-color: #110523;
    --bg-gradient: linear-gradient(135deg, #16082B 0%, #200D42 100%);
    --primary-color: #FF9D00;
    --secondary-color: #FFD700;
    --accent-color: #A200FF;
    --text-main: #FFFFFF;
    --text-muted: #B3A8C6;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* Reset & Basic Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    background-image: var(--bg-gradient);
    color: var(--text-main);
    line-height: 1.6;
    position: relative;
}

/* Background Particles/Glows (CSS Only) */
body::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(162, 0, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
}

body::after {
    content: '';
    position: absolute;
    top: 40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 157, 0, 0.1) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
}

/* Typography Utility */
.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, #FF6B00, var(--primary-color));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(255, 157, 0, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(255, 157, 0, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-radius: 0;
    border-bottom: 1px solid var(--glass-border);
    border-top: none; border-left: none; border-right: none;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.btn-nav {
    padding: 10px 20px;
    background: rgba(255, 157, 0, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-nav:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 157, 0, 0.4);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for nav */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 20px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(162, 0, 255, 0.2);
    border: 1px solid rgba(162, 0, 255, 0.4);
    color: #dfb2ff;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.stats {
    display: flex;
    gap: 30px;
    padding: 20px 30px;
    display: inline-flex;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-logo {
    width: 100%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.glow-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 157, 0, 0.4) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite alternate;
}

/* Sections Global */
section {
    padding: 100px 20px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 157, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(162, 0, 255, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* How to Use Section */
.how-to-use {
    position: relative;
    background: linear-gradient(to bottom, transparent, rgba(162, 0, 255, 0.05), transparent);
}

.glow-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 157, 0, 0.5), transparent);
    margin-bottom: 60px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 50px;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    padding: 10px; /* creates a glass frame effect */
}

.video-container iframe {
    border-radius: 12px;
}

.steps-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 250px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 15px;
    box-shadow: 0 0 15px rgba(255, 157, 0, 0.3);
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Reviews Section */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    padding: 30px;
    text-align: left;
    position: relative;
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

.reviewer h4 {
    font-size: 1rem;
    margin: 0;
}

.reviewer span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Social Handles Section */
.center-text {
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
}

.instagram:hover i { color: #E1306C; }
.youtube:hover i { color: #FF0000; }
.facebook:hover i { color: #1877F2; }
.telegram:hover i { color: #0088cc; }

.social-card h3 {
    margin-bottom: 5px;
}

.social-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 60px 20px 20px;
    border-radius: 0;
    border-bottom: none; border-left: none; border-right: none;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.link-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.link-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* Scroll Reveal Classes */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid, .reviews-slider, .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Can be handled by JS for mobile menu */
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .btn-nav {
        display: none;
    }

    .features-grid, .reviews-slider, .social-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
}
