/* SovereignCMS Marketplace - Glassmorphic Space Neon Theme */

:root {
    /* Neon Purple Color Palette */
    --primary: #a855f7;
    --primary-dark: #9333ea;
    --primary-light: #c084fc;
    --secondary: #06b6d4;
    --accent: #f472b6;
    --neon-purple: #bf5af2;
    --neon-pink: #ff2d92;
    --neon-cyan: #00fff2;
    --neon-blue: #5865f2;

    /* Status Colors */
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Space Background Colors */
    --bg: #0a0a0f;
    --bg-light: rgba(20, 15, 35, 0.8);
    --bg-card: rgba(25, 20, 45, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.03);

    /* Text */
    --text: #f8fafc;
    --text-muted: #a1a1aa;
    --text-glow: rgba(168, 85, 247, 0.8);

    /* Borders & Effects */
    --border: rgba(168, 85, 247, 0.2);
    --border-glow: rgba(168, 85, 247, 0.4);
    --radius: 12px;
    --radius-lg: 20px;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);

    /* Neon Glows */
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(168, 85, 247, 0.3);
    --glow-pink: 0 0 20px rgba(244, 114, 182, 0.5), 0 0 40px rgba(244, 114, 182, 0.3);
    --glow-cyan: 0 0 20px rgba(6, 182, 212, 0.5), 0 0 40px rgba(6, 182, 212, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animated Space Background */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Space Background with Stars */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        /* Large stars */
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.9), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 50px 160px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255,255,255,0.9), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.8), transparent),
        /* Medium stars */
        radial-gradient(1px 1px at 180px 20px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 200px 150px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 250px 60px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 280px 180px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 310px 90px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 350px 30px, rgba(255,255,255,0.6), transparent),
        /* Small stars */
        radial-gradient(1px 1px at 370px 140px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 400px 200px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 420px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 450px 170px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 480px 100px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 500px 220px, rgba(255,255,255,0.7), transparent);
    background-repeat: repeat;
    background-size: 550px 250px;
    animation: stars 100s linear infinite;
}

/* Nebula/Aurora Effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        /* Purple nebula */
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(139, 92, 246, 0.15), transparent),
        /* Pink nebula */
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(236, 72, 153, 0.1), transparent),
        /* Cyan accent */
        radial-gradient(ellipse 50% 30% at 60% 80%, rgba(6, 182, 212, 0.08), transparent),
        /* Deep purple */
        radial-gradient(ellipse 100% 60% at 50% 100%, rgba(88, 28, 135, 0.2), transparent);
    pointer-events: none;
}

@keyframes stars {
    from { transform: translateY(0); }
    to { transform: translateY(-250px); }
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.2s, text-shadow 0.2s;
}

a:hover {
    color: var(--neon-purple);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons - Neon Glass Style */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--neon-purple) 100%);
    color: white;
    border: 1px solid rgba(168, 85, 247, 0.5);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--primary) 100%);
    box-shadow: var(--glow-purple);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.btn-success {
    background: linear-gradient(135deg, var(--success) 0%, #10b981 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-success:hover {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5), 0 0 40px rgba(34, 197, 94, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, var(--error) 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5), 0 0 40px rgba(239, 68, 68, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Neon outline button variant */
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary-light);
}

.btn-outline:hover {
    background: rgba(168, 85, 247, 0.1);
    box-shadow: var(--glow-purple);
    color: white;
}

/* Forms - Glass Style */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text);
    font-size: 14px;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15), 0 0 20px rgba(168, 85, 247, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a855f7' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 44px;
}

/* Header - Glassmorphic */
.site-header {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: 100%;
}

/* Header Left - Logo + Nav grouped together */
.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 50%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-shadow: none;
    transition: filter 0.3s;
    white-space: nowrap;
}

.logo:hover {
    text-decoration: none;
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(191, 90, 242, 0.5));
}

.main-nav {
    display: flex;
    gap: 6px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid transparent;
}

.nav-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.nav-item:hover {
    color: var(--text);
    background: var(--glass-bg);
    border-color: var(--glass-border);
    text-decoration: none;
}

.nav-item:hover .nav-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 4px currentColor);
}

.nav-item.active {
    color: var(--text);
    background: var(--glass-bg);
    border-color: var(--glass-border);
}

/* Type-specific active colors with neon glow */
.nav-item[data-color="#8b5cf6"].active {
    color: #c084fc;
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}
.nav-item[data-color="#8b5cf6"]:hover {
    color: #c084fc;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

.nav-item[data-color="#06b6d4"].active {
    color: #22d3ee;
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}
.nav-item[data-color="#06b6d4"]:hover {
    color: #22d3ee;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.nav-item[data-color="#22c55e"].active {
    color: #4ade80;
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}
.nav-item[data-color="#22c55e"]:hover {
    color: #4ade80;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.15);
}

.nav-item[data-color="#f59e0b"].active {
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}
.nav-item[data-color="#f59e0b"]:hover {
    color: #fbbf24;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.nav-item[data-color="#ec4899"].active {
    color: #f472b6;
    background: rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}
.nav-item[data-color="#ec4899"]:hover {
    color: #f472b6;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.15);
}

.user-menu {
    position: relative;
}

.user-menu-toggle {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text);
    padding: 10px 18px;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.user-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(20, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    min-width: 200px;
    margin-top: 10px;
    display: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(168, 85, 247, 0.1);
    overflow: hidden;
}

.user-menu:hover .user-dropdown {
    display: block;
}

.user-dropdown a {
    display: block;
    padding: 12px 18px;
    color: var(--text);
    transition: all 0.2s;
}

.user-dropdown a:hover {
    background: rgba(168, 85, 247, 0.15);
    color: var(--primary-light);
    text-decoration: none;
    padding-left: 22px;
}

.user-dropdown hr {
    border: none;
    border-top: 1px solid var(--glass-border);
    margin: 6px 0;
}

/* Flash Messages - Neon Style */
.flash {
    padding: 16px 0;
    backdrop-filter: blur(10px);
}

.flash-success {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: inset 0 0 30px rgba(34, 197, 94, 0.1);
}

.flash-error {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error);
    border-bottom: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: inset 0 0 30px rgba(239, 68, 68, 0.1);
}

.flash-warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: inset 0 0 30px rgba(245, 158, 11, 0.1);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

/* Cards - Glassmorphic */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s;
}

.card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--glass-shadow), 0 0 30px rgba(168, 85, 247, 0.1);
}

.card-header {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--glass-border);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

/* Product Card - Glassmorphic Neon */
.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--neon-pink), var(--secondary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(168, 85, 247, 0.15),
        inset 0 0 60px rgba(168, 85, 247, 0.03);
}

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

.product-image {
    display: block;
    height: 180px;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.8) 0%, rgba(25, 20, 45, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.8), transparent);
    pointer-events: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s, filter 0.4s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.product-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--neon-purple) 50%, var(--neon-pink) 100%);
    font-size: 56px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

/* Badges - Neon Glow */
.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.badge-featured {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.badge-beta {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    top: auto;
    bottom: 12px;
    right: 12px;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.product-info {
    padding: 20px;
}

.product-type {
    font-size: 11px;
    color: var(--primary-light);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.product-name {
    font-size: 18px;
    margin: 8px 0;
    font-weight: 600;
}

.product-name a {
    color: var(--text);
    transition: all 0.3s;
}

.product-name a:hover {
    color: var(--primary-light);
    text-decoration: none;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.product-description {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.product-rating .star {
    color: rgba(168, 85, 247, 0.3);
    transition: color 0.2s;
}

.product-rating .star.filled {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--glass-border);
}

.product-price {
    font-weight: 800;
    font-size: 20px;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-price.free {
    background: linear-gradient(135deg, var(--success) 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.product-version {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--glass-bg);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
}

/* Product Type Row with Flag */
.product-type-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag-small {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    object-fit: cover;
}

/* Language Flag Display */
.flag-display {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-light) 100%);
}

.flag-large {
    width: 120px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.product-card:hover .flag-large {
    transform: scale(1.05);
}

/* Animation Preview */
.animation-preview {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
}

.animation-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    opacity: 1;
    transition: opacity 0.3s;
}

.animation-preview.playing .preview-overlay {
    opacity: 0;
    pointer-events: none;
}

.preview-play {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.preview-play:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Animation preview modal */
.animation-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.animation-modal.active {
    display: flex;
}

.animation-modal-content {
    width: 90%;
    max-width: 900px;
    height: 70vh;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.animation-modal-canvas {
    width: 100%;
    height: 100%;
}

.animation-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.animation-modal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 20px 20px;
    color: white;
}

.animation-modal-title {
    font-size: 24px;
    margin-bottom: 8px;
}

.animation-modal-desc {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* Footer - Glassmorphic */
.site-footer {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    margin-top: auto;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--neon-pink), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--primary-light);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* Auth Pages - Glassmorphic */
.auth-container {
    max-width: 420px;
    margin: 0 auto;
}

.auth-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--glass-shadow), 0 0 60px rgba(168, 85, 247, 0.1);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--neon-pink), var(--secondary));
}

.auth-title {
    text-align: center;
    margin-bottom: 36px;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    color: var(--text-muted);
}

/* Page Header */
.page-header {
    margin-bottom: 36px;
}

.page-title {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

/* Filters - Glass Style */
.filters-bar {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.search-box {
    flex: 1;
    min-width: 200px;
}

.filter-select {
    min-width: 160px;
}

/* Tables - Glass Style */
.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--glass-bg);
    border-radius: var(--radius);
    overflow: hidden;
}

.table th,
.table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.table th {
    font-weight: 600;
    color: var(--primary-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(168, 85, 247, 0.1);
}

.table tr {
    transition: all 0.2s;
}

.table tr:hover {
    background: rgba(168, 85, 247, 0.05);
}

/* Pagination - Neon Style */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 36px;
}

.pagination a,
.pagination span {
    padding: 10px 16px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    color: var(--text);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.pagination a:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: var(--primary);
    text-decoration: none;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.pagination .active {
    background: linear-gradient(135deg, var(--primary), var(--neon-purple));
    border-color: var(--primary);
    box-shadow: var(--glow-purple);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-item span {
        display: none;
    }

    .nav-item {
        padding: 10px 12px;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        flex-wrap: wrap;
        padding: 0 16px;
    }

    .header-left {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        padding-top: 15px;
        gap: 4px;
        border-top: 1px solid var(--glass-border);
        margin-top: 15px;
    }

    .header-actions {
        position: absolute;
        right: 16px;
        top: 16px;
    }

    .nav-item {
        padding: 8px 12px;
        font-size: 13px;
    }

    .nav-icon {
        width: 20px;
        height: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-actions .btn {
        padding: 8px 12px;
        font-size: 11px;
    }
}

/* Language Completeness */
.language-completeness {
    margin: 12px 0;
}

.completeness-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.completeness-badge.master {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.completeness-badge.complete {
    background: var(--success);
    color: white;
}

.completeness-bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.completeness-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--warning) 0%, var(--success) 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

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

.completeness-text.warning {
    color: var(--warning);
}

.missing-count {
    opacity: 0.7;
    font-size: 11px;
}

/* Theme Preview */
.theme-preview-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #0f0f23;
}

.theme-preview-frame {
    width: 100%;
    height: 100%;
    transform: scale(0.25);
    transform-origin: top left;
    width: 400%;
    height: 400%;
    pointer-events: none;
}

.theme-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(15, 23, 42, 0.8));
    pointer-events: none;
}

.theme-color-swatches {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 4px;
    z-index: 5;
}

.theme-color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.theme-preview-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s;
}

.product-card:hover .theme-preview-btn {
    opacity: 1;
}

.theme-preview-btn:hover {
    background: var(--primary);
}

/* Theme Preview Modal (Fullscreen) */
.theme-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    display: none;
    flex-direction: column;
}

.theme-modal.active {
    display: flex;
}

.theme-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.theme-modal-title {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-modal-colors {
    display: flex;
    gap: 6px;
}

.theme-modal-swatch {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid var(--border);
}

.theme-modal-close {
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    font-size: 24px;
    cursor: pointer;
    transition: background 0.2s;
}

.theme-modal-close:hover {
    background: var(--error);
    color: white;
    border-color: var(--error);
}

.theme-modal-body {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.theme-modal-frame {
    width: 100%;
    height: 100%;
    border: none;
}

/* Product page theme preview */
.product-theme-preview {
    position: relative;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #0f0f23;
}

.product-theme-frame {
    width: 100%;
    height: 100%;
    transform: scale(0.5);
    transform-origin: top left;
    width: 200%;
    height: 200%;
    pointer-events: none;
}

.product-theme-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-theme-info {
    background: rgba(0,0,0,0.6);
    padding: 8px 16px;
    border-radius: var(--radius);
    color: white;
}

/* ============================================
   Home Page Hero - Glassmorphic Space Neon
   ============================================ */

.home-hero {
    position: relative;
    padding: 80px 0;
    margin-top: -40px;
    margin-bottom: 40px;
    overflow: hidden;
    background: transparent;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    background:
        /* Central purple glow */
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(168, 85, 247, 0.2), transparent 70%),
        /* Purple nebula base */
        radial-gradient(ellipse 100% 100% at 20% 50%, rgba(139, 92, 246, 0.15), transparent 60%),
        /* Pink accent */
        radial-gradient(ellipse 80% 50% at 80% 30%, rgba(236, 72, 153, 0.12), transparent 60%),
        /* Cyan accent */
        radial-gradient(ellipse 60% 40% at 70% 70%, rgba(6, 182, 212, 0.1), transparent 60%),
        /* Bottom gradient fade */
        linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
    animation: homeHeroGlow 10s ease-in-out infinite alternate;
}

@keyframes homeHeroGlow {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--neon-pink), var(--neon-cyan), transparent);
    opacity: 0.5;
}


.home-hero .container {
    position: relative;
}

/* Bottom border glow line - at hero bottom edge */
.home-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--neon-pink), var(--neon-cyan), var(--primary), transparent);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5), 0 0 30px rgba(168, 85, 247, 0.3);
    z-index: 10;
}

.home-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.home-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary-light) 50%, var(--neon-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.home-hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin: 0 0 32px 0;
    line-height: 1.7;
}

.home-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Home Stats */
.home-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 32px 0;
    margin-bottom: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
}

.home-stat {
    text-align: center;
    padding: 12px 24px;
}

.home-stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-light), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Home Responsive */
@media (max-width: 768px) {
    .home-hero {
        padding: 50px 0;
    }

    .home-hero-title {
        font-size: 32px;
    }

    .home-hero-subtitle {
        font-size: 16px;
    }

    .home-stats {
        gap: 20px;
        padding: 24px 16px;
    }

    .home-stat-value {
        font-size: 28px;
    }
}

/* ============================================
   Premium Browse Page Styles - Neon Space
   ============================================ */

/* Hero Section - Glassmorphic with accent color */
.browse-hero {
    --accent-color: #c084fc;
    position: relative;
    padding: 60px 0;
    margin-top: -40px;
    margin-bottom: 40px;
    overflow: hidden;
    background: transparent;
}

.browse-hero-bg {
    position: absolute;
    inset: 0;
    background:
        /* Central accent glow */
        radial-gradient(ellipse 80% 60% at 50% 30%, color-mix(in srgb, var(--accent-color) 20%, transparent), transparent 70%),
        /* Purple nebula base */
        radial-gradient(ellipse 100% 100% at 20% 50%, rgba(139, 92, 246, 0.15), transparent 60%),
        /* Pink accent */
        radial-gradient(ellipse 80% 50% at 80% 30%, rgba(236, 72, 153, 0.12), transparent 60%),
        /* Bottom gradient fade */
        linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    from { opacity: 0.85; }
    to { opacity: 1; }
}

.browse-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), var(--neon-pink), var(--primary), transparent);
    opacity: 0.6;
}

/* Bottom border glow line - at hero bottom edge */
.browse-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), var(--neon-pink), var(--primary), transparent);
    box-shadow: 0 0 15px color-mix(in srgb, var(--accent-color) 50%, transparent), 0 0 30px color-mix(in srgb, var(--accent-color) 30%, transparent);
    z-index: 10;
}

.browse-hero .container {
    position: relative;
}

.browse-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 28px;
}

.browse-hero-icon {
    width: 72px;
    height: 72px;
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.browse-hero-icon svg {
    width: 36px;
    height: 36px;
    color: var(--accent-color);
    filter: drop-shadow(0 0 8px var(--accent-color));
    transition: all 0.3s;
}

.browse-hero-text {
    flex: 1;
}

.browse-hero-title {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.browse-hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

.browse-hero-stats {
    display: flex;
    gap: 20px;
}

.browse-stat {
    text-align: center;
    background: var(--glass-bg);
    border-radius: var(--radius);
    padding: 18px 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.browse-stat:hover {
    border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
    box-shadow: 0 0 25px color-mix(in srgb, var(--accent-color) 25%, transparent);
    transform: translateY(-2px);
}

.browse-stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--text), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.browse-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    display: block;
}

/* Premium Search & Filters - Neon */
.browse-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    flex-wrap: wrap;
    box-shadow: var(--glass-shadow);
}

.browse-search-wrapper {
    flex: 1;
    min-width: 280px;
}

.browse-search {
    position: relative;
}

.browse-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    pointer-events: none;
}

.browse-search-icon svg {
    width: 100%;
    height: 100%;
}

.browse-search-input {
    width: 100%;
    padding: 14px 44px 14px 52px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text);
    font-size: 14px;
    transition: all 0.3s;
}

.browse-search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15), 0 0 20px rgba(168, 85, 247, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.browse-search-input::placeholder {
    color: var(--text-muted);
}

.browse-search-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s;
}

.browse-search-clear:hover {
    background: var(--error);
    color: white;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.browse-filter-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.browse-filter {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 150px;
}

.browse-filter-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light);
}

.browse-filter-select {
    padding: 14px 40px 14px 16px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a855f7' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.browse-filter-select:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
}

.browse-filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15), 0 0 20px rgba(168, 85, 247, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .browse-hero {
        padding: 32px 0;
    }

    .browse-hero-content {
        flex-wrap: wrap;
    }

    .browse-hero-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .browse-hero-icon svg {
        width: 24px;
        height: 24px;
    }

    .browse-hero-title {
        font-size: 24px;
    }

    .browse-hero-subtitle {
        font-size: 14px;
    }

    .browse-hero-stats {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }

    .browse-filters {
        flex-direction: column;
    }

    .browse-search {
        min-width: 100%;
    }

    .browse-filter-group {
        width: 100%;
    }

    .browse-filter {
        flex: 1;
        min-width: calc(50% - 8px);
    }
}

/* ============================================
   Beta Disclaimer Banner - Neon Glass
   ============================================ */

.beta-disclaimer {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.beta-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f59e0b, #ea580c, transparent);
}

.beta-disclaimer-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.4);
}

.beta-disclaimer-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.beta-disclaimer-content {
    flex: 1;
}

.beta-disclaimer-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 6px;
}

.beta-disclaimer-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Beta Badge for product cards */
.beta-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
}

.beta-badge svg {
    width: 10px;
    height: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .beta-disclaimer {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .beta-disclaimer-icon {
        width: 48px;
        height: 48px;
    }

    .beta-disclaimer-icon svg {
        width: 26px;
        height: 26px;
    }
}
