/* ==========================================
   CSS SYSTEM DESIGN - LEAD WEBSITE
   Vanilla CSS with CSS variables for Light/Dark themes
========================================== */

/* Font & Global resets */
:root {
    /* Color Palette - Common */
    --primary-glow: rgba(111, 66, 251, 0.45);
    --primary: #6f42fb;
    --primary-hover: #5d2feb;
    --secondary-glow: rgba(255, 255, 255, 0.1);
    
    /* Dark Theme Variables (Default) */
    --body-bg: #090a0f;
    --card-bg: #111219;
    --card-border: #1e202f;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --navbar-bg: rgba(10, 11, 16, 0.85);
    --navbar-border: rgba(255, 255, 255, 0.05);
    --search-bg: #161824;
    --search-text: #f3f4f6;
    --btn-secondary-bg: rgba(255, 255, 255, 0.08);
    --btn-secondary-text: #ffffff;
    --btn-secondary-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.7);
    --shadow-primary: 0 0 25px rgba(111, 66, 251, 0.3);
    
    /* Stats Row Colors */
    --stats-bg: #111219;
    --stats-border: #1e202f;
    --stats-divider: #1e202f;
}

/* Light Theme Variables */
body.light-theme {
    --body-bg: #f5f6fa;
    --card-bg: #ffffff;
    --card-border: #eef0f6;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --navbar-bg: rgba(10, 11, 16, 0.95); /* Keep dark navbar as in the screenshot */
    --navbar-border: rgba(255, 255, 255, 0.1);
    --search-bg: #161824;
    --search-text: #ffffff;
    --btn-secondary-bg: #ffffff;
    --btn-secondary-text: #111827;
    --btn-secondary-border: #e5e7eb;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-primary: 0 0 25px rgba(111, 66, 251, 0.15);
    
    /* Stats Row Colors */
    --stats-bg: #ffffff;
    --stats-border: #eef0f6;
    --stats-divider: #eef0f6;
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--body-bg);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--body-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* ==========================================
   HEADER / NAVBAR
========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #030307 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.95);
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: #020205 !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.98);
}

.navbar.scrolled .navbar-container {
    padding: 12px 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-particles-canvas {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.logo-img {
    position: relative;
    z-index: 1;
    height: 24px !important; /* Slightly reduced */
    max-height: 24px !important;
    width: auto !important;
    transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-btn-icon {
    height: 15px !important; /* Slightly reduced */
    width: auto !important;
    object-fit: contain;
    vertical-align: middle;
    display: inline-block;
    margin-right: 2px;
}

.logo-wrapper:hover .logo-img {
    filter: drop-shadow(0 2px 10px rgba(168, 85, 247, 0.7));
    transform: translateY(-1px) scale(1.02);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85); /* Readable bright text in dark navbar */
    font-size: 1.02rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(167, 139, 250, 0.6);
    transform: translateY(-1px);
}

/* Dropdown */
.nav-item.dropdown {
    position: relative;
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #0d0e14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.88rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--primary);
    color: #ffffff;
}

/* Search Box */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--search-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    padding: 6px 14px 6px 36px;
    width: 220px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    width: 260px;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(111, 66, 251, 0.3);
}

.search-icon {
    position: absolute;
    left: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.search-box input {
    background: none;
    border: none;
    outline: none;
    color: var(--search-text);
    font-size: 0.85rem;
    width: 100%;
    font-family: inherit;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Search Dropdown Results */
.search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background-color: #0d0e14;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1100;
    display: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: background 0.2s;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: rgba(111, 66, 251, 0.2);
    color: #ffffff;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-area-btn {
    background: rgba(167, 139, 250, 0.08) !important;
    border: 1px solid rgba(167, 139, 250, 0.25) !important;
    color: #f3f4f6 !important;
    padding: 6px 14px !important;
    border-radius: 8px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    font-family: 'Outfit', sans-serif !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: inset 0 0 10px rgba(167, 139, 250, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-area-btn:hover {
    background: rgba(167, 139, 250, 0.15) !important;
    border-color: rgba(167, 139, 250, 0.5) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.25), inset 0 0 15px rgba(167, 139, 250, 0.1);
}

.lang-selector {
    display: flex;
    align-items: center;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.lang-btn:hover {
    opacity: 1;
}

.lang-btn img {
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.theme-toggle-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.theme-toggle-btn:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

.cart-btn-header {
    background: rgba(111, 66, 251, 0.15);
    border: 1px solid rgba(111, 66, 251, 0.3);
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cart-btn-header:hover {
    background-color: var(--primary);
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0a0b10;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

/* ==========================================
   MAIN LAYOUT & HERO SECTION
========================================== */
.main-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 40px 20px;
}

.hero-section {
    margin-bottom: 30px;
}

.hero-container {
    background-color: #07080e;
    border: 1px solid rgba(111, 66, 251, 0.15);
    border-radius: 24px;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-content {
    max-width: 62%;
    position: relative;
    z-index: 3;
    display: block;
}

.hero-slide {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide:not(.active) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

/* Custom brand colors for Slide 4 shortcuts */
.shortcut-whatsapp:hover {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}
.shortcut-whatsapp:hover svg {
    color: #ffffff !important;
}

.shortcut-discord:hover {
    background-color: #5865f2 !important;
    border-color: #5865f2 !important;
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4) !important;
}
.shortcut-discord:hover svg {
    color: #ffffff !important;
}

.shortcut-telegram:hover {
    background-color: #0088cc !important;
    border-color: #0088cc !important;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4) !important;
}
.shortcut-telegram:hover svg {
    color: #ffffff !important;
}

.shortcut-minecraft-world:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(111, 66, 251, 0.6) !important;
}

.shortcut-gta-world:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(89, 165, 44, 0.6) !important;
}

/* Atalhos + Botões de Ação ao Lado */
.hero-actions-container {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    width: 100%;
}

.shortcuts-section {
    flex: 1;
}

.main-actions-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 200px;
    flex-shrink: 0;
}

.btn-side {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    text-align: center;
}

.btn-side-primary {
    background: linear-gradient(135deg, #6f42fb 0%, #512da8 100%);
    color: #ffffff;
    border: 1px solid rgba(111, 66, 251, 0.4);
    box-shadow: 0 4px 15px rgba(111, 66, 251, 0.3);
}

.btn-side-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(111, 66, 251, 0.5);
}

.btn-side-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-side-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(111, 66, 251, 0.4);
    transform: translateY(-2px);
}

/* Slideshow de Imagens (Camadas de Fundo) */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* behind hero content */
    pointer-events: none;
}

/* Gradient overlay that fades the right-side graphics to the dark background on the left */
.hero-slideshow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #07080e 15%, rgba(7, 8, 14, 0.8) 35%, rgba(7, 8, 14, 0) 55%);
    z-index: 2;
}

.slideshow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.slideshow-img.active {
    opacity: 1;
    visibility: visible;
}

@keyframes floatIllustration {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.01);
    }
}

.pill-badge {
    align-self: flex-start;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 99px;
    padding: 8px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.star-icon {
    color: #ffc107 !important;
    fill: #ffc107 !important;
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.45));
}

.badge-minecraft {
    color: #76b852 !important;
    font-weight: 700;
}

.badge-fivem {
    color: #ff3333 !important;
    font-weight: 700;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #a78bfa 0%, #6f42fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.hero-subtitle .highlight {
    color: #ffffff;
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.btn {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(111, 66, 251, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 66, 251, 0.6);
}

.btn-secondary {
    background-color: var(--btn-secondary-bg);
    color: var(--btn-secondary-text);
    border: 1px solid var(--btn-secondary-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 66, 251, 0.4);
}

/* ==========================================
   FEATURES SECTION
========================================== */
.features-section {
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-primary);
    border-color: rgba(111, 66, 251, 0.3);
}

.feature-icon-wrapper {
    background: rgba(111, 66, 251, 0.1);
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   DYNAMIC SHOWCASE SECTION
========================================== */
.showcase-section {
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.filter-tab {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    padding: 8px 18px;
    border-radius: 99px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tab:hover, .filter-tab.active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(111, 66, 251, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.product-card {
    background-color: #0c0d18;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(111, 66, 251, 0.4);
    box-shadow: 0 15px 40px rgba(111, 66, 251, 0.25);
}

.product-banner-wrapper {
    width: 100%;
    height: 175px;
    position: relative;
    overflow: hidden;
    background-color: #121324;
}

.product-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-banner-img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 20px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.3px;
}

.product-card-desc {
    font-size: 0.88rem;
    color: #9ca3af;
    line-height: 1.45;
    margin: 0 0 18px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
}

/* Stats & Price Bar */
.product-stats-price-bar {
    background-color: #121424;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.product-stat-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-price-tag {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

/* Action Buttons Group */
.product-actions-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.product-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 14px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.btn-cart-action {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.btn-cart-action:hover {
    background-color: #6f42fb;
    border-color: #6f42fb;
    box-shadow: 0 4px 15px rgba(111, 66, 251, 0.4);
}

.btn-details-action {
    background-color: #ffffff;
    color: #0b0c16;
    border-radius: 14px;
}

.btn-details-action:hover {
    background-color: #f3f4f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

.add-to-cart-btn {
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
}

/* ==========================================
   STATS SECTION
========================================== */
.stats-section {
    margin-bottom: 20px;
}

.stats-container {
    background-color: var(--stats-bg);
    border: 1px solid var(--stats-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.stat-icon {
    background: rgba(111, 66, 251, 0.08);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--stats-divider);
}

/* ==========================================
   SHOPPING CART SIDEBAR
========================================== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: var(--card-bg);
    border-left: 1px solid var(--card-border);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.close-cart-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.close-cart-btn:hover {
    color: var(--text-primary);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cart Item Template */
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--card-border);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    margin-top: 4px;
}

.remove-item-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.remove-item-btn:hover {
    color: #ef4444;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
}

#cart-subtotal {
    color: var(--primary);
    font-size: 1.25rem;
}

.checkout-btn {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.checkout-btn:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 15px rgba(111, 66, 251, 0.4);
}

/* ==========================================
   MODAL DIALOGS
========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    width: 100%;
    max-width: 440px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}

.close-modal-btn:hover {
    color: var(--text-primary);
}

.modal-logo {
    justify-content: center;
    margin-bottom: 24px;
}

.modal-body {
    text-align: center;
}

.modal-body h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.modal-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.form-group input {
    width: 100%;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

body.light-theme .form-group input {
    background-color: #f9fafb;
}

.form-group input:focus {
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
}

/* Hero Service Shortcuts Buttons */
.hero-service-shortcuts {
    margin-top: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shortcuts-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.shortcut-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.shortcut-btn svg {
    color: var(--primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.shortcut-btn:hover {
    background: rgba(111, 66, 251, 0.12);
    border-color: rgba(111, 66, 251, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 66, 251, 0.25);
}

.shortcut-btn:hover svg {
    transform: scale(1.1) rotate(5deg);
    color: #a78bfa;
}

/* ==========================================
   HOME PAGE EXCLUSIVE STYLES
========================================== */
.categories-section {
    margin-bottom: 80px;
    padding-top: 20px;
}

.categories-container-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.category-card-home {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: background 0.3s;
}

.category-card-home:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--shadow-primary);
}

.category-card-home:nth-child(1):hover {
    border-color: rgba(167, 139, 250, 0.4);
}
.category-card-home:nth-child(1)::before {
    background: linear-gradient(90deg, #a78bfa, #6f42fb);
}

.category-card-home:nth-child(2):hover {
    border-color: rgba(59, 130, 246, 0.4);
}
.category-card-home:nth-child(2)::before {
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

.category-card-home:nth-child(3):hover {
    border-color: rgba(16, 185, 129, 0.4);
}
.category-card-home:nth-child(3)::before {
    background: linear-gradient(90deg, #34d399, #10b981);
}

.category-card-home:nth-child(4):hover {
    border-color: rgba(37, 211, 102, 0.4);
}
.category-card-home:nth-child(4)::before {
    background: linear-gradient(90deg, #25d366, #0088cc);
}

.category-header-home {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-icon-wrapper-home {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.category-icon-wrapper-home.purple-theme {
    background: linear-gradient(135deg, #a78bfa 0%, #6f42fb 100%);
    box-shadow: 0 4px 15px rgba(111, 66, 251, 0.25);
}

.category-icon-wrapper-home.blue-theme {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.category-icon-wrapper-home.green-theme {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.category-icon-wrapper-home.bot-theme {
    background: linear-gradient(135deg, #25d366 0%, #0088cc 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.category-badge-home {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-secondary);
    background-color: rgba(255, 255, 255, 0.04);
    padding: 6px 14px;
    border-radius: 99px;
    border: 1px solid var(--card-border);
    letter-spacing: 0.5px;
}

body.light-theme .category-badge-home {
    background-color: rgba(0, 0, 0, 0.03);
}

.category-body-home {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-title-home {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.category-description-home {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.category-footer-home {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

/* Orcamento Form Section */
.orcamento-section {
    margin-bottom: 80px;
}

.orcamento-container {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 45px;
    box-shadow: var(--shadow-sm);
}

.budget-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group select {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

body.light-theme .form-group select {
    background-color: #f9fafb;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.form-group select:focus {
    border-color: var(--primary);
}

.form-group textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
}

body.light-theme .form-group textarea {
    background-color: #f9fafb;
}

.form-group textarea:focus {
    border-color: var(--primary);
}

.btn-submit-orc {
    align-self: flex-start;
}

/* ==========================================
   RESPONSIVENESS (MEDIA QUERIES)
========================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-container-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-container {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        flex: 1 1 40%;
    }
    
    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        border-radius: 0;
        padding: 12px 20px;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1100;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #0c0d14;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px;
        gap: 24px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .search-box {
        display: none;
    }

    .hero-container {
        flex-direction: column-reverse;
        padding: 30px 20px;
        gap: 24px;
        height: auto;
        min-height: auto;
        text-align: center;
        background: radial-gradient(circle at center, rgba(111, 66, 251, 0.15) 0%, #07080e 100%), #07080e;
    }

    .hero-content {
        max-width: 100%;
        display: block;
    }

    .hero-slide {
        align-items: center;
        text-align: center;
    }

    .hero-actions-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .shortcuts-section {
        width: 100%;
    }

    .main-actions-side {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .btn-side {
        flex: 1;
        max-width: 240px;
    }

    .hero-slideshow {
        position: relative;
        right: auto;
        width: 100%;
        height: 220px;
        margin-bottom: 10px;
    }

    .hero-slideshow::after {
        display: none;
    }
    
    .slideshow-img {
        background-position: center center;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-layout {
        padding: 100px 12px 20px 12px;
    }

    .hero-container {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .main-actions-side {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 10px;
    }
    
    .btn-side {
        max-width: 100%;
    }

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

    .features-grid, .categories-container-home {
        grid-template-columns: 1fr;
    }

    .categories-container-home article:last-child {
        grid-column: span 1;
    }

    .stat-item {
        flex: 1 1 100%;
        justify-content: flex-start;
    }

    .orcamento-container {
        padding: 24px;
    }
}

/* ==========================================
   DISCORD BANNER SECTION (MINECRAFT PAGE)
========================================== */
.discord-banner-section {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

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

.discord-banner-card {
    background: linear-gradient(135deg, #4361ee 0%, #3b82f6 50%, #4895ef 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discord-banner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.discord-banner-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.discord-banner-content {
    flex: 1;
    max-width: 750px;
    z-index: 2;
}

.discord-banner-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
}

.discord-banner-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.4;
    font-weight: 400;
}

.discord-banner-desc strong {
    color: #ffffff;
    font-weight: 700;
}

.discord-banner-action {
    flex-shrink: 0;
    z-index: 2;
}

.discord-banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #ffffff !important;
    color: #4361ee !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
    padding: 12px 26px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    white-space: nowrap;
}

.discord-banner-btn svg {
    color: #4361ee !important;
    transition: transform 0.3s ease;
}

.discord-banner-btn:hover {
    transform: translateY(-3px) scale(1.04) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 255, 255, 0.5) !important;
    background-color: #ffffff !important;
}

.discord-banner-btn:hover svg {
    transform: scale(1.15) rotate(-5deg);
}

@media (max-width: 900px) {
    .discord-banner-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }
    
    .discord-banner-title {
        font-size: 1.75rem;
    }
    
    .discord-banner-desc {
        font-size: 0.98rem;
    }

    .discord-banner-action {
        width: 100%;
    }

    .discord-banner-btn {
        width: 100%;
    }
}

/* ==========================================
   SITE FOOTER (MODERN CARD STYLE)
========================================== */
.site-footer {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 40px;
}

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

.footer-card {
    background-color: #0c0d14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 40px 48px 28px 48px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr;
    gap: 28px;
    align-items: stretch;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.footer-logo-img {
    height: 38px;
    width: auto;
}

.footer-copyright {
    font-size: 0.9rem;
    font-weight: 600;
    color: #9ca3af;
}

.footer-slogan {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    max-width: 300px;
}

.footer-box-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-box-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #6f42fb;
    transform: translateX(4px);
}

.footer-social-desc {
    font-size: 0.88rem;
    color: #9ca3af;
    line-height: 1.5;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background-color: #6f42fb;
    border-color: #6f42fb;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(111, 66, 251, 0.4);
}

.footer-bottom-bar {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #6b7280;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-left {
    color: #6b7280;
}

.footer-bottom-right {
    color: #9ca3af;
    font-weight: 500;
}

.footer-bottom-right a {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom-right a:hover {
    text-decoration: underline;
}

@media (max-width: 960px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-card {
        padding: 28px 24px;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ==========================================
   MINECRAFT PAGE HERO BANNER
========================================== */
.minecraft-hero-container {
    background-color: #07080e;
    border: 1px solid rgba(111, 66, 251, 0.4);
    border-radius: 24px;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 50px !important;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 20px 50px rgba(111, 66, 251, 0.3);
}

.minecraft-hero-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/minecraft-hero-banner-v2.jpg?v=50');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 23px;
    z-index: 0;
}

.minecraft-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 8, 14, 0.9) 0%, rgba(7, 8, 14, 0.72) 45%, rgba(7, 8, 14, 0.25) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 23px;
}

@media (max-width: 900px) {
    .minecraft-hero-container {
        padding: 40px 24px !important;
        min-height: 420px;
    }
    
    .minecraft-hero-bg-overlay {
        background: linear-gradient(180deg, rgba(7, 8, 14, 0.92) 0%, rgba(7, 8, 14, 0.75) 100%);
    }
}

/* ==========================================
   TERMS OF USE MODAL (PREMIUM GLASSMORPHISM)
========================================== */
.terms-modal-content {
    max-width: 680px;
    width: 90%;
    padding: 36px 40px 32px 40px;
    background: #0f1017;
    border: 1px solid rgba(111, 66, 251, 0.25);
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(111, 66, 251, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.terms-modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.terms-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6f42fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(111, 66, 251, 0.4);
    flex-shrink: 0;
}

.terms-modal-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.terms-modal-body-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 24px 20px 24px 24px;
}

.terms-scroll-area {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 12px;
    color: #9ca3af;
    font-size: 0.92rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Custom Scrollbar for Terms Modal */
.terms-scroll-area::-webkit-scrollbar {
    width: 6px;
}

.terms-scroll-area::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.terms-scroll-area::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6f42fb 0%, #3b82f6 100%);
    border-radius: 10px;
}

.terms-intro {
    font-size: 1rem;
    color: #ffffff;
}

.terms-highlight {
    color: #a78bfa;
    font-weight: 600;
    background: rgba(111, 66, 251, 0.15);
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(111, 66, 251, 0.3);
}

.terms-section-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 6px;
    margin-bottom: 2px;
}

.terms-modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.terms-accept-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #6f42fb 0%, #3b82f6 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.98rem !important;
    padding: 14px 36px !important;
    border-radius: 50px !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(111, 66, 251, 0.4) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.terms-accept-btn:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 12px 35px rgba(111, 66, 251, 0.6) !important;
}

@media (max-width: 640px) {
    .terms-modal-content {
        padding: 28px 20px 24px 20px;
        border-radius: 20px;
    }
    
    .terms-scroll-area {
        max-height: 260px;
        font-size: 0.88rem;
    }
}

/* ==========================================
   PLUGINS DETAILS MODAL (FULLSCREEN UNIFIED CONTAINER - SCREENSHOTS 1 & 2)
========================================== */
.plugin-details-container {
    display: flex;
    max-width: 1060px;
    width: 95%;
    max-height: 88vh;
    background: #0d0e17;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 40px rgba(111, 66, 251, 0.12);
    margin: auto;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.pd-top-close-btn {
    top: 16px;
    right: 18px;
    z-index: 50;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .plugin-details-container {
        flex-direction: column;
        max-height: 92vh;
        overflow-y: auto;
    }
}

/* LEFT SIDEBAR (SCREENSHOT 1) */
.pd-sidebar {
    width: 290px;
    min-width: 290px;
    background: #10111d;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow-y: auto;
}

.pd-sidebar::-webkit-scrollbar {
    width: 4px;
}

.pd-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.pd-sidebar-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.pd-cover-img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.pd-header-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pd-sidebar-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #60a5fa;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.pd-sidebar-sales {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 700;
}

.pd-sidebar-desc {
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.45;
    margin: 0 0 16px 0;
}

.pd-sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 4px 0;
}

.pd-section-label {
    font-size: 0.68rem;
    font-weight: 800;
    color: #6b7280;
    letter-spacing: 1.2px;
}

.pd-authors-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-avatar-badge {
    font-size: 1.1rem;
}

.pd-authors-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dev-tag-darkblue {
    background: #1e3a8a;
    border: 1px solid #2563eb;
    color: #93c5fd;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Demonstração (Vídeos e Fotos no final) */
.pd-demo-media-section {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-demo-media-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.pd-demo-media-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.pd-demo-preview-img {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: cover;
    display: block;
}

.pd-demo-card-overlay {
    position: absolute;
    bottom: 12px;
    left: 14px;
}

.pd-demo-badge {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f8fafc;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

.v-check {
    background: #3b82f6;
    color: #ffffff;
    font-size: 0.6rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pd-sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    width: 100%;
    margin: 10px 0;
}

.pd-platforms-grid {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}

.tag-java { border: 1px solid #ef4444; background: rgba(239, 68, 68, 0.12); color: #ef4444; }
.tag-spigot { border: 1px solid #f59e0b; background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.tag-paper { border: 1px solid #3b82f6; background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.tag-folia { border: 1px solid #10b981; background: rgba(16, 185, 129, 0.12); color: #10b981; }
.tag-purpur { border: 1px solid #a855f7; background: rgba(168, 85, 247, 0.12); color: #a855f7; }
.tag-all-versions { border: 1px solid #10b981; background: rgba(16, 185, 129, 0.12); color: #10b981; }

.pd-sidebar-cta {
    margin-top: auto;
    padding-top: 12px;
}

.pd-buy-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #10b981;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 11px 0;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
    transition: all 0.2s ease;
}

.pd-buy-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}

.pd-reviews-btn {
    width: 100%;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pd-reviews-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    transform: translateY(-1px);
}

/* RIGHT MAIN CONTENT AREA (SCREENSHOTS 1 & 2) */
.pd-main-content {
    flex: 1;
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    box-sizing: border-box;
}

.pd-main-content::-webkit-scrollbar {
    width: 5px;
}

.pd-main-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

/* Top Pill Tabs Bar (Screenshot 1) */
.pd-top-nav-pills {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pd-pill-tab {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #d1d5db;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pd-pill-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.pd-pill-tab.active {
    background: #3b82f6;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

/* Last Modified Box */
.pd-last-updated-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #9ca3af;
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: 20px;
    align-self: flex-start;
}

/* Hero Banner Card (Screenshot 1) */
.pd-hero-banner-card {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    border: 1px solid rgba(99, 102, 241, 0.25);
    padding: 26px 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.pd-hero-bg-art {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(99, 102, 241, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.pd-hero-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-hero-tag {
    display: inline-block;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 14px;
}

.pd-hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.pd-hero-desc {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.55;
    margin: 0;
    max-width: 600px;
}

.pd-intro-paragraph {
    font-size: 0.86rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 6px 0;
}

/* Recursos Principais Grid (Screenshot 2) */
.pd-features-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.pd-sec-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.pd-sec-subtitle {
    font-size: 0.84rem;
    color: #9ca3af;
    margin: 0 0 10px 0;
}

.pd-features-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .pd-features-cards-grid {
        grid-template-columns: 1fr;
    }
}

.pd-feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.pd-feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.3);
}

.pd-feat-icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-blue { background: rgba(59, 130, 246, 0.12); }
.icon-purple { background: rgba(168, 85, 247, 0.12); }

.pd-feat-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.pd-feat-card-text {
    font-size: 0.78rem;
    color: #9ca3af;
    line-height: 1.45;
    margin: 0;
}

.pd-feat-card-text code {
    background: rgba(255, 255, 255, 0.08);
    color: #60a5fa;
    padding: 1px 5px;
    border-radius: 4px;
    font-family: monospace;
}

/* Funcionalidades List Section (Screenshot 2) */
.pd-func-list-section {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 18px 22px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-func-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #d1d5db;
    margin: 0;
}

.pd-func-bullet-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.82rem;
    color: #9ca3af;
    line-height: 1.5;
}

.pd-func-bullet-list li strong {
    color: #ffffff;
}

.p-details-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.p-details-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1d1e30 0%, #121322 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f42fb;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.p-details-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.p-details-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.3px;
}

.p-details-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #9ca3af;
    flex-wrap: wrap;
}

.p-details-dot {
    color: #4b5563;
}

.p-details-doc-link {
    color: #818cf8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 0.78rem;
    transition: color 0.2s ease;
}

.p-details-doc-link:hover {
    color: #a78bfa;
    text-decoration: underline;
}

/* Actions Bar */
.p-details-actions-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.p-details-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #10b981;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 9px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.25s ease;
}

.p-details-main-btn:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.45);
}

.p-details-sec-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 9px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.p-details-sec-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Tabs */
.p-details-nav-tabs {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
    overflow-x: auto;
}

.p-details-tab {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 4px 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.p-details-tab:hover {
    color: #ffffff;
}

.p-details-tab.active {
    color: #ffffff;
}

/* TASK 3: NO PURPLE UNDERLINE BAR UNDER TABS */
.p-details-tab.active::after {
    display: none !important;
    content: none !important;
}

/* TASK 5: COMPLETELY HIDE THE PURPLE SCROLLBAR / PURPLE MOTION BAR */
.p-details-scroll-body::-webkit-scrollbar,
.r-modal-feed::-webkit-scrollbar,
.terms-scroll-area::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
    display: none !important;
}

.p-details-scroll-body,
.r-modal-feed,
.terms-scroll-area {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

/* Scroll Body Container */
.p-details-scroll-body {
    max-height: 220px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Versions Box */
.p-details-versions-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.p-details-v-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #ffffff;
}

.p-details-v-list {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.v-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d1d5db;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.v-pill:hover {
    background: rgba(111, 66, 251, 0.15);
    border-color: rgba(111, 66, 251, 0.4);
    color: #ffffff;
}

/* Sections */
.p-details-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.p-details-sec-heading {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.p-details-features-list {
    margin: 0;
    padding-left: 16px;
    color: #9ca3af;
    font-size: 0.8rem;
    line-height: 1.5;
}

.p-details-demo-preview {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #0b0c16;
}

.p-details-demo-img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    display: block;
}

/* ==========================================
   TASK 3: ULTRA-MODERN REVIEWS MODALS
========================================== */
.p-details-stars-transparent-always {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
}

.p-details-stars-transparent-always svg {
    fill: transparent !important;
    stroke: #f59e0b;
    stroke-width: 1.8;
}

/* MODAL 1: REVIEWS LIST MODAL (MODERN GLASSMORPHISM) */
.reviews-list-modal-content {
    max-width: 500px;
    width: 90%;
    padding: 24px 26px;
    background: #0f101d;
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(99, 102, 241, 0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: auto;
}

.r-modal-summary-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.r-summary-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.r-summary-score {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.r-summary-stars-row {
    display: flex;
    gap: 4px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1rem;
}

.r-summary-stars-row span.filled-star {
    color: #f59e0b;
}

.r-summary-count-text {
    font-size: 0.78rem;
    color: #9ca3af;
}

.r-summary-rate-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: all 0.2s ease;
}

.r-summary-rate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.55);
}

.r-modal-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    width: 100%;
}

.r-modal-feed {
    min-height: 100px;
    max-height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-review-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pd-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pd-review-author {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.88rem;
}

.pd-review-date {
    font-size: 0.75rem;
    color: #6b7280;
}

.pd-review-stars {
    color: #f59e0b;
    font-size: 0.8rem;
}

.pd-review-text {
    font-size: 0.82rem;
    color: #9ca3af;
    line-height: 1.4;
    margin: 0;
}

.r-modal-footer {
    display: flex;
    align-items: center;
}

.r-modal-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 9px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.r-modal-back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* MODAL 2: WRITE REVIEW MODAL (INTERACTIVE STARS & ULTRA MODERN) */
.write-review-modal-content {
    max-width: 420px;
    width: 90%;
    padding: 26px 28px;
    background: #0f101d;
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.95), 0 0 40px rgba(99, 102, 241, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin: auto;
}

.w-review-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 18px rgba(217, 119, 6, 0.35);
    margin-bottom: 2px;
}

.w-review-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.w-review-subtitle {
    font-size: 0.82rem;
    color: #9ca3af;
    margin: 0 0 6px 0;
}

.w-review-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: left;
}

.w-review-label {
    font-size: 0.82rem;
    color: #d1d5db;
    font-weight: 600;
    align-self: center;
}

.w-star-picker {
    display: flex;
    gap: 8px;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

.w-star-picker span {
    transition: color 0.15s ease, transform 0.15s ease;
    user-select: none;
}

.w-star-picker span:hover {
    transform: scale(1.15);
}

.w-star-picker span.active-w-star {
    color: #6366f1;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6));
}

.w-textarea-wrapper {
    width: 100%;
    position: relative;
}

.w-textarea-wrapper textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 12px 24px 12px;
    color: #ffffff;
    font-size: 0.85rem;
    outline: none;
    resize: none;
    box-sizing: border-box;
    font-family: inherit;
}

.w-textarea-wrapper textarea:focus {
    border-color: #6366f1;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.3);
}

.w-char-counter {
    position: absolute;
    bottom: 6px;
    right: 10px;
    font-size: 0.7rem;
    color: #6b7280;
}

.w-review-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}

.w-btn-cancel {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.w-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.08);
}

.w-btn-submit {
    flex: 1.2;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 0;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: all 0.2s ease;
}

.w-btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.55);
}

/* ==========================================
   REVIEWS SLIDER SECTION ("O que nossos usuários pensam")
========================================== */
.reviews-slider-section {
    padding: 30px 0 20px 0;
    width: 100%;
}

.reviews-slider-card-wrapper {
    background: #0d0e19;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 22px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(111, 66, 251, 0.08);
    overflow: hidden;
    position: relative;
}

.reviews-slider-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.reviews-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
}

.reviews-slider-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.3px;
}

.reviews-scroll-container {
    width: 100%;
    overflow-x: auto;
    position: relative;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.reviews-scroll-container::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.reviews-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marqueeReviews 32s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Individual Review Card (Matching Screenshot) */
.review-user-card {
    width: 310px;
    min-width: 310px;
    background: #111222;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.review-user-card:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.35);
}

.ru-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ru-product-img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.ru-product-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    overflow: hidden;
}

.ru-product-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Outfit', sans-serif;
}

.ru-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #f59e0b;
}

.ru-rating-num {
    color: #9ca3af;
    font-weight: 700;
    font-size: 0.75rem;
    margin-left: 2px;
}

.ru-details-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.ru-details-btn:hover {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

/* Quote Box */
.ru-quote-box {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 12px 14px;
    min-height: 56px;
    display: flex;
    align-items: center;
}

.ru-quote-text {
    font-size: 0.8rem;
    color: #d1d5db;
    line-height: 1.45;
    margin: 0;
}

/* Author Footer */
.ru-author-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.ru-author-avatar-wrapper {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.ru-v-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #10b981;
    color: #ffffff;
    font-size: 0.5rem;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.ru-author-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.ru-author-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
}

.ru-author-date {
    font-size: 0.7rem;
    color: #6b7280;
}

/* ==========================================
   PAYMENT APPROVAL MODAL STYLES
========================================== */
.payment-modal-content {
    max-width: 440px;
    width: 92%;
    background: #0d0e19;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 24px 26px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.payment-modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.payment-icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.payment-modal-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.payment-modal-subtitle {
    font-size: 0.82rem;
    color: #9ca3af;
    line-height: 1.4;
}

.payment-body-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.payment-order-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pm-summary-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: #6b7280;
    letter-spacing: 1px;
}

.pm-items-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.84rem;
    color: #e2e8f0;
}

.pm-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 8px;
    margin-top: 4px;
    font-size: 0.95rem;
    color: #ffffff;
}

.payment-pix-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
}

.pix-qr-dummy {
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
}

.pix-code-text {
    font-size: 0.68rem;
    color: #9ca3af;
    font-family: monospace;
    word-break: break-all;
    text-align: center;
}

.payment-status-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 700;
}

.status-pending {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.status-approved {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: blinkStatus 1.2s infinite ease-in-out;
}

@keyframes blinkStatus {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ==========================================
   TASK 1: SHOWCASE GLOWING SEARCH BAR
========================================== */
.showcase-search-wrapper {
    margin: 16px auto 24px auto;
    max-width: 580px;
    width: 100%;
    position: relative;
}

.showcase-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #0b0c16;
    border: 1px solid rgba(111, 66, 251, 0.35);
    border-radius: 18px;
    padding: 2px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(111, 66, 251, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-search-box:focus-within {
    border-color: #7c3aed;
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4), 0 0 30px rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
}

.showcase-search-icon {
    color: #a78bfa;
    flex-shrink: 0;
    margin-right: 12px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.showcase-search-box:focus-within .showcase-search-icon {
    transform: scale(1.15) rotate(-5deg);
    color: #c4b5fd;
}

.showcase-search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 0.95rem;
    padding: 14px 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.showcase-search-input::placeholder {
    color: #6b7280;
    font-size: 0.9rem;
}

/* ==========================================
   TASK 3: GREEN LEADLICENÇA BUTTON
========================================== */
.btn-lead-licenca-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    border: 1px solid rgba(16, 185, 129, 0.5) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    padding: 12px 24px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4) !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}

.btn-lead-licenca-green:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.6) !important;
}

/* ==========================================
   INTERACTIVE HOLOGRAPHIC EMPTY CART ANIMATION (GSAP 60FPS)
========================================== */
.empty-cart-holo-scene {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 14px 16px 14px;
    width: 100%;
    overflow: hidden;
    perspective: 1000px;
    text-align: center;
}

/* Ambient Particles */
.holo-ambient-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(168, 85, 247, 0.4), rgba(0,0,0,0)),
        radial-gradient(2px 2px at 80px 120px, rgba(192, 132, 252, 0.5), rgba(0,0,0,0)),
        radial-gradient(3px 3px at 220px 50px, rgba(111, 66, 251, 0.6), rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 180px, rgba(233, 213, 255, 0.4), rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 250px 250px;
    animation: particleFloat 12s linear infinite;
    opacity: 0.7;
}

@keyframes particleFloat {
    0% { background-position: 0 0; }
    100% { background-position: 50px -250px; }
}

/* Voxel Stage & Character */
.voxel-character-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    z-index: 2;
    width: 100%;
    height: 240px; /* Gives room for character and panel */
}

.voxel-character-svg {
    display: block;
    width: 250px; /* ~70% visually */
    height: 250px;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
}

/* Phone Hologram Emitter Beam */
.phone-holo-beam {
    position: absolute;
    top: 50%; /* Adjusted to center of model-viewer */
    left: 40%; 
    transform: translate(-50%, -100%) scaleY(0);
    transform-origin: bottom center;
    width: 140px;
    height: 120px;
    background: linear-gradient(to top, rgba(168, 85, 247, 0.5) 0%, rgba(111, 66, 251, 0.15) 70%, transparent 100%);
    clip-path: polygon(45% 100%, 55% 100%, 100% 0%, 0% 0%);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
}

/* Holographic Glassmorphism Store Panel */
.holo-store-panel {
    position: absolute;
    top: -20px;
    left: 45%; 
    width: 220px; 
    background: rgba(17, 18, 28, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(168, 85, 247, 0.5);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 
        0 12px 35px rgba(111, 66, 251, 0.4),
        inset 0 0 20px rgba(168, 85, 247, 0.15);
    z-index: 4;
    transform-origin: bottom left;
    opacity: 0;
    transform: scale(0) translateY(50px);
}

.holo-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.holo-store-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #c084fc;
    text-transform: uppercase;
}

.holo-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #25d366;
    box-shadow: 0 0 8px #25d366;
}

/* Hologram Cards Grid */
.holo-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.holo-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 8px 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.holo-card-icon {
    font-size: 1rem;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(168, 85, 247, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.holo-card-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.holo-card-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
}

.holo-card-price {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.holo-btn-mock {
    background: rgba(168, 85, 247, 0.25);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

/* Flying Ghost Card */
.flying-plugin-ghost {
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #a855f7 0%, #6f42fb 100%);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 99px;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.9);
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    white-space: nowrap;
}

/* Toast Confirmation */
.holo-toast-confirmation {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.9);
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #34d399;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    opacity: 0;
    z-index: 50;
    pointer-events: none;
    white-space: nowrap;
}

.toast-check {
    font-weight: 900;
}

/* Empty Cart Holo Typography */
.empty-cart-holo-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.4px;
    font-family: 'Outfit', sans-serif;
}

.empty-cart-holo-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    max-width: 260px;
    margin: 0 auto;
    font-family: 'Outfit', sans-serif;
}


