/* CSS Variables for Theming */
:root {
    /* Dark Theme (Default) */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-tertiary: #666666;
    --accent-primary: #667eea;
    --accent-secondary: #764ba2;
    --border-color: #333333;
    --card-bg: #1a1a1a;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-primary: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-secondary: 0 4px 20px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] {
    /* Light Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-tertiary: #718096;
    --accent-primary: #667eea;
    --accent-secondary: #764ba2;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-primary: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-secondary: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 160px;
}

#hero-canvas {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: 1;
    pointer-events: none;
    filter: blur(60px);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.3) 0%, rgba(26, 26, 26, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

[data-theme="light"] .hero-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(248, 250, 252, 0.2) 100%);
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Updated Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-secondary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Dashboard Mockup */
.dashboard-mockup {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.mockup-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 30px 30px 0 0;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.mockup-header {
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.control-dot:hover {
    transform: scale(1.1);
}

.control-dot.red {
    background: #ff5f56;
}

.control-dot.yellow {
    background: #ffbd2e;
}

.control-dot.green {
    background: #27ca3f;
}

.mockup-url {
    flex: 1;
    text-align: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-family: 'Monaco', 'Courier New', monospace;
}

.mockup-content {
    height: 550px;
    overflow: hidden;
}

.dashboard-nav {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    position: relative;
}

.brand-logo::after {
    content: 'R';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.nav-brand span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.nav-items {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item.active {
    color: var(--accent-primary);
}

.nav-item:hover {
    color: var(--text-primary);
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
}

.user-avatar::after {
    content: 'S';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.dashboard-main {
    padding: 2rem 1.5rem 1rem;
    background: var(--bg-primary);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.header-title h2 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.header-title p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.header-date span {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    background: var(--bg-secondary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.stat-info h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.stat-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.stat-change.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.dashboard-charts {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.chart-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.chart-period {
    display: flex;
    gap: 0.5rem;
}

.period {
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.period.active {
    background: var(--accent-primary);
    color: white;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 120px;
    margin-bottom: 0.5rem;
}

.bar {
    flex: 1;
    background: var(--bg-secondary);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
}

.bar:hover {
    background: var(--accent-primary);
    transform: scaleY(1.05);
}

.bar.active {
    background: var(--gradient-primary);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.insight-badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.insights-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.insight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 3px solid var(--accent-primary);
    transition: all 0.3s ease;
}

.insight-item:hover {
    background: var(--bg-tertiary);
    transform: translateX(4px);
}

.insight-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.insight-text p {
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.insight-text span {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* Real Dashboard Styles */
.real-dashboard {
    background: var(--bg-primary);
    width: 100%;
    height: 100%;
    font-family: 'Rubik', sans-serif;
}

.dashboard-top-header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.breadcrumb-icon {
    color: var(--text-secondary);
}

.dashboard-layout {
    display: flex;
    /*height: calc(100% - 60px);*/
    height: 100%;
}

.dashboard-sidebar {
    width: 240px;
    background: var(--bg-primary);
    border-right: 1px solid var(--border-color);
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
}

.workspace-info {
    padding: 0 1rem 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.workspace-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.workspace-icon {
    width: 32px;
    height: 32px;
    background: var(--bg-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.workspace-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.workspace-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.75rem;
}

.workspace-role {
    background: var(--accent-primary);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 500;
}

.nav-menu {
    padding: 0 1rem;
    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    margin-bottom: 0.125rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-item:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.nav-item.active {
    background: var(--bg-secondary);
    color: var(--accent-primary);
    font-weight: 600;
}

.nav-item svg {
    flex-shrink: 0;
}

.user-profile {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar-circle {
    width: 36px;
    height: 36px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.user-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.75rem;
}

.user-email {
    color: var(--text-secondary);
    font-size: 0.625rem;
}

.dashboard-main-content {
    flex: 1;
    padding: 1.5rem;
    background: var(--bg-secondary);
    /*overflow-y: auto;*/
    overflow-y: hidden;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.page-title h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.page-title p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.refresh-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.refresh-btn:hover {
    background: var(--text-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stat-title {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-icon {
    color: var(--text-tertiary);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.stat-change {
    font-size: 0.75rem;
    font-weight: 500;
}

.stat-change.positive {
    color: #10b981;
}

.stat-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
}

.charts-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.chart-card,
.ai-suggestions-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
}

.chart-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.chart-icon {
    color: var(--text-tertiary);
}

.pie-chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.pie-chart {
    position: relative;
    width: 120px;
    height: 120px;
}

.pie-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.pie-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
}

.line-chart-container {
    height: 200px;
}

.chart-grid {
    display: flex;
    height: 150px;
    margin-bottom: 1rem;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    padding-right: 0.5rem;
}

.chart-area {
    flex: 1;
    position: relative;
}

.line-chart {
    width: 100%;
    height: 100%;
}

.chart-x-axis {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.ai-suggestions-card {
    grid-row: span 2;
}

.ai-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.ai-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.ai-actions {
    display: flex;
    gap: 0.5rem;
}

.ai-actions svg {
    color: var(--text-tertiary);
    cursor: pointer;
}

.ai-actions svg:hover {
    color: var(--text-secondary);
}

.ai-suggestions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.suggestion-item {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.suggestion-item:hover {
    border-color: var(--text-tertiary);
}

.suggestion-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.suggestion-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.75rem;
    flex: 1;
}

.suggestion-priority {
    background: #fecaca;
    color: #dc2626;
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
    font-size: 0.625rem;
    font-weight: 500;
}

.suggestion-priority.high {
    background: #fecaca;
    color: #dc2626;
}

.suggestion-icon {
    font-size: 1rem;
}

.suggestion-description {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0.375rem;
}

.suggestion-benefit {
    font-size: 0.75rem;
    color: var(--accent-primary);
    font-weight: 500;
}

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

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

@keyframes float {

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

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

/* Legacy styles for backwards compatibility */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .glass-morphism {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.marketplace-logo {
    transition: transform 0.3s ease;
}

.marketplace-logo:hover {
    transform: translateY(-4px);
}

.feature-card {
    transition: all 0.3s ease;
}

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

.screenshot-placeholder {
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
    background-size: 40px 40px;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, .2) 35px, rgba(255, 255, 255, .2) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(0, 0, 0, .05) 35px, rgba(0, 0, 0, .05) 70px);
}

.dark .screenshot-placeholder {
    background: linear-gradient(45deg, #374151, #4b5563);
    background-size: 40px 40px;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, .05) 35px, rgba(255, 255, 255, .05) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(0, 0, 0, .1) 35px, rgba(0, 0, 0, .1) 70px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .dashboard-mockup {
        transform: perspective(1000px) rotateX(2deg);
        margin: 0 1rem;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .dashboard-charts {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .nav-items {
        display: none;
    }

    .mockup-content {
        height: 400px;
    }

    .dashboard-main {
        padding: 1.5rem 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

/* Form styles */
.form-success {
    background: #d1fae5;
    color: #047857;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.form-error {
    background: #fee2e2;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Coming Soon Badge Styles */
.coming-soon-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    z-index: 10;
    transform: scale(0.9);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(10px);
}

/* Hover effect for the badge */
.marketplace-logo:hover .coming-soon-badge {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.4);
}

/* Dark mode support */
.dark .coming-soon-badge {
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.dark .marketplace-logo:hover .coming-soon-badge {
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
}

/* Animation for badge appearance */
@keyframes badge-appear {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-12deg);
    }
    to {
        opacity: 1;
        transform: scale(0.9) rotate(0deg);
    }
}

.coming-soon-badge {
    animation: badge-appear 0.6s ease-out 0.3s both;
}

/* Grayscale effect for coming soon marketplaces */
.marketplace-logo.relative .w-16.h-16 {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.marketplace-logo.relative:hover .w-16.h-16 {
    filter: grayscale(50%);
    opacity: 0.9;
}

.marketplace-logo.relative span {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.marketplace-logo.relative:hover span {
    opacity: 0.9;
}

/* Responsive adjustments for badges */
@media (max-width: 640px) {
    .coming-soon-badge {
        font-size: 0.6rem;
        padding: 3px 6px;
        top: 6px;
        right: 6px;
    }
}