/* ============================================================================
   STYLE.CSS - Premium Dark Neon Theme
   ============================================================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700;800;900&family=Fira+Code:wght@400;500;600&display=swap');

/* Variables */
:root {
    --bg-base: #08080a;
    --bg-surface: rgba(18, 18, 22, 0.8);
    --bg-surface-hover: rgba(24, 24, 28, 0.9);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(56, 189, 248, 0.3);
    
    --c-violet: #38bdf8;
    --c-rose: #0284c7;
    --c-cyan: #0ea5e9;
    --c-emerald: #10b981;
    
    --text-main: #f4f4f5;
    --text-muted: #94a3b8;
    
    --primary-gradient: linear-gradient(135deg, #ffffff, #38bdf8, #0284c7);
    --secondary-gradient: linear-gradient(135deg, #38bdf8, #0284c7);
    --btn-gradient: linear-gradient(135deg, #ffffff, #bae6fd);
    
    --glow-primary: rgba(56, 189, 248, 0.15);
    --glow-rose: rgba(2, 132, 199, 0.1);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 40%);
    background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

a {
    color: var(--c-violet);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--c-rose);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glowing Mesh Background Canvas Effects */
.bg-effects {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    mix-blend-mode: screen;
    animation: float 25s infinite alternate ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    top: -200px;
    left: -150px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -40px) scale(1.1); }
    100% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Header & Navbar */
.header {
    background: rgba(3, 0, 20, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
}

.logo span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Cards & Surfaces */
.card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 40px rgba(56, 189, 248, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

.card:hover {
    border-color: var(--border-hover);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(56, 189, 248, 0.15),
        inset 0 0 40px rgba(56, 189, 248, 0.05);
    background: var(--bg-surface-hover);
    transform: translateY(-4px);
}

/* Form Controls */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #ffffff;
    outline: none;
    transition: var(--transition);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-control:focus {
    border-color: var(--c-rose);
    background: rgba(0, 0, 0, 0.55);
    box-shadow: 
        0 0 15px rgba(236, 72, 153, 0.25),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-control::placeholder {
    color: #5d5673;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--c-violet);
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid transparent;
    outline: none;
    transition: var(--transition);
    user-select: none;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--btn-gradient);
    color: #09090b;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.06);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 30px rgba(255, 255, 255, 0.12),
        0 0 15px rgba(255, 255, 255, 0.08);
    filter: brightness(0.92);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f4f4f5;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--border-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.05);
}

.btn-danger {
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #fca5a5;
}

.btn-danger:hover {
    background: rgba(220, 38, 38, 0.3);
    border-color: rgba(220, 38, 38, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
}

/* Home / Shop Styles */
.shop-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(135deg, rgba(18, 18, 22, 0.5) 0%, rgba(12, 12, 16, 0.7) 100%);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.55),
        inset 0 0 40px rgba(255, 255, 255, 0.02);
    margin-bottom: 45px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-glow-back {
    position: absolute;
    top: -30%;
    left: 25%;
    width: 50%;
    height: 160%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(236, 72, 153, 0.05) 50%, transparent 100%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    mask-image: radial-gradient(ellipse at center, black, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 75%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: var(--c-violet);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.05);
}

.shop-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    text-shadow: 0 0 40px rgba(56, 189, 248, 0.2);
}

.shop-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-action-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-action-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.hero-action-tags span:hover {
    color: #ffffff;
    border-color: rgba(56, 189, 248, 0.4);
    background: rgba(56, 189, 248, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.1);
}

/* Info Cards (Contact Info) */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 30px;
    background: rgba(12, 6, 36, 0.4);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.info-icon {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon.zalo { color: var(--c-cyan); }
.info-icon.discord { color: #5865f2; }

.info-details h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.info-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Tabs System */
.tab-container {
    margin-bottom: 40px;
}

.tab-nav {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.35);
    padding: 6px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-color);
    margin-bottom: 36px;
}

.tab-btn {
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 28px;
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.tab-btn:hover {
    color: #ffffff;
}

/*.tab-btn.active*/
.tab-btn.active {
    background: var(--primary-gradient);
    color: #09090b;
    box-shadow: 0 4px 15px var(--glow-primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    animation: fadeIn 0.5s ease-out forwards;
}

/* Product Cards */
.prod-card {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.prod-card::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: var(--radius-md);
    border: 1.5px solid transparent;
    background: 
        linear-gradient(var(--bg-surface), var(--bg-surface)) padding-box,
        linear-gradient(135deg, var(--c-violet), var(--c-rose), var(--c-cyan)) border-box;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    z-index: 1;
}

.prod-card:hover::before {
    opacity: 1;
}

.prod-card:hover {
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(56, 189, 248, 0.25),
        0 0 15px rgba(236, 72, 153, 0.15);
}

.prod-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, rgba(20, 10, 45, 0.8) 25%, rgba(56, 189, 248, 0.1) 50%, rgba(20, 10, 45, 0.8) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.6s infinite linear;
}

.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.prod-card:hover .prod-img {
    transform: scale(1.08);
}

.prod-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.prod-badge.free {
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.prod-badge.paid {
    background: rgba(236, 72, 153, 0.15);
    color: #fbcfe8;
    border: 1px solid rgba(236, 72, 153, 0.4);
}

.prod-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.prod-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.prod-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.prod-price {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: #ffffff;
}

.prod-price.free-text {
    color: var(--c-emerald);
}

/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 0, 10, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(10, 5, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.85),
        inset 0 0 30px rgba(255, 255, 255, 0.02),
        0 0 50px rgba(56, 189, 248, 0.15);
    transform: scale(0.95) translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-header {
    padding: 24px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: #ffffff;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: rgba(0,0,0,0.2);
}

/* Alert Boxes */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    margin-bottom: 24px;
    border: 1px solid transparent;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #a7f3d0;
}

/* Toast System */
.toast-msg {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(30px) scale(0.9);
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #a7f3d0;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.45),
        0 0 25px rgba(16, 185, 129, 0.1);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2000;
    pointer-events: none;
    font-weight: 600;
    overflow: hidden;
}

.toast-msg.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, #10b981, #34d399);
    width: 100%;
}

.toast-msg.show .toast-progress {
    animation: toastProgress 3s linear forwards;
}

@keyframes toastProgress {
    from { width: 100%; }
    to { width: 0%; }
}

/* Auth Pages Centering */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    min-height: calc(100vh - 80px);
}

.auth-card {
    width: 100%;
    max-width: 440px;
}

.auth-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 8px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
    grid-column: 1 / -1;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--c-violet);
    opacity: 0.5;
}

/* Responsive adjust */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
        gap: 15px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .shop-title {
        font-size: 2.3rem;
    }
}

/* Shimmer Loading Animation Keyframe */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Testimonials Showcase Section */
.testimonials-section {
    padding: 70px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 30px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(10, 5, 25, 0.45);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background: 
        linear-gradient(rgba(10, 5, 25, 0.95), rgba(10, 5, 25, 0.95)) padding-box,
        linear-gradient(135deg, var(--c-violet), var(--c-rose)) border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(56, 189, 248, 0.15);
    background: rgba(22, 12, 45, 0.55);
}

.testimonial-stars {
    color: #f59e0b; /* Amber star yellow */
    margin-bottom: 15px;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 22px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.testimonial-info h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: #ffffff;
}

.testimonial-info span {
    font-size: 0.75rem;
    color: var(--c-cyan);
    font-weight: 600;
    text-transform: uppercase;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #030014;
    border-left: 1px solid rgba(255, 255, 255, 0.03);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--c-violet), var(--c-rose));
    border-radius: var(--radius-pill);
    border: 3px solid #030014;
    box-shadow: inset 0 0 10px rgba(56, 189, 248, 0.5);
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--c-rose), var(--c-cyan));
}

/* Custom Product Promo Badge */
.custom-promo-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 4;
    background: rgba(239, 68, 68, 0.18);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.4);
    box-shadow: 
        0 0 15px rgba(239, 68, 68, 0.25),
        0 4px 10px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* Lightbox Modal Hover Trigger */
#modal-img {
    cursor: zoom-in;
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
#modal-img:hover {
    filter: brightness(1.08);
}

/* Logo & Glitch styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff;
    transition: var(--transition);
}

.logo-text {
    position: relative;
    display: inline-block;
}

.logo:hover .logo-text {
    animation: logo-glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
}

.logo .logo-text::before,
.logo .logo-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    display: none;
}

.logo:hover .logo-text::before,
.logo:hover .logo-text::after {
    display: block;
}

.logo:hover .logo-text::before {
    color: var(--c-cyan);
    z-index: -1;
    animation: glitch-offset 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
}

.logo:hover .logo-text::after {
    color: var(--c-rose);
    z-index: -2;
    animation: glitch-offset 0.3s cubic-bezier(.25, .46, .45, .94) reverse both infinite;
}

@keyframes logo-glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-1.5px, 1.5px); }
    40% { transform: translate(-1.5px, -1.5px); }
    60% { transform: translate(1.5px, 1.5px); }
    80% { transform: translate(1.5px, -1.5px); }
    100% { transform: translate(0); }
}

@keyframes glitch-offset {
    0% { transform: translate(0); }
    25% { transform: translate(-2px, 1px); }
    50% { transform: translate(1px, -1px); }
    75% { transform: translate(-1px, -2px); }
    100% { transform: translate(0); }
}

/* Theme buttons active style */
.theme-btn.active {
    border-color: #ffffff !important;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}
.theme-btn:hover {
    transform: scale(1.2);
}

/* Floating Contact Badge Widget */
.floating-contact-group {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}
.floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.35rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}
.floating-btn.zalo {
    background: #0084ff;
    border: 1px solid rgba(0, 132, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 132, 255, 0.3);
}
.floating-btn.discord {
    background: #5865f2;
    border: 1px solid rgba(88, 101, 242, 0.4);
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.3);
}
.floating-btn:hover {
    transform: translateY(-5px) scale(1.08);
}
.floating-btn.zalo:hover {
    box-shadow: 0 0 25px rgba(0, 132, 255, 0.6);
}
.floating-btn.discord:hover {
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.6);
}

/* Live Server Status Pulse Dot */
.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 1.5s infinite alternate;
}
@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px #10b981; }
}

/* Background Music Icons animations */
@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-3px); }
}

/* Music Player Input Styling */
#music-volume::-webkit-slider-runnable-track {
    background: rgba(255,255,255,0.1);
    height: 4px;
    border-radius: 2px;
}
#music-volume::-webkit-slider-thumb {
    background: var(--c-violet);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: -3px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: 0 0 8px var(--c-violet);
}

/* Seamless Announcement Bar */
.announcement-bar {
    background: rgba(56, 189, 248, 0.04);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 2px 15px rgba(56, 189, 248, 0.05);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.announcement-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}
.announcement-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
}
.announcement-bar:hover .announcement-content {
    animation-play-state: paused;
}
.announcement-content span {
    display: inline-block;
    padding-right: 60px;
}
.announcement-content span strong {
    color: var(--c-cyan);
    text-shadow: 0 0 8px rgba(34, 211, 238, 0.3);
}
@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Smart Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 160px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(10, 5, 25, 0.85);
    border: 1px solid var(--border-color);
    color: #ffffff;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 
        0 0 15px rgba(56, 189, 248, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}
.back-to-top-btn.show {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}
.back-to-top-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
    transform: translateY(-5px);
}



/* 2. Dynamic Card Tab Theme Glows */
#free-products .prod-card:hover::before {
    background: 
        linear-gradient(var(--bg-surface), var(--bg-surface)) padding-box,
        linear-gradient(135deg, var(--c-emerald), var(--c-cyan)) border-box;
}
#free-products .prod-card:hover {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(16, 185, 129, 0.25),
        0 0 15px rgba(34, 211, 238, 0.15);
}

#paid-products .prod-card:hover::before {
    background: 
        linear-gradient(var(--bg-surface), var(--bg-surface)) padding-box,
        linear-gradient(135deg, var(--c-rose), #f59e0b) border-box;
}
#paid-products .prod-card:hover {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(236, 72, 153, 0.25),
        0 0 15px rgba(245, 158, 11, 0.15);
}

#download-files .prod-card:hover::before {
    background: 
        linear-gradient(var(--bg-surface), var(--bg-surface)) padding-box,
        linear-gradient(135deg, var(--c-cyan), var(--c-violet)) border-box;
}
#download-files .prod-card:hover {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(34, 211, 238, 0.25),
        0 0 15px rgba(56, 189, 248, 0.15);
}

/* 3. Sci-Fi Tech Corner Brackets */
.prod-card::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 12px;
    height: 12px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
    transition: var(--transition);
}
#free-products .prod-card:hover::after { border-color: var(--c-emerald); }
#paid-products .prod-card:hover::after { border-color: var(--c-rose); }
#download-files .prod-card:hover::after { border-color: var(--c-cyan); }

/* 4. Custom Sleek Tooltips */
[data-tooltip] {
    position: relative;
}
[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(10, 5, 25, 0.95);
    border: 1px solid var(--border-color);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 
        0 6px 20px rgba(0,0,0,0.5), 
        0 0 10px rgba(56, 189, 248,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 10000;
}
[data-tooltip]:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Glassmorphic Profile Dropdown */
.profile-dropdown-card {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    background: rgba(10, 5, 25, 0.94);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.6), 
        0 0 20px rgba(56, 189, 248,0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
}
.profile-dropdown-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}
.nav-item-has-dropdown:hover .profile-dropdown-card {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(4px);
}
.dropdown-item {
    cursor: pointer;
}
.dropdown-item:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
}
.dropdown-item.logout:hover {
    color: #fca5a5 !important;
    background: rgba(239, 68, 68, 0.08);
}

/* Download File Extension Capsules */
.file-ext-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 7px;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 800;
    font-family: monospace;
    margin-left: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    vertical-align: middle;
    letter-spacing: 0.5px;
}
.file-ext-badge.ext-exe {
    background: rgba(34, 211, 238, 0.12);
    border-color: rgba(34, 211, 238, 0.35);
    color: var(--c-cyan);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.12);
}
.file-ext-badge.ext-zip {
    background: rgba(56, 189, 248, 0.12);
    border-color: rgba(56, 189, 248, 0.35);
    color: var(--c-violet);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.12);
}
.file-ext-badge.ext-rar {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.35);
    color: #fca5a5;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.12);
}

/* Instant Search Highlight */
.search-highlight {
    background: rgba(56, 189, 248, 0.25);
    color: #ffffff;
    border-bottom: 1.5px solid var(--c-violet);
    padding: 0 2px;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.25);
}

/* --- HERO SECTION GRID UPGRADE --- */
.shop-hero {
    text-align: left !important;
}
.hero-content-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: center;
}
.hero-text-side {
    z-index: 2;
}
.hero-visual-side {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.floating-software-card {
    background: rgba(18, 18, 22, 0.45);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: var(--radius-md);
    padding: 24px;
    width: 100%;
    max-width: 320px;
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(56, 189, 248, 0.12),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
    animation: cardFloat 6s infinite ease-in-out;
}
.floating-software-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: radial-gradient(circle at 10% 10%, rgba(56, 189, 248, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
@keyframes cardFloat {
    0% { transform: translateY(0px) rotate(1deg); }
    50% { transform: translateY(-12px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(1deg); }
}
.card-header-glow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--c-cyan);
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    margin-bottom: 16px;
}
.card-body-glow {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.card-body-glow .item-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
}
.card-body-glow .item-row .label {
    color: var(--text-muted);
    font-weight: 500;
}
.card-body-glow .item-row .value {
    color: #ffffff;
    font-weight: 700;
}
.card-footer-glow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
    margin-top: 16px;
}
.pulse-indicator {
    width: 8px;
    height: 8px;
    background: var(--c-emerald);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--c-emerald);
    animation: indicatorPulse 2s infinite;
}
@keyframes indicatorPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@media (max-width: 768px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-visual-side {
        margin-top: 20px;
    }
}

/* --- CONTACT CARDS PREMIUM GLASSMORPHISM --- */
.info-card {
    background: rgba(13, 8, 38, 0.35) !important;
    border: 1px solid rgba(56, 189, 248, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s;
}
.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}
.info-card.zalo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.4) !important;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.5),
        0 0 25px rgba(34, 211, 238, 0.25);
}
.info-card.discord-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.4) !important;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.5),
        0 0 25px rgba(56, 189, 248, 0.25);
}
.info-card:hover .info-icon i {
    animation: iconShake 0.5s ease-in-out;
}
@keyframes iconShake {
    0%, 100% { transform: rotate(0); }
    20%, 60% { transform: rotate(-10deg); }
    40%, 80% { transform: rotate(10deg); }
}

/* --- FLOATING QUICK ACTION WIDGET --- */
.floating-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}
.floating-contact-menu {
    position: absolute;
    bottom: 68px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: max-content;
}
.floating-widget-container:hover .floating-contact-menu,
.floating-widget-container.active .floating-contact-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.floating-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(10, 5, 25, 0.85);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}
.floating-menu-item:hover {
    transform: translateX(-4px);
}
.floating-menu-item.zalo-menu:hover {
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(34, 211, 238, 0.25);
}
.floating-menu-item.discord-menu:hover {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(56, 189, 248, 0.25);
}
.floating-menu-item .menu-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #ffffff;
}
.floating-menu-item.zalo-menu .menu-icon { background: #0084ff; }
.floating-menu-item.discord-menu .menu-icon { background: #5865f2; }

.floating-contact-trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--btn-gradient);
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 
        0 8px 24px var(--glow-primary),
        0 0 15px rgba(236, 72, 153, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    transition: var(--transition);
    position: relative;
    animation: triggerPulse 2s infinite;
}
.floating-contact-trigger::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, 0.35);
    animation: triggerPulseRing 2s infinite;
}
.floating-widget-container:hover .floating-contact-trigger {
    transform: rotate(135deg);
    background: var(--primary-gradient);
    animation-play-state: paused;
}
@keyframes triggerPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}
@keyframes triggerPulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* --- MULTI-COLUMN FOOTER RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .footer-grid-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    .footer-col.intro-col p {
        margin: 0 auto;
    }
    .footer-col.contact-col ul li {
        justify-content: center;
    }
}

/* --- 2-COLUMN DETAILS MODAL --- */
#details-modal .modal-content {
    max-width: 800px;
    background: rgba(10, 5, 25, 0.94);
}
.modal-body-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.modal-image-showcase {
    position: relative;
    background: #060317;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 320px;
}
.modal-image-showcase img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    cursor: zoom-in;
    transition: var(--transition);
}
.modal-image-showcase img:hover {
    transform: scale(1.02);
}
.zoom-helper {
    position: absolute;
    bottom: 12px;
    font-size: 0.72rem;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.06);
}
.modal-details-showcase {
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    height: 320px;
    overflow-y: auto;
}
.modal-tabs {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
    padding-bottom: 8px;
}
.modal-tab-btn {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 4px 8px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.modal-tab-btn:hover, .modal-tab-btn.active {
    color: #ffffff;
}
.modal-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    box-shadow: 0 0 10px var(--c-violet);
}
.modal-tab-pane {
    display: none;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.modal-tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease-out forwards;
}
.support-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.support-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}
.support-list li i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .modal-body-grid {
        grid-template-columns: 1fr;
    }
    .modal-image-showcase {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        min-height: 240px;
    }
    .modal-details-showcase {
        height: auto;
    }
}

/* --- PREMIUM FLOATING SEARCH CONTAINER --- */
.search-container {
    max-width: 540px !important;
    background: rgba(10, 5, 25, 0.45);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    padding: 3px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(56, 189, 248, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}
.search-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-pill);
    padding: 1px;
    background: linear-gradient(135deg, var(--c-violet), var(--c-rose), var(--c-cyan));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.25;
    transition: opacity 0.3s;
    pointer-events: none;
}
.search-container:focus-within {
    box-shadow: 
        0 12px 40px rgba(56, 189, 248, 0.15),
        0 0 15px rgba(236, 72, 153, 0.1),
        inset 0 0 20px rgba(56, 189, 248, 0.1);
}
.search-container:focus-within::before {
    opacity: 0.8;
}
.search-container input {
    background: transparent !important;
    border: none !important;
    padding: 12px 20px 12px 50px !important;
    box-shadow: none !important;
}
.search-container:focus-within .search-icon {
    color: var(--c-cyan) !important;
    text-shadow: 0 0 8px rgba(34, 211, 238, 0.6);
}

/* --- CYBER EMPTY STATE --- */
.cyber-empty-state {
    text-align: center;
    padding: 50px 20px;
    grid-column: 1 / -1;
    border: 1px dashed rgba(56, 189, 248, 0.2);
    border-radius: var(--radius-md);
    background: rgba(10, 5, 25, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease-out forwards;
}
.empty-glitch-icon {
    font-size: 3rem;
    color: var(--c-rose);
    text-shadow: 2px 2px 0 var(--c-cyan), -2px -2px 0 var(--c-violet);
    animation: textGlitch 2s infinite linear alternate-reverse;
    margin-bottom: 16px;
    display: inline-block;
}
@keyframes textGlitch {
    0% { text-shadow: 2px 2px 0 var(--c-cyan), -2px -2px 0 var(--c-violet); }
    50% { text-shadow: -2px 2px 0 var(--c-cyan), 2px -2px 0 var(--c-violet); }
    100% { text-shadow: 2px -2px 0 var(--c-cyan), -2px 2px 0 var(--c-violet); }
}

/* --- CUSTOM THEME SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: #18181c;
    border-radius: var(--radius-pill);
    border: 2px solid var(--bg-base);
    transition: var(--transition);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--c-violet);
}
