/* ==========================================================================
   FIX FOR BLANK TOP SPACES (Paste or merge this near the top of style.css)
   ========================================================================== */

/* 1. Force the HTML body wrapper to start at the absolute edge of the window browser */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-height: 100vh !important;
    background-color: #03001e !important;
}

/* 2. Fix the Hero Title margin from pushing the whole page block down */
.hero {
    margin-top: 40px !important; /* Changed from 60px to 40px to stop margin collapse gap */
    padding-top: 10px !important;
}

/* 3. Ensure the video canvas is anchored precisely to the top edge */
.hero-wrapper {
    position: relative !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 1 !important;
}

.video-bg-container {
    position: absolute !important;
    top: 0 !important;     /* Locks video panel layer seamlessly to the ceiling line */
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: -2 !important;
}
/* Keeps the video background locked ONLY to the top hero section area */
.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    z-index: 1;
}

/* Alter this container rule so the video doesn't clip your footer layers */
.video-bg-container {
    position: absolute; /* Changed from fixed to absolute */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
/* --- Core Reset & Styling --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #03001e;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* --- Video Background --- */
.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 0, 30, 0.82) 0%, rgba(11, 15, 68, 0.88) 100%);
    z-index: -1;
}

/* --- Navigation Bar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* --- Glassmorphic Nav Tab Container --- */
.nav-links {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

/* Individual Links with White Border & Light Orange Effect */
.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

/* White Border Animation (Pseudo-element) */
.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    z-index: -1;
}

/* Light Orange Glow Effect */
.nav-links a::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, rgba(249, 115, 22, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

/* Nav Link Hover States */
.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-links a:hover::after {
    opacity: 1;
}

/* --- Buttons Base Layout --- */
.btn {
    border: none;
    outline: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    background: transparent;
    transition: color 0.3s ease, transform 0.2s ease;
}

/* --- Orange Border Animation Items --- 
   (Purchase Now & Explore Features) */
.btn-purchase, .btn-gradient {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03); /* Fallback subtle fill */
}

/* Static base background styles to replicate original theme gradient colors */
.btn-purchase { background: linear-gradient(90deg, rgba(124, 58, 237, 0.85), rgba(79, 70, 229, 0.85)); }
.btn-gradient { background: linear-gradient(90deg, rgba(147, 51, 234, 0.85), rgba(236, 72, 153, 0.85)); }

/* Animated Orange Border Ring */
.btn-purchase::before, .btn-gradient::before {
    content: '';
    position: absolute;
    inset: -2px; /* Pulls slightly outward to create clean outline space */
    border-radius: 27px;
    padding: 2px; /* Dictates border thickness */
    background: linear-gradient(90deg, #f97316, #ffedd5, #ea580c);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transform: scale(0.94);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

/* Glowing Light Orange Background Effect */
.btn-purchase::after, .btn-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.35) 0%, rgba(249, 115, 22, 0) 75%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Button Hover State Interactions */
.btn-purchase:hover, .btn-gradient:hover {
    transform: translateY(-2px);
}
/* ==========================================================================
   EXACT REPLICA: INFINITE SLIDING INNER LAYOUTS
   ========================================================================== */

.inner-layouts-section {
    background-color: #f8fafc !important; /* Soft, crisp, off-white background */
    padding: 100px 0 !important; /* Spans full width edge-to-edge */
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
    z-index: 5 !important;
    overflow: hidden !important;
}

.layouts-header {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.layouts-giant-num {
    font-size: 100px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    background: linear-gradient(135deg, #f97316 20%, #ea580c 100%) !important; /* Striking premium orange numbers */
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin-bottom: 10px !important;
}

.layouts-headline {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
}

/* Infinite Track Containers */
.scroller-track-container {
    overflow: hidden !important;
    width: 100vw !important;
    display: flex !important;
}

.scroller-track {
    display: flex !important;
    gap: 25px !important;
    width: max-content !important;
    padding: 10px 0 !important;
}

/* Row Animation Loops */
.move-left {
    animation: slideLeft 25s linear infinite !important;
}

.move-right {
    animation: slideRight 25s linear infinite !important;
}

@keyframes slideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes slideRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.layout-thumb-card {
    width: 320px !important; /* Exact sizing bounds matching the screenshot cards */
    height: 220px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 8px !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05) !important;
    border: 1px solid rgba(241, 245, 249, 0.8) !important;
    flex-shrink: 0 !important;
}

.layout-thumb-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    border-radius: 8px !important;
    display: block !important;
}


/* ==========================================================================
   EXACT REPLICA: TESTIMONIALS MASONRY SHIELDS
   ========================================================================== */

.testimonials-section {
    background-color: #f8fafc !important; /* Seamless light background color fill transition */
    padding: 40px 6% 120px 6% !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
    z-index: 5 !important;
}

/* Exact Top Floating Glowing Circular Avatar Group */
.reviews-avatar-hub {
    margin-bottom: 25px !important;
}

.hub-ring-glow {
    position: relative !important;
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(236, 72, 153, 0.15)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.inner-hub-purple {
    width: 54px !important;
    height: 54px !important;
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3) !important;
}

.hub-logo-center {
    width: 22px !important;
    height: auto !important;
    filter: brightness(0) invert(1) !important;
}

.orbit-user {
    position: absolute !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12) !important;
}

/* Perfect alignment parameters around the circle hub edge */
.u1 { top: -8px; left: -14px; }
.u2 { top: -8px; right: -14px; }
.u3 { bottom: -4px; left: -16px; }
.u4 { bottom: -4px; right: -16px; }

.reviews-sub-pill {
    color: #4f46e5 !important;
    background: rgba(79, 70, 229, 0.05) !important;
    border: 1px solid rgba(79, 70, 229, 0.15) !important;
    padding: 6px 20px !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

.reviews-headline {
    font-size: 42px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    text-align: center !important;
    line-height: 1.2 !important;
    margin-bottom: 60px !important;
    letter-spacing: -0.5px !important;
}

/* Exact Multi-Column Masonry Structural Framework Grid Layout */
.testimonials-masonry-container {
    display: flex !important;
    direction: ltr !important;
    gap: 25px !important;
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
}

.masonry-col {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important; /* Stack blocks tightly underneath one another */
}

.review-box {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 28px !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.015) !important;
    border: 1px solid rgba(226, 232, 240, 0.6) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.review-meta {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 15px !important;
    width: 100% !important;
}

/* Accurate leaf marker design shape matching your live screenshot review assets */
.exact-leaf-icon {
    width: 42px !important;
    height: 42px !important;
    background-color: #a3e635 !important; /* Perfectly vibrant lime-green */
    border-radius: 50% 0 50% 50% !important; /* Custom asymmetric point creates the exact leaf shape icon look */
    flex-shrink: 0 !important;
}

.reviewer-info {
    display: flex !important;
    align-items: baseline !important; /* Places tags right inline on a single baseline */
    gap: 6px !important;
}

.reviewer-name {
    color: #0f172a !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}

.reviewer-tag {
    color: #94a3b8 !important;
    font-size: 13px !important;
    font-weight: 500;
}

.review-body {
    color: #475569 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    margin-bottom: 15px !important;
}

.review-stars {
    font-size: 11px !important;
    color: #f97316 !important; /* Soft gold-orange rating stars */
    letter-spacing: 2px !important;
}

/* Responsive adjustment breakpoints logic rules templates overrides */
@media (max-width: 1024px) {
    .testimonials-masonry-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 640px) {
    .testimonials-masonry-container {
        grid-template-columns: 1fr !important;
    }
    .layouts-giant-num { font-size: 70px !important; }
    .layouts-headline, .reviews-headline { font-size: 26px !important; }
}

.btn-purchase:hover::before, .btn-gradient:hover::before {
    opacity: 1;
    transform: scale(1);
}

.btn-purchase:hover::after, .btn-gradient:hover::after {
    opacity: 1;
}

/* --- Secondary View Demos Button --- */
.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}

.btn-outline:hover {
    background: rgba(249, 115, 22, 0.15); /* Light orange flash fallback */
    border-color: rgba(249, 115, 22, 0.5);
}

/* --- Hero Content Structure --- */
.hero {
    text-align: center;
    max-width: 900px;
    margin: 60px auto 40px auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.highlight-text {
    color: #f97316;
}

.hero-subtitle {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- Exact Layout Fan Showcase Styling --- */
.showcase-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 100px 0; /* Adjusted to sit nicely between text and footer */
    overflow: hidden;
    background: transparent;
}

.cards-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px; /* Constrains the horizontal spread area */
    height: 380px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Base Card Blueprint - Scaled down so all 5 sit beautifully inside the section */
.mockup-card {
    position: absolute;
    width: 380px;   /* Decreased width from 540px to keep it compact */
    height: 270px;  /* Decreased height proportionally */
    border-radius: 10px;
    overflow: hidden;
    background: #0b0f2b;
    box-shadow: -10px 15px 35px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
}

/* EXACT COMPACT POSITIONING MATRIX
   We use carefully stepped translateX pixel gaps so all 5 display without completely blocking one another.
*/

/* 1. Far Left Card */
.card-far-left {
    transform: translateX(-320px) translateY(30px) rotate(-11deg) skewX(14deg) scale(0.8);
    z-index: 1;
    opacity: 0.4;
}

/* 2. Mid Left Card */
.card-mid-left {
    transform: translateX(-160px) translateY(15px) rotate(-11deg) skewX(14deg) scale(0.9);
    z-index: 2;
    opacity: 0.75;
    box-shadow: -15px 20px 40px rgba(0, 0, 0, 0.7);
}

/* 3. Central Foreground Focal Card */
.card-center {
    transform: translateX(0px) translateY(0px) rotate(-11deg) skewX(14deg) scale(1);
    z-index: 3;
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: -25px 30px 55px rgba(0, 0, 0, 0.8);
}

/* 4. Mid Right Card */
.card-mid-right {
    transform: translateX(160px) translateY(-15px) rotate(-11deg) skewX(14deg) scale(0.9);
    z-index: 4; /* Higher z-index as we cascade down to the right */
    opacity: 0.75;
}

/* 5. Far Right Card */
.card-far-right {
    transform: translateX(320px) translateY(-30px) rotate(-11deg) skewX(14deg) scale(0.8);
    z-index: 5;
    opacity: 0.4;
}

/* --- Interactive Micro-Animation on Center Card --- */
.card-center:hover {
    transform: translateX(0px) translateY(-10px) rotate(-11deg) skewX(14deg) scale(1.03);
    border-color: rgba(249, 115, 22, 0.4);
}

/* --- Bottom Perks Footer Strip --- */
.perks-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #7c3aed;
    display: flex;
    justify-content: space-around;
    padding: 15px 5%;
    z-index: 15;
}

.perk-item {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.perk-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* Demos Grid Layout Template Rules */
.demos-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.demo-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 15px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    border: 1px solid #f1f5f9;
}

.demo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.09);
}

.demo-img-wrapper {
    width: 100% !important;
    aspect-ratio: 4/3 !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #f1f5f9;
    margin-bottom: 20px;
}

.demo-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center;
}

/* Red "New" Tag Badge */
.badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e11d48;
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.3);
}

/* Rounded "View" hover overlay circle on crypto element */
.view-overlay-btn {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-img-wrapper:hover .view-overlay-btn {
    opacity: 1;
}

.view-overlay-btn span {
    background: linear-gradient(135deg, #3b82f6, #ec4899);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.demo-title {
    color: #0f172a;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 4px;
    padding-left: 4px;
}

.demo-category {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
    padding-left: 4px;
}

/* ================= EXCLUSIVE FEATURES SECTION DESIGN ================= */
.features-section {
    background: #ffffff;
    padding: 90px 5%;
    text-align: center;
    color: #0f172a;
}

.features-sub {
    color: #ec4899;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-main-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
}

.feature-icon-box {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon-box {
    transform: translateY(-6px);
}

.feature-icon {
    font-size: 32px;
}

/* Distinct Soft Icon Box Shadows matching screenshots */
.shadow-purple { box-shadow: 0 15px 35px rgba(139, 92, 246, 0.12); }
.shadow-blue { box-shadow: 0 15px 35px rgba(59, 130, 246, 0.12); }
.shadow-red { box-shadow: 0 15px 35px rgba(239, 68, 68, 0.12); }
.shadow-orange { box-shadow: 0 15px 35px rgba(249, 115, 22, 0.12); }

.feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

/* Floating Scroll to Top button indicator circle */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   THE CORRECTION ENGINE FOR THE DEMOS FILTER BAR 
   ========================================================================== */

.demos-section {
    background-color: #f8fafc !important; /* Force background to very light grey */
    padding: 80px 4% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    position: relative !important;
    z-index: 10 !important;
}

/* The White Pill Capsule Container */
.filter-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: #ffffff !important; 
    padding: 8px 20px !important;
    border-radius: 50px !important; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important; 
    border: 1px solid #e2e8f0 !important;
    margin: 0 auto 50px auto !important;
    width: max-content !important; /* Removed fixed clamp constraints so it holds everything */
    flex-wrap: nowrap !important;  /* Stops links from breaking into multiple stack levels */
}

/* Individual Tab Buttons inside the bar */
.filter-tab {
    border: none !important;
    background: transparent !important;
    padding: 10px 20px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important; 
    cursor: pointer !important;
    border-radius: 40px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    white-space: nowrap !important; /* Keeps multi-word labels from dropping baseline layers */
}

/* The Active Button (Glow Effect) */
.filter-tab.active {
    background: linear-gradient(135deg, #3b82f6, #ec4899) !important; 
    color: #ffffff !important; 
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.35) !important;
}

/* ==========================================================================
   PLATFORM MULTI-SHOWCASE CONTAINER STYLING
   ========================================================================== */

.platform-showcase-section {
    background: linear-gradient(180deg, #0b0d19 0%, #050508 100%) !important;
    padding: 100px 6% !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
    z-index: 5 !important;
}

/* Big "14+" Text Header */
.platform-main-badge {
    font-size: 110px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    background: linear-gradient(135deg, #f97316 0%, #a78bfa 60%, #3b82f6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin-bottom: 15px !important;
    text-align: center !important;
}

.platform-header-content {
    text-align: center !important;
    max-width: 850px !important;
    margin-bottom: 60px !important;
}

.platform-headline {
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    margin-bottom: 30px !important;
    letter-spacing: -0.5px !important;
}

/* Inline Horizon Mini-Badges */
.platform-perks-list {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 25px !important;
    flex-wrap: wrap !important;
}

.platform-perk-pill {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #94a3b8 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.platform-perk-pill .check-mark {
    color: #22c55e !important; /* Vivid green color for checklist checkmarks */
    font-weight: 800 !important;
}

/* Grid Panel Setup */
.platform-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)) !important;
    gap: 40px !important;
    width: 100% !important;
    max-width: 1300px !important;
    margin: 0 auto !important;
}

/* Individual Platform Layout Blocks */
.platform-item-card {
    display: flex !important;
    flex-direction: column !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border-radius: 16px !important;
    padding: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.platform-item-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(124, 58, 237, 0.3) !important; /* Subtle purple frame highlight on focus */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
}

.platform-card-display {
    width: 100% !important;
    aspect-ratio: 16 / 13 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    position: relative !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.platform-card-display img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
}

.platform-card-title {
    color: #cbd5e1 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-top: 15px !important;
    margin-bottom: 5px !important;
}

/* Coming Soon Custom Box Style Filters */
.coming-soon-gradient {
    background: linear-gradient(135deg, #090514 0%, #120a2b 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.coming-soon-text {
    font-family: 'Georgia', serif !important; /* Uses a stylistic script font look */
    font-style: italic !important;
    font-size: 42px !important;
    background: linear-gradient(45deg, #f472b6, #c084fc) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    opacity: 0.8 !important;
}
/* ==========================================================================
   HORIZONTAL CORE PERKS RIBBON DESIGN
   ========================================================================== */

.horizontal-perks-section {
    width: 100% !important;
    background: linear-gradient(135deg, #180945 0%, #0c0426 100%) !important; /* Rich deep royal purple matching screenshot */
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 70px 4% !important;
    position: relative !important;
    z-index: 6 !important;
    overflow: hidden !important;
}

.perks-ribbon-container {
    display: flex !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
}

/* Individual feature columns */
.ribbon-column {
    flex: 1 !important;
    padding: 10px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    position: relative !important;
}

/* Vertical Divider Lines between columns */
.ribbon-column:not(:last-child)::after {
    content: '' !important;
    position: absolute !important;
    right: 0 !important;
    top: 10% !important;
    height: 80% !important;
    width: 1px !important;
    background: rgba(255, 255, 255, 0.08) !important; /* Soft vertical dividing bar rule */
}

/* Icons configured with an orange accent color overlay */
.ribbon-icon {
    font-size: 28px !important;
    margin-bottom: 20px !important;
    filter: sepia(1) saturate(5) hue-rotate(15deg) !important; /* Converts native icons into the glowing orange tone */
}

.ribbon-heading {
    color: #ffffff !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    margin-bottom: 14px !important;
    letter-spacing: -0.3px !important;
}

.ribbon-text {
    color: #94a3b8 !important; /* Muted slate gray description font */
    font-size: 14px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

/* Responsive adjustments for tablet/mobile viewports */
@media (max-width: 1024px) {
    .perks-ribbon-container {
        flex-direction: column !important;
        gap: 40px !important;
    }
    .ribbon-column {
        padding: 0 !important;
    }
    .ribbon-column:not(:last-child)::after {
        display: none !important;
    }
}
/* ==========================================================================
   DARK SUBSCRIPTION PRICING SECTIONS SCHEME
   ========================================================================== */

.pricing-subscription-section {
    background: #060814 !important; /* Rich deep navy backdrop space */
    padding: 100px 6% 120px 6% !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
    z-index: 5 !important;
}

.pricing-header-block {
    text-align: center !important;
    margin-bottom: 80px !important;
}

.pricing-sub-badge {
    color: #6366f1 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    display: inline-block !important;
    margin-bottom: 15px !important;
}

.pricing-main-title {
    font-size: 46px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 18px !important;
    letter-spacing: -0.5px !important;
}

.pricing-subtitle {
    color: #94a3b8 !important;
    font-size: 16px !important;
    max-width: 500px !important;
    margin: 0 auto 35px auto !important;
    line-height: 1.5 !important;
}

/* Capsule Toggle Switcher Tab */
.pricing-toggle-wrap {
    display: inline-flex !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 6px !important;
    border-radius: 30px !important;
}

.toggle-pill {
    border: none !important;
    background: transparent !important;
    color: #64748b !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 10px 26px !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.toggle-pill.active-pill {
    background: rgba(99, 102, 241, 0.15) !important;
    color: #818cf8 !important;
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
}

/* Three Columns Grid Cards Engine Layout */
.pricing-cards-deck {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 40px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    align-items: flex-start !important;
}

/* Core Framework Subscription Blueprint Module Boxes */
.pricing-tier-card {
    background: rgba(11, 15, 36, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 20px !important;
    padding: 50px 35px 40px 35px !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.4s ease !important;
    margin-top: 30px !important; /* Creates buffer clearance for floating diamond */
}

/* Highlighted middle card overrides template bounds */
.tier-standard-highlight {
    background: rgba(15, 20, 54, 0.85) !important;
    border-color: rgba(99, 102, 241, 0.35) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(99, 102, 241, 0.1) !important;
}

/* Absolute Floating Diamond Circle Triggers */
.card-diamond-badge {
    position: absolute !important;
    top: -33px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 66px !important;
    height: 66px !important;
    background: #0b0f24 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 2 !important;
}

.glowing-diamond-ring {
    border-color: rgba(99, 102, 241, 0.4) !important;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.25) !important;
}

.diamond-shape {
    font-size: 26px !important;
    color: #a78bfa !important;
}

.highlighted-diamond {
    color: #c084fc !important;
    text-shadow: 0 0 10px rgba(192, 132, 252, 0.6) !important;
}

.tier-name {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
}

.tier-desc {
    color: #64748b !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
}

.tier-divider {
    border: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    margin-bottom: 25px !important;
}

/* Feature Unordered Listings Styling Content */
.tier-features-list {
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-bottom: 40px !important;
}

.tier-features-list li {
    color: #cbd5e1 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

/* Soft Dark Square Background behind Checkmarks */
.check-box {
    width: 24px !important;
    height: 24px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    color: #38bdf8 !important; /* Cyan-blue tint matching checkboxes in screenshot */
    font-weight: 700 !important;
}

/* Price Box */
.price-amount-block {
    margin-bottom: 30px !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 6px !important;
}

.exact-price {
    font-size: 40px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

.highlighted-blue-price {
    background: linear-gradient(135deg, #ffffff 30%, #818cf8 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.price-period {
    color: #475569 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

/* Purchase Links buttons styling */
.btn-pricing-action {
    width: 100% !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    padding: 14px 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
}

.btn-pricing-action:hover {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px) !important;
}

.action-gradient {
    background: linear-gradient(90deg, #312e81 0%, #4f46e5 100%) !important; /* Soft deep violet base fill */
    border: 1px solid rgba(99, 102, 241, 0.4) !important;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.25) !important;
}

.action-gradient:hover {
    background: linear-gradient(90deg, #3c389e 0%, #5a52f0 100%) !important;
    box-shadow: 0 6px 25px rgba(79, 70, 229, 0.4) !important;
}

.arrow-diag {
    font-size: 16px !important;
    transition: transform 0.2s ease !important;
}

.btn-pricing-action:hover .arrow-diag {
    transform: translate(2px, -2px) !important; /* Shimmies arrow upward diagonally on hover */
}
/* ==========================================================================
   PERFORMANCE STATS OVERVIEW SECTION DESIGN
   ========================================================================== */

.performance-stats-section {
    background: #050508 !important; /* Matches deepest dark base theme color background */
    padding: 60px 4% 100px 4% !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    z-index: 5 !important;
}

.stats-panel-box {
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 24px !important;
    padding: 50px 40px !important;
    width: 100% !important;
    max-width: 580px !important; /* Compact container setup layout matches screenshot ratio */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* Clutch Review Badge Layout */
.clutch-review-header {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 10px 24px !important;
    border-radius: 40px !important;
    margin-bottom: 50px !important;
    width: 100% !important;
    max-width: 480px !important;
}

/* Overlapping Avatars Circle Engine Group */
.avatar-overlapping-group {
    display: flex !important;
    align-items: center !important;
}

.stat-avatar {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid #0c0e17 !important;
    margin-right: -12px !important; /* Shimmies them on top of each other */
    transition: transform 0.2s ease !important;
}

.stat-avatar:hover {
    transform: translateY(-3px) scale(1.05) !important;
    z-index: 10 !important;
}

.clutch-rating-info {
    display: flex !important;
    flex-direction: column !important;
    padding-left: 8px !important;
}

.rating-row {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.rating-number {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

.star-rating-icons {
    font-size: 13px !important;
    letter-spacing: 1px !important;
}

.rating-subtext {
    font-size: 12px !important;
    color: #64748b !important;
    font-weight: 500 !important;
    margin-top: 2px !important;
}

/* 2x2 Clean Counters Matrix Layout Grid */
.counters-matrix-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px 30px !important;
    width: 100% !important;
    margin-bottom: 50px !important;
}

.matrix-stat-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding-left: 20px !important;
}

.stat-big-number {
    font-size: 44px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    margin-bottom: 8px !important;
    letter-spacing: -1px !important;
}

/* Individual Gradient Masks matching image palette rows */
.gradient-blue-text {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.gradient-cyan-text {
    background: linear-gradient(135deg, #6366f1 0%, #a5b4fc 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.gradient-purple-text {
    background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.gradient-pink-text {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.stat-label-text {
    color: #94a3b8 !important; /* Soft descriptive typography shade text */
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
}

/* Sub Footer Text lines */
.brands-trusted-footer {
    width: 100% !important;
    text-align: center !important;
    border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
    padding-top: 25px !important;
}

.trusted-footer-text {
    font-size: 13px !important;
    color: #475569 !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
}

/* Mobile responsive layout collapse fallback */
@media (max-width: 480px) {
    .counters-matrix-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .clutch-review-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        border-radius: 20px !important;
    }
}
/* ==========================================================================
   LIGHT WOOCOMMERCE SHOP SECTION DESIGN
   ========================================================================== */

.shop-feature-section {
    background-color: #f3f0ff !important; /* Soft light purple tinted backdrop canvas matching screenshot */
    padding: 100px 8% !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    z-index: 5 !important;
}

.shop-feature-container {
    display: flex !important;
    width: 100% !important;
    max-width: 1300px !important;
    margin: 0 auto !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 60px !important;
}

/* Left Content Column */
.shop-content-col {
    flex: 1 !important;
    max-width: 580px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

/* Small Sub Heading Pill Button Look */
.shop-mini-badge {
    color: #7c3aed !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    background: transparent !important;
    border: 1px solid rgba(124, 58, 237, 0.3) !important;
    padding: 6px 18px !important;
    border-radius: 20px !important;
    display: inline-block !important;
    margin-bottom: 25px !important;
}

.shop-headline {
    color: #0f172a !important; /* Rich deep slate header text color */
    font-size: 42px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
    letter-spacing: -1px !important;
}

.shop-description {
    color: #64748b !important; /* Muted description gray color */
    font-size: 15px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    margin-bottom: 30px !important;
}

/* Feature Unordered List Lines Matrix */
.shop-check-list {
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-bottom: 40px !important;
}

.shop-check-list li {
    color: #1e293b !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.purple-check {
    color: #8b5cf6 !important; /* Bright purple color theme mark symbols */
    font-weight: 900 !important;
    font-size: 16px !important;
}

/* Shop Section Accent Action Link Button */
.btn-shop-explore {
    border: none !important;
    outline: none !important;
    padding: 14px 32px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: linear-gradient(90deg, #9333ea 0%, #f97316 100%) !important; /* Custom Purple-to-Orange split gradient matching button */
    border-radius: 30px !important;
    cursor: pointer !important;
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.25) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.btn-shop-explore:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.35) !important;
}

/* Right Side Device Image Container Column */
.shop-mockup-col {
    flex: 1.1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.shop-devices-graphic {
    width: 100% !important;
    height: auto !important;
    max-width: 650px !important;
    object-fit: contain !important;
    display: block !important;
    filter: drop-shadow(0 25px 50px rgba(15, 23, 42, 0.08)) !important;
}

/* Responsive breakpoint scaling layout rules for columns layout wrap collapse */
@media (max-width: 991px) {
    .shop-feature-container {
        flex-direction: column !important;
        gap: 50px !important;
        text-align: left !important;
    }
    
    .shop-content-col {
        max-width: 100% !important;
    }
    
    .shop-mockup-col {
        width: 100% !important;
    }
}
/* ==========================================================================
   MODERN BRAND SOCIAL FOOTER DESIGN
   ========================================================================== */

.social-footer-section {
    background: #050508 !important; /* Locks down layout into dark base backup template tone background */
    padding: 60px 4% 40px 4% !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    z-index: 10 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.03) !important;
}

.social-footer-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 25px !important;
    width: 100% !important;
    max-width: 1200px !important;
}

.social-footer-text {
    color: #94a3b8 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: -0.2px !important;
}

/* Row wrapper for buttons alignment framework */
.social-buttons-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

/* Base Universal Blueprint button layouts */
.social-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    padding: 12px 28px !important;
    border-radius: 30px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #cbd5e1 !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; /* Spring-snap response curves on hover */
}

.social-btn:hover {
    color: #ffffff !important;
    transform: translateY(-4px) !important;
}

.social-icon {
    font-size: 16px !important;
}

/* Distinctive Accurate Brand Highlight Focus Masks */

/* 1. Instagram Hover Configuration */
.btn-instagram:hover {
    background: linear-gradient(45deg, #f97316, #ec4899, #8b5cf6) !important; /* Instagram multi-tone neon gradient palette */
    border-color: rgba(236, 72, 153, 0.3) !important;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3) !important;
}

/* ==========================================================================
   CUSTOM CURSOR (Paste this at the absolute bottom of style.css)
   ========================================================================== */
.custom-cursor {
    width: 20px;
    height: 20px;
    background-color: #00008B; /* Dark Blue */
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Crucial: allows clicking "through" the circle */
    z-index: 99999; /* Higher than all standard layout wrappers */
    transition: transform 0.08s ease-out; /* Smooth trailing physics effect */
    will-change: transform;
}

/* Hide the custom cursor completely on touch screen layers */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }
}