@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    --bg-primary: #00040D; /* Pitch dark blue-black */
    --bg-secondary: #0A0518; /* Dark purple base */
    --accent-purple: #7E30E1; /* Primary dark purple accent */
    --accent-purple-glow: rgba(126, 48, 225, 0.4);
    --accent-purple-light: #9B5DE5; /* Lighter purple accent */
    --accent-purple-light-glow: rgba(155, 93, 229, 0.3);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --glass-bg: rgba(10, 5, 24, 0.45); /* Dark purple glass background */
    --glass-bg-hover: rgba(126, 48, 225, 0.08);
    --glass-border: rgba(126, 48, 225, 0.2); /* Translucent purple borders */
    --glass-border-glow: rgba(126, 48, 225, 0.4);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ==========================================
   BASE STYLES & CYBER GRID
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-sans);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Premium Cyber-Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(126, 48, 225, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 48, 225, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -3;
    pointer-events: none;
}

/* Custom highlight underline helper */
.highlight-underline {
    position: relative;
    display: inline-block;
    color: var(--accent-purple-light);
    font-weight: 700;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-purple-light));
    border-radius: 2px;
    box-shadow: 0 2px 8px var(--accent-purple-light-glow);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: rgba(126, 48, 225, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* ==========================================
   LIQUID GLOW BACKGROUND
   ========================================== */
.glow-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.3;
    mix-blend-mode: screen;
    animation: float-blob 22s infinite alternate ease-in-out;
    transition: transform 0.2s ease-out; /* For smooth mouse movement */
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-purple) 0%, rgba(0, 0, 0, 0) 70%);
    animation-duration: 25s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--bg-secondary) 0%, rgba(0, 0, 0, 0) 70%);
    animation-duration: 30s;
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-purple) 0%, rgba(0, 0, 0, 0) 70%);
    animation-duration: 20s;
    animation-delay: -10s;
}

@keyframes float-blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(50px, -70px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 40px) scale(0.9);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

/* Interactive cursor spotlight glow */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(126, 48, 225, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -1;
    mix-blend-mode: screen;
    will-change: left, top;
}

/* ==========================================
   GLASSMORPHISM UTILITIES & EFFECTS
   ========================================== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
}

/* Shimmer Swipe Effect on Hover */
.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(155, 93, 229, 0.12) 40%,
        rgba(155, 93, 229, 0.18) 50%,
        transparent 60%
    );
    transform: skewX(-25deg);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    pointer-events: none;
}

.shimmer-effect:hover::after {
    left: 150%;
}

/* Scroll Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(35px) scale(0.98);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8%;
    background: rgba(0, 4, 13, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 40%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--accent-purple);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-purple);
}

.btn-nav {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-nav:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px var(--accent-purple-glow);
    transform: translateY(-1px);
    background: rgba(126, 48, 225, 0.1);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(100px, 15vw, 180px) 20px;
    position: relative;
}

.container {
    max-width: 900px;
    width: 100%;
    z-index: 1;
}

.hero-title {
    font-size: clamp(32px, 6vw, 54px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-light) 50%, var(--accent-purple) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    animation: text-shine 5s linear infinite;
    position: relative;
    display: inline-block;
}

@keyframes text-shine {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: clamp(16px, 3.5vw, 20px);
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

.btn-main {
    background: linear-gradient(135deg, var(--accent-purple) 0%, #5b1eb8 100%);
    color: var(--text-main);
    border: none;
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 0 20px var(--accent-purple-glow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px var(--accent-purple);
    background: linear-gradient(135deg, #956ef5 0%, var(--accent-purple) 100%);
}

/* Hero Badge & Pulsing dot styling */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(126, 48, 225, 0.08);
    border: 1px solid rgba(126, 48, 225, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-purple-light);
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(126, 48, 225, 0.1);
    text-transform: uppercase;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #00ff66;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff66;
    animation: badge-pulse 1.5s infinite alternate;
}

@keyframes badge-pulse {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; }
}

/* Hero dual action buttons */
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.play-svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Floating tech pills container & animation */
.floating-pills-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-pill {
    position: absolute;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    border: 1px solid;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: float-slow 8s infinite ease-in-out;
    opacity: 0.8;
}

@keyframes float-slow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.pill-pr {
    background: rgba(0, 0, 92, 0.3);
    border-color: rgba(0, 229, 255, 0.3);
    color: #00e5ff;
    left: clamp(5%, 10vw, 15%);
    top: 25%;
    animation-delay: 0s;
    animation-duration: 9s;
}

.pill-ae {
    background: rgba(27, 0, 60, 0.3);
    border-color: rgba(216, 131, 255, 0.3);
    color: #d883ff;
    right: clamp(5%, 10vw, 15%);
    top: 20%;
    animation-delay: -2s;
    animation-duration: 8s;
}

.pill-cut {
    background: rgba(17, 17, 17, 0.3);
    border-color: rgba(0, 245, 212, 0.3);
    color: #00f5d4;
    left: clamp(4%, 8vw, 12%);
    bottom: 25%;
    animation-delay: -4s;
    animation-duration: 10s;
}

.pill-fps {
    background: rgba(17, 17, 17, 0.3);
    border-color: rgba(0, 255, 102, 0.3);
    color: #00ff66;
    right: clamp(4%, 8vw, 12%);
    bottom: 30%;
    animation-delay: -1s;
    animation-duration: 7s;
}

.pill-render {
    background: rgba(17, 17, 17, 0.3);
    border-color: rgba(255, 159, 28, 0.3);
    color: #ff9f1c;
    left: 45%;
    top: 15%;
    animation-delay: -5s;
    animation-duration: 11s;
}

.hero .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .floating-pill {
        display: none;
    }
}

/* ==========================================
   COMMON SECTION STYLING
   ========================================== */
.styles-section,
.video-section,
.feedback-section,
.pricing-section {
    padding: clamp(60px, 10vw, 100px) 8%;
    text-align: center;
    position: relative;
}

.section-title {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    /* Animated Gradient Headings */
    background: linear-gradient(135deg, #fff 20%, var(--accent-purple-light) 65%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shine 6s linear infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-purple-light));
    border-radius: 2px;
}

/* ==========================================
   VIRAL STYLES SECTION
   ========================================== */
.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto 0 auto;
}

.style-card {
    padding: clamp(30px, 5vw, 40px) 24px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.style-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.style-card:hover {
    border-color: rgba(126, 48, 225, 0.6);
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 30px -10px rgba(126, 48, 225, 0.25);
    background: var(--glass-bg-hover);
}

/* Fixed centered top neon highlight line filament (no corner clipping) */
.style-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-purple-light), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 8px var(--accent-purple-light-glow);
    z-index: 3;
}

.style-card:hover::after {
    transform: scaleX(1);
}

/* ==========================================
   VIDEO SECTION (NO TITLE PREVIEW)
   ========================================== */
.video-section {
    padding-top: 20px; /* Reduced since title is removed */
}

.video-wrapper {
    max-width: 850px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--accent-purple), transparent, var(--accent-purple-light), transparent);
    animation: rotate-border 12s infinite linear;
    z-index: -1;
    opacity: 0.25;
}

@keyframes rotate-border {
    100% {
        transform: rotate(360deg);
    }
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 4, 13, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.5s ease;
}

.video-overlay:hover {
    background: rgba(0, 4, 13, 0.35);
    backdrop-filter: blur(1px);
}

.play-btn {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    border-radius: 50%;
    background: var(--accent-purple);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px var(--accent-purple-glow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 16px;
}

.play-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    margin-left: 4px;
}

.video-overlay:hover .play-btn {
    transform: scale(1.12);
    background: var(--accent-purple-light);
    box-shadow: 0 0 30px var(--accent-purple-light-glow);
}

.video-overlay p {
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* ==========================================
   REVIEWS MULTI-ROW AUTOMATIC CAROUSEL
   ========================================== */
.reviews-marquee-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    width: 100%;
}

.reviews-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    /* Fade effects at left & right borders */
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.reviews-marquee-track {
    display: flex;
    gap: 0; /* Use margins on cards to avoid gap translation glitches */
    width: max-content;
    will-change: transform;
}

.marquee-left {
    animation: scroll-left 35s linear infinite;
}

.marquee-right {
    animation: scroll-right 35s linear infinite;
}

.reviews-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--scroll-width, -50%));
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(var(--scroll-width, -50%));
    }
    100% {
        transform: translateX(0);
    }
}

.review-card {
    width: clamp(285px, 80vw, 360px); /* Flexible responsive width card */
    flex-shrink: 0;
    margin-right: 24px; /* Constant margin for seamless marquee looping */
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: left;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.review-card:hover {
    border-color: var(--accent-purple-light);
    background: rgba(126, 48, 225, 0.08);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(126, 48, 225, 0.25);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light));
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.review-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-rating {
    color: #ffb800;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-text {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
}

/* ==========================================
   PRICING CARD (PREMIUM REDESIGN)
   ========================================== */
.pricing-section {
    padding: clamp(60px, 10vw, 100px) 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Outer Wrapper: Keeps overflow visible to display floating badge */
.pricing-card {
    max-width: 500px;
    width: 100%;
    margin: 40px auto 0 auto;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Inner Container: Restricts shimmer swipe glow inside card borders */
.pricing-card-inner {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(126, 48, 225, 0.12) 0%, rgba(10, 5, 24, 0.6) 50%, rgba(0, 4, 13, 0.8) 100%);
    border: 1px solid rgba(126, 48, 225, 0.3);
    padding: clamp(40px, 8vw, 60px) clamp(24px, 5vw, 48px);
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(126, 48, 225, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card:hover .pricing-card-inner {
    border-color: rgba(126, 48, 225, 0.6);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(126, 48, 225, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-purple-light) 0%, var(--accent-purple) 100%);
    padding: 6px 24px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px var(--accent-purple-glow);
    color: #fff;
    white-space: nowrap;
    z-index: 10;
}

.pricing-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 30%, var(--accent-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: rgba(126, 48, 225, 0.04);
    border: 1px solid rgba(126, 48, 225, 0.15);
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
}

.total-value {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
}

.total-value span {
    color: var(--accent-purple-light);
    text-decoration: line-through;
    font-weight: 700;
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
}

.old-price {
    font-size: 22px;
    color: #6b7280;
    text-decoration: line-through;
    font-weight: 500;
}

.new-price {
    font-size: 54px;
    font-weight: 800;
    color: #d400ff;
    background: linear-gradient(135deg, #ffffff 0%, #d400ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    display: inline-flex;
    align-items: flex-start;
    line-height: 0.9;
}

.new-price sup {
    font-size: 0.4em;
    font-weight: 800;
    color: #d400ff;
    -webkit-text-fill-color: #d400ff; /* Ensure it is visible and not transparent */
    margin-top: 4px;
    margin-right: 2px;
    vertical-align: baseline;
    top: 0;
    position: relative;
    line-height: 1;
}

.old-price sup,
.total-value span sup {
    font-size: 0.55em;
    vertical-align: top;
    position: relative;
    top: 3px;
    margin-right: 1px;
}

.pricing-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-benefits li {
    font-size: 14px;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-benefits li svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--accent-purple-light);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.btn-large-join {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-light) 100%);
    color: #fff;
    border: none;
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px var(--accent-purple-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-large-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(126, 48, 225, 0.5);
    background: linear-gradient(135deg, #956ef5 0%, var(--accent-purple-light) 100%);
}

.footer-note {
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================
   RESPONSIVE DESIGN ADAPTATIONS (MOBILE/TABLET)
   ========================================== */
@media (max-width: 768px) {
    header {
        padding: 16px 5%;
    }
    
    .btn-nav {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .styles-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .video-wrapper {
        border-radius: 16px;
        padding: 4px;
    }
    
    .video-container {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 4%;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .btn-nav {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .btn-main {
        padding: 14px 35px;
        font-size: 15px;
    }
    
    .style-card {
        padding: 24px 16px;
        font-size: 16px;
    }
}

/* ==========================================
   PRICING DUAL BUTTONS
   ========================================== */
.pricing-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 15px;
}

.pricing-actions .btn-secondary-action,
.pricing-actions .btn-large-join {
    flex: 1;
    width: 0; /* Ensures absolute 50/50 split */
    min-width: 0;
    height: 52px; /* Fixed height for absolute size equivalence */
    padding: 0 10px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box; /* Crucial for height equivalence with borders */
    text-decoration: none;
}

.pricing-actions .btn-secondary-action {
    background: rgba(212, 0, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(212, 0, 255, 0.2);
}

.pricing-actions .btn-secondary-action:hover {
    background: rgba(212, 0, 255, 0.15);
    border-color: #d400ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 0, 255, 0.15);
}

.pricing-actions .btn-large-join {
    margin-top: 0;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-light) 100%);
    box-shadow: 0 10px 25px var(--accent-purple-glow);
    color: #fff;
    border: 1px solid transparent; /* Matches border width of secondary button */
}

.pricing-actions .btn-large-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(126, 48, 225, 0.5);
    background: linear-gradient(135deg, #956ef5 0%, var(--accent-purple-light) 100%);
}

/* ==========================================
   CREATIVE TIMELINE FOOTER
   ========================================== */
.timeline-footer {
    background: #020108;
    border-top: 1px solid rgba(126, 48, 225, 0.25);
    padding: 60px 8% 40px 8%;
    position: relative;
    z-index: 10;
    overflow: hidden;
    margin-top: 50px;
}

.footer-hud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 5, 24, 0.7);
    border: 1px solid rgba(126, 48, 225, 0.2);
    border-radius: 12px 12px 0 0;
    padding: 12px 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hud-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hud-indicator {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #00ff66;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.timecode {
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
}

.hud-center {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hud-ctrl-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hud-ctrl-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--text-muted);
}

.hud-ctrl-btn:hover {
    background: rgba(126, 48, 225, 0.15);
    border-color: var(--accent-purple-light);
}

.hud-ctrl-btn:hover svg {
    fill: var(--text-main);
}

.hud-play-btn {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
}

.hud-play-btn svg {
    fill: #fff;
}

.hud-play-btn:hover {
    background: var(--accent-purple-light);
    box-shadow: 0 0 10px var(--accent-purple-glow);
}

.hud-right {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Timeline Track Area */
.timeline-editor {
    position: relative;
    background: rgba(0, 4, 13, 0.85);
    border-left: 1px solid rgba(126, 48, 225, 0.2);
    border-right: 1px solid rgba(126, 48, 225, 0.2);
    border-bottom: 1px solid rgba(126, 48, 225, 0.2);
    padding: 10px 0;
    cursor: crosshair;
}

.timeline-playhead {
    position: absolute;
    top: 0;
    left: 10%;
    width: 2px;
    height: 100%;
    background: #00ffff;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    transition: left 0.05s linear;
}

.timeline-playhead.dragging {
    transition: none !important;
}


.timeline-playhead::before {
    content: '';
    position: absolute;
    top: 0;
    left: -6px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid #00ffff;
    filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.8));
}

.timeline-track {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    height: 64px;
}

.timeline-track:last-child {
    border-bottom: none;
}

.track-label {
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 5, 24, 0.6);
    border-right: 1px solid rgba(126, 48, 225, 0.2);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-purple-light);
    letter-spacing: 0.5px;
    user-select: none;
}

.track-content {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.timeline-clip {
    height: 44px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    user-select: none;
}

.timeline-clip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.clip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.timeline-clip svg {
    width: 100%;
    height: 100%;
    fill: #fff;
    transition: transform 0.3s ease;
}

.timeline-clip:hover svg {
    transform: scale(1.15) rotate(-3deg);
}

.timeline-clip:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Clip Colors (Sleek Theme Palette) */
.clip-youtube {
    background: #FF0000;
    border-color: rgba(255, 0, 0, 0.5);
}
.clip-youtube:hover {
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.clip-instagram {
    background: linear-gradient(45deg, #f09433, #dc2743, #cc2366, #bc1888);
    border-color: rgba(220, 39, 67, 0.5);
}
.clip-instagram:hover {
    box-shadow: 0 0 15px rgba(220, 39, 67, 0.4);
}

.clip-tiktok {
    background: #010101;
    border-color: rgba(0, 242, 234, 0.3);
}
.clip-tiktok:hover {
    box-shadow: -3px 0 10px rgba(0, 242, 234, 0.5), 3px 0 10px rgba(254, 44, 85, 0.5);
    border-color: rgba(254, 44, 85, 0.4);
}

.clip-discord {
    background: #5865F2;
    border-color: rgba(88, 101, 242, 0.5);
}
.clip-discord:hover {
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.clip-brand {
    background: linear-gradient(90deg, rgba(126, 48, 225, 0.3), rgba(10, 5, 24, 0.6));
    border-color: var(--glass-border);
}
.clip-brand:hover {
    box-shadow: 0 0 15px rgba(126, 48, 225, 0.4);
    border-color: var(--accent-purple-light);
}

.clip-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-image: repeating-linear-gradient(90deg, var(--accent-purple-light) 0px, var(--accent-purple-light) 2px, transparent 2px, transparent 6px);
    opacity: 0.35;
    animation: wave-play 2s steps(8) infinite;
}

@keyframes wave-play {
    0% { background-position-x: 0px; }
    100% { background-position-x: 48px; }
}

.clip-developer {
    background: linear-gradient(135deg, rgba(126, 48, 225, 0.2) 0%, rgba(155, 93, 229, 0.3) 100%);
    border-color: var(--glass-border-glow);
}
.clip-developer:hover {
    box-shadow: 0 0 20px rgba(155, 93, 229, 0.4);
    border-color: var(--accent-purple-light);
}

.timeline-clip::after {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: rgba(10, 5, 24, 0.95);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border: 1px solid var(--glass-border);
    transition: all 0.2s ease;
    z-index: 100;
}

.timeline-clip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Footer Bottom Layout */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: var(--text-muted);
}

.developed-credits a {
    color: var(--accent-purple-light);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.developed-credits a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--accent-purple-light-glow);
}

/* Responsive adjust for mobile */
@media (max-width: 768px) {
    .footer-hud-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .hud-center {
        width: 100%;
        justify-content: center;
    }
    
    .hud-right {
        align-self: flex-end;
    }
    
    .timeline-track {
        height: auto;
        padding: 10px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .track-label {
        width: 100%;
        height: 30px;
        border-right: none;
        border-bottom: 1px solid rgba(126, 48, 225, 0.2);
        justify-content: flex-start;
        padding-left: 15px;
    }
    
    .track-content {
        padding: 10px 15px;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start !important;
    }
    
    .timeline-clip {
        width: calc(50% - 5px) !important;
        justify-content: center;
    }
    
    .clip-brand,
    .clip-developer {
        width: 100% !important;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pricing-actions {
        flex-direction: column;
        gap: 10px;
    }
    .pricing-actions .btn-secondary-action,
    .pricing-actions .btn-large-join {
        width: 100%;
        flex: none;
    }
}