/* ==========================================================================
   Cantarokê Online - Estilos do Portal Principal (Home)
   Design System: Dark Mode, Glassmorphism, Neon Highlights
   ========================================================================== */

:root {
    --bg-dark: #0a0e17;
    --bg-card: rgba(18, 24, 38, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(236, 72, 153, 0.3);
    
    --primary: #8b5cf6;
    --primary-hover: #7c3aed;
    --secondary: #ec4899;
    --secondary-hover: #db2777;
    
    --gradient-brand: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --gradient-btn: linear-gradient(90deg, #ec4899 0%, #f43f5e 100%);
    --gradient-btn-hover: linear-gradient(90deg, #db2777 0%, #e11d48 100%);
    
    --text-light: #ffffff;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --container-max: 1240px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

/* Background Ambient Glow */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   1. NAVBAR / HEADER
   ========================================================================== */

.portal-navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 1000;
    transition: var(--transition);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    gap: 1.5rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-light);
    white-space: nowrap;
}

.logo .highlight {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Nav Links */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
}

.nav-link.active::after,
.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--secondary);
}

/* Nav Right (Search + Auth) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-search-btn {
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-search-btn:hover {
    color: var(--text-light);
    background: var(--bg-glass);
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.4rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(168, 85, 247, 0.6);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-login:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.5rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    background: var(--gradient-btn);
    border: none;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.35);
    transition: var(--transition);
}

.btn-register:hover {
    background: var(--gradient-btn-hover);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
    transform: translateY(-1px);
}

/* Menu Toggle Mobile */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   2. HERO BANNER
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: #0d111d url('../../imagens/banner_hero.jpg') no-repeat center right;
    background-size: cover;
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
}

/* Left gradient overlay for crisp text readability */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(10, 14, 23, 0.96) 0%, 
        rgba(10, 14, 23, 0.85) 45%, 
        rgba(10, 14, 23, 0.3) 75%, 
        rgba(10, 14, 23, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 4rem 0;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 520px;
}

/* ==========================================================================
   Home Page - Layout Limpo (Menu + Banner + Rodapé Compacto)
   ========================================================================== */
body.home-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

body.home-page .hero-section {
    flex: 1;
    min-height: 480px;
    display: flex;
    align-items: center;
    border-bottom: none;
    background-position: center right;
}

body.home-page .portal-footer {
    margin-top: auto;
}

/* Hero CTA Buttons */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    background: var(--gradient-btn);
    border-radius: var(--radius-md);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
    transition: var(--transition);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.6);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.8rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ==========================================================================
   3. SEÇÃO DA LOJA (Ecwid Embed Container)
   ========================================================================== */

.section-padding {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    background: rgba(236, 72, 153, 0.12);
    border: 1px solid rgba(236, 72, 153, 0.3);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.store-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Ecwid Store Dark Mode & High Contrast Overrides
   ========================================================================== */
.ecwid-store-wrapper {
    min-height: 450px;
    width: 100%;
}

/* Cor geral do container da loja */
#my-store-72999522,
.ecwid-store-wrapper,
.ec-size .ec-store,
.ecwid,
.ecwid-productBrowser {
    color: #f1f5f9 !important;
}

/* Forçar links a terem cores claras e vibrantes (eliminando qualquer azul escuro) */
#my-store-72999522 a,
.ec-size .ec-store a,
.ec-size .ec-store .ec-link,
.ec-size .ec-store a.ec-link,
.ec-size .ec-store a:link,
.ec-size .ec-store a:visited,
.ec-size .ec-store .grid-category__title-inner,
.ec-size .ec-store .grid-product__title-inner {
    color: #38bdf8 !important; /* Azul celeste claro de altíssima legibilidade */
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

#my-store-72999522 a:hover,
.ec-size .ec-store a:hover,
.ec-size .ec-store .ec-link:hover,
.ec-size .ec-store a.ec-link:hover,
.ec-size .ec-store .grid-category__title-inner:hover,
.ec-size .ec-store .grid-product__title-inner:hover {
    color: #ec4899 !important; /* Rosa neon ao passar o mouse */
    text-decoration: underline !important;
}

/* Títulos de Categorias e Produtos (Branco de alto contraste) */
#my-store-72999522 .grid-category__title,
#my-store-72999522 .grid-category__title-inner,
#my-store-72999522 .grid-product__title,
#my-store-72999522 .grid-product__title-inner,
#my-store-72999522 .product-details__product-title,
.ec-size .ec-store .grid-category__title,
.ec-size .ec-store .grid-category__title-inner,
.ec-size .ec-store .grid-product__title,
.ec-size .ec-store .grid-product__title-inner,
.ec-size .ec-store .product-details__product-title,
.ec-size .ec-store h1,
.ec-size .ec-store h2,
.ec-size .ec-store h3,
.ec-size .ec-store h4,
.ec-size .ec-store h5,
.ec-size .ec-store h6,
.ec-size .ec-store .ec-header-h1,
.ec-size .ec-store .ec-header-h2,
.ec-size .ec-store .ec-header-h3 {
    color: #ffffff !important;
    font-weight: 700 !important;
}

/* Preços (Verde Neon de alto contraste) */
#my-store-72999522 .grid-product__price,
#my-store-72999522 .grid-product__price-value,
#my-store-72999522 .details-product-price__value,
#my-store-72999522 .ec-price-item,
.ec-size .ec-store .grid-product__price,
.ec-size .ec-store .grid-product__price-value,
.ec-size .ec-store .details-product-price__value,
.ec-size .ec-store .ec-price-item {
    color: #4ade80 !important;
    font-weight: 800 !important;
}

/* Breadcrumbs (Caminho de navegação das categorias) */
#my-store-72999522 .breadcrumbs,
#my-store-72999522 .breadcrumbs__link,
#my-store-72999522 .breadcrumbs__title,
#my-store-72999522 .breadcrumbs__delimiter,
.ec-size .ec-store .breadcrumbs,
.ec-size .ec-store .breadcrumbs__link,
.ec-size .ec-store .breadcrumbs__title,
.ec-size .ec-store .breadcrumbs__delimiter,
.ec-size .ec-store .ec-breadcrumbs__item,
.ec-size .ec-store .ec-breadcrumbs__link {
    color: #cbd5e1 !important;
}

#my-store-72999522 .breadcrumbs__link:hover,
.ec-size .ec-store .breadcrumbs__link:hover,
.ec-size .ec-store .ec-breadcrumbs__link:hover {
    color: #38bdf8 !important;
}

/* Textos gerais, parágrafos, labels e descrições de produtos */
#my-store-72999522 p,
#my-store-72999522 span,
#my-store-72999522 label,
#my-store-72999522 div,
.ec-size .ec-store p,
.ec-size .ec-store span,
.ec-size .ec-store label,
.ec-size .ec-store .product-details__product-description,
.ec-size .ec-store .product-details__product-description *,
.ec-size .ec-store .ec-text-muted,
.ec-size .ec-store .form-control__label,
.ec-size .ec-store .form-control__text {
    color: #cbd5e1 !important;
}

/* Formulários, Seletores de Ordenação e Inputs */
#my-store-72999522 select,
#my-store-72999522 input,
.ec-size .ec-store select,
.ec-size .ec-store input,
.ec-size .ec-store .form-control__select,
.ec-size .ec-store .form-control__text {
    background-color: #1e293b !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
}

.ec-size .ec-store .form-control__select option {
    background-color: #0f172a !important;
    color: #ffffff !important;
}

/* Botões da Loja (Comprar, Adicionar ao Carrinho, Continuar) */
#my-store-72999522 .form-control__button,
.ec-size .ec-store .form-control__button,
.ec-size .ec-store .ecwid-btn,
.ec-size .ec-store .form-control__button--primary {
    background: linear-gradient(90deg, #ec4899 0%, #8b5cf6 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3) !important;
    transition: all 0.2s ease !important;
}

#my-store-72999522 .form-control__button:hover,
.ec-size .ec-store .form-control__button:hover,
.ec-size .ec-store .ecwid-btn:hover,
.ec-size .ec-store .form-control__button--primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5) !important;
    filter: brightness(1.1) !important;
}

/* Paginação */
#my-store-72999522 .ec-pager__link,
#my-store-72999522 .ec-pager__item,
.ec-size .ec-store .ec-pager__link,
.ec-size .ec-store .ec-pager__item {
    color: #f1f5f9 !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

#my-store-72999522 .ec-pager__link:hover,
.ec-size .ec-store .ec-pager__link:hover,
.ec-size .ec-store .ec-pager__item--active .ec-pager__link {
    color: #ffffff !important;
    background: #ec4899 !important;
    border-color: #ec4899 !important;
}

/* Cards de Produtos / Categorias - Fundo sutil */
.ec-size .ec-store .grid-product__wrap,
.ec-size .ec-store .grid-category__wrap {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 12px !important;
    padding: 10px !important;
    transition: all 0.2s ease !important;
}

.ec-size .ec-store .grid-product__wrap:hover,
.ec-size .ec-store .grid-category__wrap:hover {
    border-color: rgba(236, 72, 153, 0.4) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
}

/* Carrinho / Sacola de compras / Resumo */
.ec-size .ec-store .ec-cart-item__title,
.ec-size .ec-store .ec-cart-item__price,
.ec-size .ec-store .ec-cart-summary__total,
.ec-size .ec-store .ec-cart-summary__price {
    color: #ffffff !important;
}

/* ==========================================================================
   4. RECURSOS / SOBRE (Highlights)
   ========================================================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

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

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-light);
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   5. FOOTER
   ========================================================================== */

.portal-footer {
    background: #070a10;
    border-top: 1px solid var(--border-glass);
    padding: 2.5rem 0 1.5rem 0;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 0;
    font-size: 0.92rem;
    max-width: 480px;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-glass);
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 23, 0.97);
        flex-direction: column;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-glass);
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-section {
        background-position: center;
        min-height: 480px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        justify-content: center;
        width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================================================
   6. PÁGINA DE LISTAGEM (IFRAME DIAMANTE EMBED)
   ========================================================================== */
.listagem-page-wrapper {
    width: 100%;
    min-height: calc(100vh - 75px);
    background: #000000;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.diamante-iframe {
    width: 100%;
    height: calc(100vh - 75px);
    min-height: 850px;
    border: none;
    display: block;
    background: #000000;
}

/* ==========================================================================
   7. PÁGINAS INSTITUCIONAIS (SOBRE & DOWNLOAD)
   ========================================================================== */
.about-hero, .download-hero {
    padding: 4rem 0 2rem 0;
    text-align: center;
}

.about-hero-title, .download-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: var(--text-light);
}

.about-hero-desc, .download-hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.pillar-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.pillar-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Central de Downloads */
.download-notice-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2rem;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem auto;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.download-notice-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-brand);
}

.download-notice-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #c084fc;
}

.download-notice-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.download-notice-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.download-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.download-preview-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.download-preview-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.status-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    margin-top: 1.5rem;
    align-self: flex-start;
}

.status-badge.coming-soon {
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.status-badge.active-link {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    text-decoration: none;
    transition: var(--transition);
}

.status-badge.active-link:hover {
    background: rgba(56, 189, 248, 0.3);
}
