:root {
    --bg-dark: #fff;
    --bg-card: #141414;
    --accent-primary: #000;
    --accent-secondary: #000;
    --text-primary: #ffffff;
    --text-secondary: #fff;
    --gradient-1: #fff;
}
/* ================= GLOBAL RESET (FIXED) ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* YAHAN SE SCROLL BEHAVIOR HATA DIYA HAI */
}

/* Scroll behavior sirf HTML par hona chahiye, har element par nahi */
html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Screen se bahar ka kachra yahan katega */
}

body {
    font-family: 'ui-monospace';
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    width: 100%;
    /* overflow-x body se hata diya hai taaki momentum scroll zinda rahe */
    -webkit-font-smoothing: antialiased; /* Text ko smooth render karne ke liye */
    position: relative;
    zoom: 0.9;
}
/* 🔒 Lock main screen when mobile menu is open */
body.menu-open {
    overflow: hidden !important;
    height: 100vh;
}

/* 🔒 Media safety (instead of max-width:100vw on *) */
img,
video,
canvas {
    max-width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ================= ANIMATIONS ================= */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 240, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 5px rgba(0, 240, 255, 0.2);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================= SCROLL REVEAL ================= */
.reveal-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.reveal-hidden.visible {
    opacity: 1;
    transform: translateY(0);
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}


/* ================= NAVBAR ================= */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    padding: 0 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ff5200;
    backdrop-filter: blur(15px);
    z-index: 2000;
    border-bottom: 1px solid #ffffffba;
}
.gray{
    color: #5e5e5e;
}
.logo {
      width: 13%;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
        font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 21px;
     transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.cta-btn {
    padding: 0.6rem 1.8rem;
    background: black;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    color: white;
    transition: transform 0.3s ease;
    font-size: 17px;
}

.cta-btn:hover {
    transform: scale(1.05);
}

/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
    width: 40px;
    cursor: pointer;
    z-index: 2100;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color:#000 !important;
    border-radius: 2px;
    transition: 0.35s ease;
    color: black;
}

/* ================= HERO ================= */
.hero {
    min-height: calc(100svh - 72px);
    padding: 8rem 5% 4rem;
    text-align: center;
    background: #ff5200;
}
 h1 {
    margin: 0;
 }


 .white{
    color: white;
 }
.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
  margin-top: 38px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= TOOL ================= */
/* ================= GRID RESPONSIVENESS ================= */
/* ================= TOOL CONTAINER SPACING FIX ================= */
.tool-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;

    margin: 6rem auto 4rem;

    width: 100%;
    padding: 0 20px;
}

.upload-section,
.result-section {
    background: var(--bg-card);
    padding: 2.5rem;
       border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.drop-area {
    border: 2px solid #FFF;
    padding: 3rem;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.4s;
    background: white;
}

.drop-area:hover {
    border-color: #5dcf00;
    background: white;
}



/* ================= VIDEO & CONTAINER FIX ================= */
.result-section {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
    /* Safety net: bahar nikalne waali cheez ko chhupa dega */
    padding: 1.5rem !important;
    /* Mobile par padding kam karo taaki video ko jagah mile */
}

#videoPreview {
    display: block;
    width: 100% !important;
    /* Width hamesha container ke barabar rahegi */
    max-width: 100% !important;
    /* Kisi bhi haal mein screen se bada nahi hoga */
    height: auto !important;
    /* Aspect ratio barabar rahega */
    max-height: 70vh !important;
    /* Screen ki height se zyada bada na ho */
    object-fit: contain !important;
    /* Video kategi nahi, center mein fit hogi */
    background: #000;
    border-radius: 15px;
}

/* ================= PRICING ================= */
.pricing {
    padding: 8rem 5%;
    text-align: center;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    font-weight: 900;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.pricing-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 4px;
    border: 1px solid white;
    text-align: left;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-primary);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    animation: glow 3s infinite;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    margin: 10px 0;
    color: white;
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 10;
}

.popup-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* mobile thoda chhota */
@media (max-width: 768px) {
    .popup-close-btn {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
.logo {
    padding-top: 10px;
    width: 34%;
}

    nav {
    padding: 0 7%;
        height: 70px !important;
    }
    

    .step {
     width: 48% !important;
    }

    .insta-connect input {
    width: 70% !important;
    }
    .steps {
    gap: 10px !important;
    }
.hero h1 {
            margin: 10px;
        font-size: 38px;
}

.features {
    padding: 80px 30px !important;
}

.results {
  padding: 80px 30px !important;
}

.testimonials {
  padding: 80px 30px !important;
}


}


/* ================= BUTTONS ================= */
.btn-primary {
    width: 100%;
    padding: 1.2rem;
    background: #ff5200;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    color: white;
    border: 1px solid white;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    border: 2px solid white;
    border-radius: 50px;
    background: transparent;
    color: white;
    margin-top: 2rem;
    cursor: pointer;
}

.pricing-btn:hover {
    background: white;
    color: black;
}


.featured .pricing-btn:hover {
    background: white;
    color: black;
}
.featured .pricing-btn {
    background: var(--gradient-1);
  border: 2px solid white;
}

/* ================= VIDEO / LOADER ================= */
.loader-hidden,
.download-hidden {
    display: none;
}

/* ⚡ Premium AI Glowing Spinner (ANTI-SQUISH) */
.spinner {
    width: 60px !important;
    height: 60px !important;
    
    /* 🚨 YE HAI MAGIC LINE: Flexbox ko spinner pichkane se rokne ke liye */
    flex-shrink: 0 !important; 
    
    border: 4px solid rgb(15 15 15);
    border-top: 4px solid #ff5200;
    border-radius: 50% !important; /* Perfect circle guarantee */
    animation: ai-spin 1s linear infinite;
    margin: 0 auto 15px auto;
    box-shadow: 0 0 15px rgb(15 15 15);
}

@keyframes ai-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preview-hidden {
    display: none;
}

.video-blur {
    filter: blur(6px);
    pointer-events: none;
}

.result-section {
    position: relative;
}

.overlay-btn {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.overlay-btn.active {
    display: flex;
}

/* 🔹 Preview Download button size */
.result-section .overlay-btn .btn-primary {
    width: auto;
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
}

/* ================= VIDEO & LOADER FIXES ================= */

/* Video Blur Class - Video chalti rahegi par dhundli dikhegi */
.video-blur {
    filter: blur(10px) brightness(0.7);
    transition: filter 0.5s ease;
}

/* Loader ko video ke niche lane ke liye */
/* ================= LOADER CENTERING FIX ================= */
#loader {
    position: absolute;
    /* Video ke upar lane ke liye */
    inset: 0;
    /* Chaaro taraf se 0 (Full coverage) */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    /* Dark semi-transparent overlay */
    backdrop-filter: blur(8px);
    /* Glass effect */
    z-index: 110;
    /* Video se upar dikhne ke liye */
    border-radius: 24px;
    /* Card borders se match karne ke liye */
    padding: 20px;
    text-align: center;
}

/* Pakka karo ki hidden state kaam kare */
.loader-hidden {
    display: none !important;
}

/* Progress bar ki width lock karo */
.progress-wrapper {
    width: 80%;
    max-width: 300px;
    margin: 20px auto;
}

/* Download Overlay - Button ke piche ka background sahi kiya */
.overlay-btn {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    /* Dark semi-transparent background */
    backdrop-filter: blur(5px);
    /* Glass effect */
    display: none;
    /* Default hidden */
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    z-index: 100;
}

.overlay-btn.active {
    display: flex;
    /* Jab processing khatam ho tab dikhega */
}

/* ================= POPUP ================= */
.pricing-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgb(255 82 0 / 53%);
    backdrop-filter: blur(15px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    overflow: hidden;
}

.pricing-popup-overlay.active {
    display: flex;
}

.pricing-popup-container {
    width: 95%;
    max-width: 1100px;
    background: #0f0f0f;
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #222;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.popup-close {
    position: absolute;
    top: -45px;
    right: 0;
    font-size: 40px;
    cursor: pointer;
    color: var(--accent-primary);
}

/* 🔒 Lock page scroll when popup open */
html.popup-open,
body.popup-open {
    overflow: hidden !important;
    height: 100%;
}

.site-footer {
    background: #050505;
    color: #ccc;
    padding: 60px 5% 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 500;
    color: #00f0ff;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-col h4 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-col ul li a {
    text-decoration: none;
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #00f0ff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: #777;
}

/* Footer Legal & SEO Blocks */
.footer-disclaimer-box {
    max-width: 1100px;
    margin: 40px auto 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle dark highlight */
    border-radius: 8px;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    text-align: center;
}

.footer-seo-keywords {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px;
    font-size: 0.75rem;
    color: #444;
    /* Dimmest color - for bots, not for humans */
    text-align: center;
    border-top: 1px solid #1a1f2b;
}

.footer-seo-keywords strong {
    color: #555;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        font-size: 1.6rem;
    }
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }
.hamburger span{
    display: block;
    width: 28px;
    height: 3px;
      background-color:#000 !important;/* black color */
    margin: 5px 0;
    color: #000;
}
    .nav-links {
        position: fixed;
        top: 72px;
        right: -100%;
        height: calc(100vh - 72px);
        width: min(75%, 320px);
        background: rgb(255 82 0);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 2rem;
        transition: right 0.4s ease;
        z-index: 1500;
            
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .tool-container {
        grid-template-columns: 1fr;
    }


    .spinner {
        width: 45px !important;
        height: 45px !important;
        flex-shrink: 0 !important; /* Mobile par bhi lock rahega */
        border-width: 3px;
    }

}


/* ================= ANIMATIONS ================= */

/* Initial hidden state */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When visible */
.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Fade only */
.animate-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.animate-fade.show {
    opacity: 1;
    transform: translateY(0);
}

/* Scale up (cards ke liye best) */
.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.show {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delay (cards ek-ek karke aaye) */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}


/* blogs css */


/* ================= BLOG PAGE STYLING ================= */

/* Main Container: Reading experience ke liye width limited rakhi hai */
.blog-post {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 0 20px;
    color: #fff;
    line-height: 1.8;
}

/* Header: Title ko 'Bada-Chada' dikhane ke liye */
.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
}

.blog-header .meta {
    font-size: 0.9rem;
    color: var(--rzp-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Body Content */
.blog-body h3 {
    color: white;
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.blog-body p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.blog-body blockquote {
    background: #151515;
    border-left: 5px solid var(--rzp-blue);
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
    color: #eee;
    font-size: 1.2rem;
    border-radius: 0 15px 15px 0;
}

/* List Styling */
.blog-body ul {
    list-style: none;
    margin-bottom: 30px;
}

.blog-body ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.blog-body ul li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--rzp-blue);
}

/* Strategy Table */
.strategy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
}

.strategy-table th,
.strategy-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #222;
}

.strategy-table th {
    background: #1a1a1a;
    color: var(--rzp-blue);
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* 🚩 THE FREE TRAP SECTION: Red Alert Design */
.free-trap-warning {
    background: linear-gradient(135deg, #2d0a0a 0%, #1a0505 100%);
    border: 2px solid #ff4757;
    padding: 40px;
    border-radius: 20px;
    margin-top: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.free-trap-warning h4 {
    color: #ff4757;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.free-trap-warning p {
    color: #ffcccc;
    font-weight: 500;
}

.free-trap-warning .pricing-btn {
    margin-top: 25px;
    background: #ff4757;
    border: none;
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }

    .strategy-table {
        font-size: 0.9rem;
    }
}

/* ================= VIDEO PREVIEW GLOBAL FIX ================= */
#videoPreview {
    width: 100% !important;
    /* Desktop aur Mobile dono par height lock karo */
    max-height: 450px !important;

    /* Vertical videos ke side mein black bars dikhane ke liye */
    object-fit: contain !important;
    background: #000;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
}

/* Jab video hide ho toh space na ghere */
.preview-hidden {
    display: none !important;
}


/* ================= 768px MOBILE RESPONSIVE FIX ================= */
    /* 1. Global Width Lock: PROPER FIX */
   @media (max-width: 768px) {

    /* ❌ Remove that html, body overflow-x: hidden !important trap completely */
    /* Uski jagah sirf container ko limit kar taaki body naturally scroll ho */
    
    .hero, .tool-container, .pricing, .faq-section {
        /* max-width: 100vw; */
        overflow-x: hidden;
    }

    /* 2. Grid Fix: 300px ki limit hatao taaki layout screen se bahar na nikle */
    .tool-container {
        grid-template-columns: 1fr !important;
        /* Mobile par ek single column */
        gap: 1.5rem !important;
        padding: 0 10px !important;
        width: 100% !important;
    }

    /* 3. Section Padding: Andar ki jagah kam karo taaki video ko failne ki jagah mile */
    .upload-section,
    .result-section {
        padding: 1.2rem !important;
        /* 2.5rem se kam karke 1.2rem kiya */
        width: 100% !important;
        overflow: hidden !important;
    }

    /* 4. Ultimate Video Fit: Har tarah ki Reel/Video ko mobile size mein lock rakhega */
    #videoPreview {
        width: 100% !important;
        /* Width hamesha screen ke andar rahegi */
        max-width: 100% !important;
        height: auto !important;
        /* Aspect ratio nahi bigdega */
        max-height: 350px !important;
        /* Mobile screen ke hisaab se height lock */
        object-fit: contain !important;
        /* Video stretch nahi hogi, black bars ke saath fit hogi */
        background: #000;
        border-radius: 12px;
        display: block;
        margin: 0 auto;
    }

    /* Taki scroll reveal animations screen ke bahar na jaayen */
    .animate {
        max-width: 100%;
    }
}




.user-dropdown { position: relative; display: inline-block; cursor: pointer; padding: 8px 18px; background: rgba(255, 255, 255, 0.1); border-radius: 10px; border: 1px solid rgb(0 0 0 / 10%); color: white; font-weight: 500; transition: 0.3s; }
.user-dropdown:hover { background: rgba(0, 229, 255, 0.2); }
.dropdown-content { display: none; position: absolute; top: 102%; right: 0; background-color: #111; min-width: 150px; box-shadow: 0px 8px 16px 0px rgba(0,229,255,0.2); z-index: 100; border-radius: 8px; border: 1px solid #333; overflow: hidden; }
.dropdown-content a { color: white; padding: 12px 16px; text-decoration: none; display: block; border-bottom: 1px solid #222; font-size: 0.9rem; }
.dropdown-content a:hover { background-color: #222; color: #fff; }
.user-dropdown:hover .dropdown-content { display: block; }

/* ================= HOW IT WORKS SECTION (Fixed & Purana Design) ================= */
.how-it-works {
    padding: 6rem 5%;
    background: var(--bg-dark); /* Purana Background */
    /* border-top: 1px solid rgba(255, 255, 255, 0.05); */
}

.how-it-works .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -30px;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.how-it-works .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.how-it-works .step-card {
    background: var(--bg-card); /* Tera dark card background (#141414) */
    padding: 3rem 2rem;
    border-radius: 24px; /* FAQ jaisa border radius */
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.how-it-works .step-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-primary); /* Tera neon cyan (#00f0ff) */
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15); /* Neon glow */
}

.how-it-works .step-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.4)); /* Strong icon glow */
}

.how-it-works .step-card h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.how-it-works .step-card p {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
}
.loader-hidden{
display:none;
}

.loader-title{
text-align:center;
margin-bottom:20px;
font-size:20px;
}

.process-steps{
list-style:none;
padding:0;
}

.process-steps li{
display:flex;
align-items:start;
justify-content:space-between;
padding:12px;
margin-bottom:10px;
background:#111;
border-radius:8px;
font-size:14px;
    text-align: start;
}

.circle{
width:16px;
height:16px;
border-radius:50%;
border:2px solid #333;
border-top:2px solid #00e5ff;
margin-right:10px;
display:inline-block;
animation: spin 1s linear infinite;
}

@keyframes spin{
0%{ transform: rotate(0deg); }
100%{ transform: rotate(360deg); }
}

.process-steps li.done .circle{
display:none;
}

.process-steps li.done .tick{
display:inline;
color:#2ed573;
}

.tick{
display:none;
font-weight:bold;
margin-left:auto;
}

.process-steps li.active .circle{
background:#00e5ff;
border-color:#00e5ff;
}

.process-steps li.done .tick{
display:block;
}

#percentageText{
text-align:center;
margin-top:15px;
font-weight:bold;
}

.insta-connect {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.insta-connect input {
    padding: 12px 15px;
    width: 50%;
    border: none;
    border-radius: 5px;
    outline: none;
        height: 55px;
    font-size: 17px;
}

.insta-connect button {
    padding: 12px 20px;
    background: black;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
}

.insta-connect button:hover {
    opacity: 0.9;
}

.steps {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 10px;
    width: 180px;
    text-align: center;
    color: #fff;
    transition: 0.3s;
}

.step:hover {
    transform: translateY(-5px);
}

.step span {
    display: inline-block;
    background: linear-gradient(45deg, #000000, #00000070);
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
}


.results {
  padding: 80px 163px;
  text-align: center;
  background: #0f0f1a;
}

.results h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.results .sub {
  opacity: 0.7;
  margin-bottom: 40px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.result-card {
  background: linear-gradient(145deg, #ff5200, #141420);
  padding: 30px;
  border-radius: 16px;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.result-card:hover {
  transform: translateY(-8px);
}

.result-card h3 {
  font-size: 40px;
  color: #fff;
}

.result-card span {
  font-size: 20px;
  margin-left: 5px;
}

.result-card p {
  margin-top: 10px;
  opacity: 0.8;
}

.features {
  padding:80px 163px;
  background: #0f0f1a;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.features .sub {
  opacity: 0.7;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.feature-card {
  background: linear-gradient(145deg, #1c1c2e, #141420);
  padding: 30px 20px;
  border-radius: 18px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Glow effect */
.feature-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(108,92,255,0.2), transparent);
  top: 0%;
  left: 0%;
  opacity: 0;
  transition: 0.4s;
}

.feature-card:hover::before {
  opacity: 1;
}

/* Icon */
.icon {
  font-size: 30px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  opacity: 0.8;
}


.testimonials {
  padding: 80px 163px;
  background: #0f0f1a;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.testimonials .sub {
  opacity: 0.7;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: linear-gradient(145deg, #1c1c2e, #141420);
  padding: 25px;
  border-radius: 18px;
  text-align: left;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

/* Top user */
.top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.top img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.top h4 {
  margin: 0;
  font-size: 16px;
}

.top span {
  font-size: 12px;
  opacity: 0.6;
}

/* Stars */
.stars {
  color: #ffcc00;
  margin-bottom: 10px;
  font-size: 14px;
}

/* Text */
.testimonial-card p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
}

.faq {
  padding: 80px 20px;
  background: #0f0f1a;
  text-align: center;
}

.faq-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.faq-item {
  background: #1c1c2e;
  padding: 15px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.faq-item:hover {
  background: #23233a;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Arrow */
.arrow {
  font-size: 18px;
  transition: 0.3s;
}

/* Rotate arrow when active */
.faq-item.active .arrow {
  transform: rotate(180deg);
}

/* Answer */
.faq-item p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s ease;
}

/* Active open */
.faq-item.active p {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}



/* MOBILE */
@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
}

p.sub {
    margin-bottom: 50px;
}


.cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #672a0d, #ff5200, #672a0d);
  display: flex;
  justify-content: center;
  text-align: center;
}

.cta-box {
  max-width: 700px;
  width: 100%;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.cta p {
  opacity: 0.9;
  margin-bottom: 25px;
}

/* Input + Button */
.cta-action {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-action input {
  padding: 14px;
  border-radius: 8px;
  border: none;
  width: 260px;
  outline: none;
}

.cta-action button {
  padding: 14px 25px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

/* Hover glow */
.cta-action button:hover {
  background: #111;
  transform: scale(1.05);
}

/* Note */
.cta-note {
  display: block;
  margin-top: 15px;
  font-size: 13px;
  opacity: 0.8;
}

/* MOBILE */
@media (max-width: 600px) {
  .cta h2 {
    font-size: 24px;
  }

  .cta-action {
    flex-direction: column;
  }

  .cta-action input,
  .cta-action button {
    width: 100%;
  }
     
}


        /* PROFILE CARD */
        .profile-box{
            max-width:540px;
            margin: 30px 0px;
            background: linear-gradient(145deg, #1c1c2e, #141420);
            backdrop-filter: blur(10px);
            border-radius:4px;
            padding:25px 14px;
            border: 1px solid #ffffff21;
                width: 50%;
        }

        .profile-box img{
            width:120px;
            height:120px;
            border-radius:50%;
            border:3px solid #dfb774;
            object-fit:cover;
            margin-bottom:10px;
        }

       

        .stats{
                 display:flex;
                 justify-content:space-around;
                 background: #2b3036;
                 border-radius: 4px;
                 margin: 2px 0px 13px;
                 padding: 4px 0px;
        }

        .stats div{
            font-size:14px;
        }

        /* VIDEOS GRID */
        .videos{
            /* padding:20px; */
            display:grid;
            grid-template-columns: repeat(5, 1fr);
            gap:13px;
        }

        .card{
          background: #181827;
    border-radius: 3px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
    border: 1px solid #ffffff21;
        }

        .card-info {
         position: absolute;
    background: #181827;
    bottom: 0;
    width: 100%;
    height: 171px;
    padding: 5px 5%;
        text-align: center;
}
        .card:hover{
            transform:scale(1.05);
        }

        video{
            width:100%;
            height:100%;
            display:block;
        }

        /* MOBILE */
        @media(max-width:768px){
            .videos{
                grid-template-columns: repeat(2, 1fr);
            }
             .sections {
    padding: 4rem 5% 4rem !important;
      }
        .profile-box{    width: 100% !important;}
         .ad-box{  display: none;}
        }

        .sections {
    min-height: calc(100svh - 72px);
    padding: 6rem 5% 4rem;
    background: #000000;
}

h3.title {
    font-size: 14px;
       margin-top: 5px;
}

.trust div {
        font-size: 14px;
}

.trust {
    height: 24px;
    overflow: hidden;
    position: relative;
}

.trust-text {
    position: absolute;
    width: 100%;
    font-size: 14px;
    color: #ffdd22;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s ease;
}

.trust-text.show {
    opacity: 1;
    transform: translateX(0);
}

.namewithbluetickbig{
    display: flex;
    align-items: center;
}

.namewithbluetick{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}
img.bluetick {
    width: 29px;
    height: 29px;
    border-radius: 0px;
    border: none;
    object-fit: cover;
    padding: 3px;
    margin-bottom: 0;
}

img.greentick {
    width: 29px;
    height: 29px;
    border-radius: 0px;
    border: none;
    object-fit: cover;
    padding: 3px;
    margin-bottom: 0;
}

img.greentick {
    width: 19px;
    height: 19px;
    border-radius: 0px;
    border: none;
    object-fit: cover;
    padding: 2px 0px 0px 2px;
    margin-bottom: 0;
}

.yellowtick {
  width: 19px;
    height: 19px;
    border-radius: 0px;
    border: none;
    object-fit: cover;
    padding: 2px 0px 0px 2px;
    margin-bottom: 0;
  
}

.growth{
        width: 23px;
    padding: 3px;
      margin-top: 7px;
}

.titlereach{
    font-size: 10px !important;
    margin-bottom: -6px !important; 
}

.green{
    color: #00ff88;
}

.viral-btn {
    background: linear-gradient(45deg,#ff0077,#ffcc00);
    color: white;
    border: none;
    padding: 10px;
    font-weight: 700;
    font-family: ui-sans-serif;
    width: 100%;
    border-radius: 4px;
    transition: 0.3s;
    cursor: pointer;
}

.instant-growth
{    
    font-size: 8px;
    margin: 1px;}

    .row{
    display: flex;
        align-items: center;
            flex: none;

    }

    .profile-info{
          width: 100%;
    padding-left: 10px;
    }

    .username{
            /* line-height: 0; */
    margin-bottom: 10px;
    margin-left: 2px;
    }

    .viral-profile-btn {
    background: linear-gradient(45deg,#ff0077,#ffcc00);
    color: white;
    border: none;
    padding: 10px;
    font-weight: 700;
    font-family: ui-sans-serif;
    width: 100%;
    border-radius: 4px;
    transition: 0.3s;
    cursor: pointer;
}

.instant-profile-growth {
    font-size: 11px;
    margin: 5px;
    text-align: center;
}


.ad-box {
    background: linear-gradient(145deg, #1c1c2e, #141420);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    height: 240px;
    overflow: hidden;
    border: 1px solid #ffffff21;
    margin: 0px 0px 0px 15px;
    width: 100%;
}
.ad-box img {
    width: 100%;
    display: block;
}

.ad-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(45deg,#ff0077,#ffcc00);
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.ad-btn:hover {
    transform: scale(1.05);
}



.how-it-works {
  padding: 80px 20px;
  background: #0c0c0c;
  text-align: center;
}

.how-it-works h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.how-it-works .sub {
  color: #aaa;
  margin-bottom: 40px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.how-card {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid #222;
}

.how-card:hover {
  transform: translateY(-5px);
  border-color: #ff5200;
}

.how-card .icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.how-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.how-card p {
  color: #aaa;
  font-size: 0.9rem;
}

.loader-box{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#0f172a;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    z-index:1000;
    color:#fff;
    font-size:18px;
}

.loader{
    width:50px;
    height:50px;
    border:5px solid #1e293b;
    border-top:5px solid #22c55e;
    border-radius:50%;
    animation:spin 1s linear infinite;
    margin-bottom:20px;
}

@keyframes spin{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}

.progress-bar{
    width:250px;
    height:8px;
    background:#1e293b;
    border-radius:10px;
    margin-top:15px;
    overflow:hidden;
}

#progressFill{
    width:0%;
    height:100%;
    background:#22c55e;
    transition:width 0.3s;
}


.boost-steps {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.boost-steps li {
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #111;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #aaa;
    transition: 0.3s;
}

.step-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.step-active {
    color: #fff;
    background: #1a1a1a;
}

.step-done {
    color: #2ed573;
    background: #0f1f14;
}




.ai-boost-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.ai-boost-box {
    width: 420px;
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 0 25px rgba(255,82,0,0.3);
    animation: fadeInUp 0.4s ease;
}

.ai-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-header h2 {
    font-size: 18px;
    color: #fff;
}

.ai-header button {
    background: none;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
}

.ai-body {
    margin-top: 15px;
}

.ai-steps {
    list-style: none;
    padding: 0;
}

.ai-steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 10px;
    background: #111;
    color: #aaa;
    transition: 0.3s;
}

.ai-steps li.active {
    background: #1a1a1a;
    color: #fff;
}

.ai-steps li.done {
    background: #0f1f14;
    color: #2ed573;
}

.step-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-result {
    text-align: center;
    margin-top: 15px;
    color: #2ed573;
}

.ai-btn {
       width: 100%;
    margin-top: 15px;
    padding: 18px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #ff5200, #ff8c00);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    font-size: 19px;
}

@keyframes fadeInUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.step-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* LOADING DOT */
.loader-dot {
    width: 6px;
    height: 6px;
    background: #ff5200;
    border-radius: 50%;
    animation: pulseDot 1s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(2); opacity: 0.3; }
    100% { transform: scale(1); opacity: 1; }
}

/* DONE ICON (SVG TICK) */
.step-done .step-icon {
    background: linear-gradient(135deg, #2ed573, #1dd1a1);
}

/* SVG CHECK */
.check-icon {
    width: 14px;
    height: 14px;
    stroke: white;
    stroke-width: 3;
    fill: none;
}

.ai-loader-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.90);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.ai-loader-card {
    width: 320px;
    padding: 25px;
    background: #0f0f0f;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255,82,0,0.2);
}

/* ICON */
.ai-loader-icon {
    width: 50px;
    height: 50px;
    margin: auto;
    margin-bottom: 15px;
    color: #ff5200;
}

/* TEXT */
#loaderText {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

/* PROGRESS */
.ai-progress {
    width: 100%;
    height: 6px;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
}

#progressFill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff5200, #ff8c00);
    transition: 0.4s;
}

.pricing-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.pricing-modal {
  width: 95%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(135deg,#0f172a,#1e293b);
  border-radius: 18px;
  padding: 10px;
  color: #fff;
  position: relative;
}

/* CLOSE */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #111;
  border: none;
  color: #fff;
  border-radius: 50%;
  padding: 6px 10px;
}

/* TITLE */
.pricing-title {
  text-align: center;
  font-size: 22px;
}
.pricing-sub {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}

/* TELEGRAM */
.telegram-box {
  background: #0088cc;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 15px;
}
.telegram-box a {
  color: #fff;
  font-weight: bold;
  margin-left: 10px;
  text-decoration: underline;
}

/* PLANS */
.pricing-wrapper {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.plan {
  min-width: 260px;
  flex: 0 0 auto;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 15px;
  scroll-snap-align: start;
}

/* FEATURED */
.featured {
  border: 2px solid #ff4b2b;
}
.badge {
  background: #ff4b2b;
  padding: 4px 8px;
  font-size: 11px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 5px;
}

/* PRICE */
.price {
  font-size: 24px;
  margin: 10px 0;
}

/* LIST */
.plan ul {
  padding: 0;
  list-style: none;
}
.plan li {
  font-size: 13px;
  margin: 6px 0;
  color: #ddd;
}

/* BUTTON */
.btn {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  background: #334155;
  margin-top: 10px;
  text-decoration: none;
  color: #fff;
}

.btn.primary {
  background: linear-gradient(45deg,#ff416c,#ff4b2b);
}

/* TRUST */
.trust-line {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
}

/* DESKTOP FIX */
@media (min-width: 768px) {
  .pricing-wrapper {
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(3,1fr);
  }

  .plan {
    min-width: auto;
  }
}

/* SINGLE PLAN (Full Profile Boost) */
.pricing-modal-single {
  max-width: 480px !important;
  width: 92% !important;
}

.pricing-wrapper-single {
  display: flex !important;
  justify-content: center !important;
  overflow: visible !important;
  padding-bottom: 0 !important;
}

.plan-single {
  min-width: auto !important;
  width: 100% !important;
  flex: none !important;
  border: 2px solid #6c5cff !important;
}

@media (max-width: 767px) {
  .pricing-modal-single {
    max-width: 95% !important;
    padding: 20px 15px !important;
  }
  
  .pricing-title {
    font-size: 20px !important;
  }
  
  .plan-single {
    padding: 15px !important;
  }
}

#toast {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 14px 18px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    display: none;
    z-index: 9999;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: slideIn 0.4s ease;
}

.success { background: linear-gradient(135deg,#22c55e,#16a34a); }
.error { background: linear-gradient(135deg,#ef4444,#dc2626); }

@keyframes slideIn {
    from { transform: translateX(100%); opacity:0; }
    to { transform: translateX(0); opacity:1; }
}

.btn-loader {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}


.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

table {
    min-width: 600px;
}


input, textarea, select {
  font-size: 12px;
}