/* ==========================================
   ELEGANT, LUXURIOUS & CUTE DESIGN
   ========================================== */

/* Import elegant fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Nunito:wght@400;500;600&display=swap');

:root {
    /* Elegant Rose Gold Palette */
    --cream-bg: #FFFAF8;
    --ivory-bg: #FFF8F5;
    --rose-gold: #B76E79;
    --blush: #E8C4C4;
    --champagne: #F7E7CE;
    --dusty-rose: #D4A5A5;
    --deep-rose: #A45A5A;
    --soft-charcoal: #3D3D3D;
    --warm-gray: #6B6B6B;
    --white: #FFFFFF;

    /* Accent colors */
    --gradient-pink: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 50%, #FF1493 100%);
    --gradient-rose: linear-gradient(135deg, #B76E79 0%, #D4A5A5 50%, #E8C4C4 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 50px;

    /* Luxurious Shadows */
    --shadow-soft: 0 4px 20px rgba(183, 110, 121, 0.08);
    --shadow-medium: 0 8px 30px rgba(183, 110, 121, 0.12);
    --shadow-hover: 0 16px 40px rgba(183, 110, 121, 0.18);
    --shadow-glow: 0 0 60px rgba(183, 110, 121, 0.3);

    /* Transitions */
    --transition-gentle: 0.3s ease-out;
    --transition-soft: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--cream-bg);
    color: var(--soft-charcoal);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ==========================================
   ANIMATED BACKGROUND
   ========================================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.6) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.4) 0%, transparent 70%);
    top: 40%;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 196, 196, 0.5) 0%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(10px, 10px) scale(1.02);
    }
}

/* ==========================================
   FLOATING HEARTS
   ========================================== */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-hearts .heart,
.floating-hearts .sparkle {
    position: absolute;
    font-size: 1.5rem;
    color: var(--rose-gold);
    animation: float-heart 15s ease-in-out infinite;
    opacity: 0.2;
}

.floating-hearts .sparkle {
    font-size: 1rem;
    color: var(--blush);
    animation: twinkle-star 4s ease-in-out infinite;
}

.floating-hearts .heart:nth-child(1) {
    top: 5%;
    left: 8%;
    animation-delay: 0s;
    font-size: 1.2rem;
}

.floating-hearts .heart:nth-child(2) {
    top: 15%;
    right: 12%;
    animation-delay: 2s;
    font-size: 1.8rem;
}

.floating-hearts .heart:nth-child(3) {
    top: 35%;
    left: 5%;
    animation-delay: 4s;
    font-size: 1rem;
}

.floating-hearts .heart:nth-child(4) {
    top: 55%;
    right: 8%;
    animation-delay: 6s;
    font-size: 1.5rem;
}

.floating-hearts .heart:nth-child(5) {
    top: 70%;
    left: 12%;
    animation-delay: 8s;
    font-size: 2rem;
}

.floating-hearts .heart:nth-child(6) {
    top: 85%;
    right: 15%;
    animation-delay: 10s;
    font-size: 1.2rem;
}

.floating-hearts .heart:nth-child(7) {
    top: 25%;
    left: 90%;
    animation-delay: 3s;
    font-size: 1.4rem;
}

.floating-hearts .heart:nth-child(8) {
    top: 65%;
    left: 95%;
    animation-delay: 7s;
    font-size: 1.1rem;
}

.floating-hearts .sparkle:nth-child(9) {
    top: 20%;
    left: 25%;
    animation-delay: 0s;
}

.floating-hearts .sparkle:nth-child(10) {
    top: 45%;
    right: 20%;
    animation-delay: 1s;
}

.floating-hearts .sparkle:nth-child(11) {
    top: 75%;
    left: 35%;
    animation-delay: 2s;
}

.floating-hearts .sparkle:nth-child(12) {
    top: 10%;
    right: 30%;
    animation-delay: 3s;
}

@keyframes float-heart {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.2;
    }

    25% {
        transform: translateY(-20px) rotate(5deg) scale(1.1);
        opacity: 0.35;
    }

    50% {
        transform: translateY(-10px) rotate(-3deg) scale(1);
        opacity: 0.25;
    }

    75% {
        transform: translateY(-25px) rotate(3deg) scale(1.05);
        opacity: 0.3;
    }
}

@keyframes twinkle-star {

    0%,
    100% {
        opacity: 0.15;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3) rotate(180deg);
    }
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) var(--spacing-xl);
    padding-top: var(--spacing-md);
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(183, 110, 121, 0.2);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(183, 110, 121, 0.1);
    }

    50% {
        box-shadow: 0 0 30px rgba(183, 110, 121, 0.25);
    }
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rose-gold);
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--rose-gold);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(183, 110, 121, 0.2);
    white-space: nowrap;
}

.title-emoji {
    display: inline;
}

.title-line {
    display: inline;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--deep-rose) 50%, var(--blush) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--warm-gray);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--rose-gold);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--blush), transparent);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--deep-rose) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-soft);
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(183, 110, 121, 0.4);
}

.cta-arrow {
    animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    animation: fadeIn 1s ease-out 1s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.6;
    }
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--rose-gold);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--rose-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.3;
    }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--warm-gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
.how-it-works {
    padding: var(--spacing-2xl) var(--spacing-lg);
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--rose-gold);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--blush), var(--rose-gold), var(--blush));
    margin: var(--spacing-sm) auto 0;
    border-radius: 2px;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.step-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative;
    border: 1px solid rgba(232, 196, 196, 0.3);
    transition: all var(--transition-soft);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blush);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(183, 110, 121, 0.1);
    font-family: 'Playfair Display', Georgia, serif;
}

.step-card h3 {
    font-size: 1.25rem;
    color: var(--soft-charcoal);
    margin-bottom: var(--spacing-xs);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--blush), var(--rose-gold));
    border-radius: 1px;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery-section {
    position: relative;
    z-index: 2;
    padding-bottom: 0;
}

.section-header {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin-top: var(--spacing-xs);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

/* ==========================================
   TEMPLATE CARDS - Elegant Luxury Style
   ========================================== */
.template-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(183, 110, 121, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(232, 196, 196, 0.4);
    z-index: 1;
}

.template-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    border-radius: var(--radius-lg);
}

.template-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(183, 110, 121, 0.15);
    border-color: var(--blush);
}

.template-card:hover::before {
    opacity: 1;
}

.card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--transition-soft);
}

.template-card:hover .card-image {
    transform: scale(1.03);
}

/* Live Template Preview Styles */
.card-preview-wrapper {
    width: 100%;
    aspect-ratio: 14 / 9;
    overflow: hidden;
    position: relative;
    background: var(--ivory-bg);
    border-radius: var(--radius-lg);
}

.card-preview-iframe {
    width: 1400px;
    height: 900px;
    border: none;
    transform-origin: top left;
    pointer-events: none;
    background: white;
}

.template-card:hover .card-preview-wrapper {
    overflow: hidden;
}

.card-content {
    padding: var(--spacing-md);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--soft-charcoal);
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.card-description {
    color: var(--soft-charcoal);
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    opacity: 0.8;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-btn {
    background: var(--rose-gold);
    color: var(--white);
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-gentle);
    box-shadow: var(--shadow-soft);
    font-family: 'Nunito', sans-serif;
}

.view-btn:hover {
    background: var(--deep-rose);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.card-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.github-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    color: var(--warm-gray);
    transition: all var(--transition-gentle);
}

.github-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.card-tag {
    font-size: 0.875rem;
    color: var(--rose-gold);
    background: rgba(183, 110, 121, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 248, 245, 0.8) 50%, var(--ivory-bg) 100%);
    padding: var(--spacing-lg);
    padding-top: var(--spacing-xl);
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
}

.footer-logo {
    font-size: 2rem;
}

.footer-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rose-gold);
}

.footer-tagline {
    font-size: 1rem;
    color: var(--warm-gray);
    margin-bottom: var(--spacing-md);
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-link {
    color: var(--rose-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-gentle);
}

.footer-link:hover {
    color: var(--deep-rose);
}

.footer-divider {
    color: var(--blush);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--warm-gray);
    opacity: 0.7;
}

/* ==========================================
   TEMPLATE VIEWER MODAL
   ========================================== */
.template-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 245, 245, 0.98);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeInModal var(--transition-gentle);
}

.template-viewer.active {
    display: flex;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.viewer-container {
    width: 95%;
    height: 98%;
    max-width: 1800px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
    animation: slideUp var(--transition-soft);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.viewer-header {
    background: linear-gradient(135deg, var(--rose-gold), var(--dusty-rose));
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.viewer-title-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.viewer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
}

.github-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.github-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

.viewer-controls {
    display: flex;
    gap: var(--spacing-sm);
}

.control-btn {
    background: rgba(255, 255, 255, 0.25);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1.25rem;
    transition: all var(--transition-gentle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.viewer-iframe {
    width: 100%;
    height: calc(100% - 70px);
    border: none;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px),
(orientation: portrait) {

    /* Hero adjustments */
    .hero {
        padding: var(--spacing-sm);
        padding-top: 1.2rem;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: var(--spacing-md);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-divider {
        height: 30px;
    }

    .scroll-indicator {
        display: none;
    }

    /* How it works */
    .how-it-works {
        padding: var(--spacing-xl) var(--spacing-sm);
    }

    .step-card {
        min-width: 100%;
        max-width: 100%;
        padding: var(--spacing-lg);
    }

    .step-connector {
        display: none;
    }

    /* Container spacing */
    .container {
        padding: var(--spacing-sm);
    }

    /* Gallery */
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.0rem;
    }

    /* Preview wrapper */
    .card-preview-wrapper {
        width: 100%;
        aspect-ratio: 390 / 844;
        height: auto;
        border-radius: var(--radius-md);
    }

    /* Iframe scaling */
    .card-preview-iframe {
        width: 390px;
        height: 844px;
        transform-origin: top left;
    }

    /* Card content */
    .card-content {
        padding: var(--spacing-sm);
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-description {
        display: none;
    }

    .card-tag {
        display: none;
    }

    .view-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .github-btn {
        width: 32px;
        height: 32px;
    }

    /* Viewer modal */
    .viewer-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .viewer-header {
        padding: var(--spacing-sm);
    }

    .viewer-title {
        font-size: 1.1rem;
    }

    .control-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .viewer-controls {
        gap: 0.5rem;
    }

    /* Floating hearts */
    .floating-hearts .heart,
    .floating-hearts .sparkle {
        font-size: 1rem;
    }

    /* Gradient orbs */
    .orb-1 {
        width: 300px;
        height: 300px;
    }

    .orb-2 {
        width: 250px;
        height: 250px;
    }

    .orb-3 {
        width: 200px;
        height: 200px;
    }
}


/* ==========================================
   UTILITY CLASSES
   ========================================== */
.hidden {
    display: none !important;
}