:root {
    /* Color Palette - Premium Light NBA Style */
    --bg-color: #f8f9fa;
    --bg-gradient: radial-gradient(circle at 50% 0%, #ffffff 0%, #f3f4f6 100%);
    --text-primary: #111827;
    /* Rich Black */
    --text-secondary: #4b5563;
    /* Slate Hex */

    --accent-primary: #ea580c;
    /* Deep Vibrant Orange */
    --accent-secondary: #0ea5e9;
    /* Sky Blue */
    --accent-success: #10b981;
    /* Emerald Green */

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    --glass-highlight: rgba(255, 255, 255, 0.9);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    background-image: var(--bg-gradient);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #111827, #4b5563);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    text-align: center;
}

.text-gradient-orange {
    background: linear-gradient(to right, #ff4b1f, #ff9068);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(to right, #1fddff, #ff4b1f);
    /* NBA Contrast */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
}

.glass-card:hover {
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), #ff9068);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 75, 31, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 75, 31, 0.4);
}

.btn-green {
    background: linear-gradient(135deg, var(--accent-success), #00b894);
    color: #000;
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.2);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Gallery Grid */
.design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.design-item img {
    width: 100%;
    border-radius: var(--radius-md);
    display: block;
    transition: transform 0.3s ease;
}

.design-item:hover img {
    transform: scale(1.03);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
}

.pricing-card.premium {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 2px solid var(--accent-primary);
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.15);
}

.pricing-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin: 1.5rem 0;
}

.pricing-old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.5rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.pricing-features li i {
    color: var(--accent-success);
    margin-right: 10px;
}

/* Testimonials/Videos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 177.78%;
    /* 9:16 Aspect Ratio for Shorts */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 4px solid var(--glass-border);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Responsive */
.hero-description {
    margin: 1.5rem 0 2rem;
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1rem;
        margin: 1rem 0 1.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }

    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }

    h1 {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .pricing-grid {
        gap: 2rem;
    }

    .pricing-price {
        font-size: 3rem;
    }
}

/* Sticky FOMO Bar */
.sticky-fomo-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111827;
    color: white;
    padding: 12px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-top: 2px solid var(--accent-primary);
    transform: translateY(100%);
    animation: slideUp 0.5s ease 2s forwards;
}

.fomo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.fomo-text {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
}

#countdown {
    color: var(--accent-primary);
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.btn-fomo {
    background: linear-gradient(135deg, var(--accent-success), #00b894);
    color: black;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-fomo:hover {
    transform: scale(1.05);
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .sticky-fomo-bar {
        padding: 10px 0;
    }

    .fomo-content {
        gap: 1rem;
        justify-content: space-between;
    }

    .fomo-text {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 2px;
        align-items: flex-start;
    }

    #countdown {
        font-size: 1rem;
    }

}

.btn-fomo {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}
}

/* Infinite Carousel */
.carousel-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: calc(300px * 24);
    /* 12 images * 2 sets */
    gap: 30px;
    animation: scroll 40s linear infinite;
    padding: 20px 0;
}

.carousel-slide {
    width: 300px;
    height: 400px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-slide:hover {
    transform: scale(1.05) translateY(-5px);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.2);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-3960px);
    }

    /* (300px + 30px) * 12 items */
}

@media (max-width: 768px) {
    .carousel-slide {
        width: 220px;
        height: 300px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-3000px);
        }

        /* (220px + 30px) * 12 items */
    }
}


/* Phone Mockup Animation */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: #111827;
    border-radius: 40px;
    border: 12px solid #374151;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;

    /* Entrance Animation Initial State */
    opacity: 0;
    transform: translateY(100px) scale(0.95) rotateX(10deg);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy classic effect */
}

.phone-mockup.animate {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
}

/* Notch */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #374151;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 20;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    /* Back to Black */
    overflow: hidden;
    position: relative;
    padding: 15px 5px 15px 15px;
    /* Right padding reduced for scrollbar space */
}

/* content for phone scroll */
.phone-scroll-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    /* Enable manual scroll */
    padding-right: 5px;
    /* Minimal padding */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

/* Custom Scrollbar for Phone (Webkit) */
.phone-scroll-content::-webkit-scrollbar {
    display: none;
    /* Hidden scrollbar for cleaner feel */
}

/* Phone Column Layout */
.phone-col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Image Styles in Feed */
.phone-col img {
    width: 100%;
    height: auto;
    /* Natural height */
    object-fit: cover;
    display: block;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    cursor: zoom-in;
    /* clearly indicates click action */
}

/* Hide second column if present (cleanup) */
.phone-col:nth-child(2) {
    display: none;
}

/* Cleanup for potential leftover snap classes */
.snap-item {
    display: contents;
}

.snap-item img {
    cursor: zoom-in;
}

/* T-Shirt Mockup Carousel */
.mockup-carousel-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scrollMockups 30s linear infinite;
    padding: 10px 0;
}

.mockup-slide {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    /* Glass feel */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.mockup-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover container cleanly */
    transition: transform 0.3s ease;
}

.mockup-slide:hover img {
    transform: scale(1.1);
}

@keyframes scrollMockups {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-320px * 6));
    }

    /* (300px width + 20px gap) * 6 items */
}

/* Instruction Text */
.scroll-instruction {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

/* Lightbox Styles - ROOT LEVEL (Corrected) */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    /* Max Z-Index */
    display: flex;
    /* Flex to center content */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out forwards;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-family: sans-serif;
    z-index: 100000;
}

.lightbox-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}