﻿
/* ==========================================
   FILE: css/base/fonts.css
   ========================================== */
@font-face {
    font-family: 'Kanit';
    src: url('/assets/font/Kanit-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kanit';
    src: url('/assets/font/Kanit-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kanit';
    src: url('/assets/font/Kanit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kanit';
    src: url('/assets/font/Kanit-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kanit';
    src: url('/assets/font/Kanit-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kanit';
    src: url('/assets/font/Kanit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kanit';
    src: url('/assets/font/Kanit-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kanit';
    src: url('/assets/font/Kanit-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


/* ==========================================
   FILE: css/base/variables.css
   ========================================== */


:root {
    
    --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    --secondary-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --accent-color: #3b82f6;
    --accent-hover: #1d4ed8;
    --bg-dark: #0f0f1a;
    --bg-card: #1a1a2e;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --info-color: #3b82f6;

    
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);

    
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    
    --font-family: 'Kanit', sans-serif;
}


/* ==========================================
   FILE: css/base/reset.css
   ========================================== */


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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark, #0f172a);
    
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient, linear-gradient(180deg, #3b82f6 0%, #2563eb 100%));
    border-radius: 4px;
    border: 2px solid var(--bg-dark, #0f172a);
    
}

::-webkit-scrollbar-thumb:hover {
    filter: brightness(1.2);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

input,
textarea,
select {
    font-family: inherit;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.hidden {
    display: none !important;
}

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


/* ==========================================
   FILE: css/components/navbar.css
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.navbar.scrolled {
    height: 70px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.navbar-custom {
    max-width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 25px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-custom-link {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 8px 10px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: transparent !important;
}

.nav-custom-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--nav-accent-color, #3b82f6);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px 2px 0 0;
}

.nav-custom-link:hover,
.nav-custom-link.active {
    color: white !important;
}

.nav-custom-link:hover::after,
.nav-custom-link.active::after {
    transform: scaleX(1);
}

.nav-user-wrapper {
    position: relative;
    margin-left: 16px;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px 5px 5px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.25s ease;
}

.user-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

.nav-avatar-box {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.status-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #1e293b;
    
    background-color: #6b7280;
    z-index: 10;
    transition: all 0.3s ease;
}

.status-dot.hidden {
    display: none !important;
}

.nav-user-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 240px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 6px;
    display: none;
    flex-direction: column;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.5);
    transform-origin: top right;
    animation: dropdownSlideIn 0.2s ease forwards;
    z-index: 1100;
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }

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

.nav-dropdown.active {
    display: flex;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid transparent;
    margin-bottom: 2px;
}

.dropdown-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.15);
    color: white;
    transform: translateX(3px);
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.dropdown-item:hover i {
    transform: scale(1.1);
    color: #3b82f6;
}

.wallet-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    margin-bottom: 8px;
}

.wallet-label {
    text-align: center;
    font-size: 0.65rem;
    color: #64748b;
    margin-bottom: 2px;
}

.wallet-val-lg {
    font-size: 1.1rem;
    line-height: 1;
    color: white;
    font-weight: 700;
}

.wallet-unit {
    font-size: 0.6rem;
    color: #64748b;
}

.divider-vertical {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 15px;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.action-btn-custom {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: 0.2s;
    height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    cursor: pointer;
}

.action-btn-custom:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.action-btn-custom:hover .action-icon-lg {
    color: var(--nav-accent-color, #3b82f6);
    transform: scale(1.1);
}

.action-btn-custom:hover .action-text-sm {
    color: white;
}

.action-icon-lg {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
    transition: all 0.2s ease;
}

.action-text-sm {
    font-size: 0.7rem;
    color: #cbd5e1;
    font-weight: 500;
}

.dropdown-divider-custom {
    margin: 4px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-btn-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white !important;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 3px 12px rgba(59, 130, 246, 0.25);
}

.nav-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35);
}

.nav-btn-login i {
    font-size: 1.1rem;
}


/* ==========================================
   FILE: css/components/cards.css
   ========================================== */

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-header {
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.card-body {
    padding: var(--spacing-lg);
}

.card-footer {
    padding: var(--spacing-md) var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.product-card {
    position: relative;
    background: #111a2e;
    
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.product-top-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: flex-end;
    
    align-items: center;
    z-index: 10;
}

.stock-badge-pill {
    background: var(--nav-accent-color, #3b82f6);
    
    color: #fff;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
}

.product-info-pill {
    background: #0f172a;
    
    border: 1px solid var(--nav-accent-color, #3b82f6);
    
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #60a5fa;
    
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-info-pill.rp {
    background: #0f172a;
    border-color: rgba(245, 158, 11, 0.5);
    
    color: #fbbf24;
    
}

.product-info-pill .old-price {
    color: #ef4444;
    
    text-decoration: line-through;
    font-size: 0.68rem;
    opacity: 0.9;
}

.product-image-container {
    padding: 0;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    background: #0a0f1e;
    border-radius: 0;
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

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

.product-content-v2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2px;
}

.product-title-v2 {
    color: #fff;
    
    font-size: 1.05rem;
    
    font-weight: 700;
    margin: 0;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-meta-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.meta-badge-item {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.72rem;
    
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
}

.meta-badge-item.discount {
    background: #ef4444;
    color: white;
}

.meta-badge-item.sold {
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.03);
}

.meta-badge-item.sold i {
    color: #10b981;
}

.product-card-actions-v2 {
    display: flex;
    gap: 12px;
}

.btn-buy-v2 {
    flex: 1;
    background: var(--primary-gradient, linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%));
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.92rem;
    box-shadow: var(--shadow-glow, 0 8px 16px -4px rgba(59, 130, 246, 0.4));
    transition: all 0.2s;
}

.btn-buy-v2:hover:not(:disabled) {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: var(--shadow-glow-hover, 0 12px 20px -4px rgba(59, 130, 246, 0.5));
}

.btn-rp {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 16px -4px rgba(217, 119, 6, 0.4);
    transition: all 0.3s ease;
}

.btn-rp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -4px rgba(217, 119, 6, 0.5);
    filter: brightness(1.1);
}

.product-card.rp .btn-buy-v2 {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 16px -4px rgba(217, 119, 6, 0.4);
}

.product-card.rp .btn-buy-v2:hover:not(:disabled) {
    box-shadow: 0 12px 20px -4px rgba(217, 119, 6, 0.5);
}

.btn-gift-v2 {
    width: 44px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.1rem;
}

.btn-gift-v2:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.product-detail-link {
    margin-top: 4px;
    
    font-size: 0.72rem;
    color: #94a3b8;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
}

.product-detail-link:hover {
    color: var(--nav-accent-color, #3b82f6);
    opacity: 1;
}

.product-card.rp .product-detail-link:hover {
    color: #f59e0b;
}

.product-detail-link i {
    font-size: 0.85rem;
}

.product-card.disabled {
    filter: grayscale(1);
    opacity: 0.8;
}

.product-card.disabled .btn-buy-v2,
.product-card.disabled .btn-gift-v2 {
    background: #334155 !important;
    border-color: #334155 !important;
    color: #64748b !important;
    cursor: not-allowed;
    box-shadow: none !important;
    transform: none !important;
}

.coming-soon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 23, 42, 0.9);
    color: #cbd5e1;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.btn-presale-info {
    flex: 1;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    box-shadow: none;
    cursor: default;
    white-space: nowrap;
}

.btn-countdown-v2 i {
    animation: pulse-clock 2s infinite;
}

@keyframes pulse-clock {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton-card {
    pointer-events: none;
    user-select: none;
}

.skeleton-image,
.skeleton-line,
.skeleton-btn {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.05) 25%,
            rgba(255, 255, 255, 0.1) 37%,
            rgba(255, 255, 255, 0.05) 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
    border-radius: 4px;
}

.skeleton-image {
    width: 100%;
    aspect-ratio: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.skeleton-line {
    height: 14px;
    margin-bottom: 8px;
}

.skeleton-btn {
    height: 38px;
    border-radius: 10px;
}

.skeleton-btn.small {
    width: 42px;
}


/* ==========================================
   FILE: css/components/buttons.css
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    white-space: nowrap;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

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

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--accent-color);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--text-primary);
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.4);
}

.btn-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-md);
}

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
}

.btn-sm {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.8rem;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}


/* ==========================================
   FILE: css/components/forms.css
   ========================================== */

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

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

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

select.form-control {
    cursor: pointer;
}


/* ==========================================
   FILE: css/components/modals/core.css
   ========================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: rgba(30, 41, 59, 0.85);
    
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-title i {
    margin-right: var(--spacing-sm);
    color: var(--accent-color);
}


/* ==========================================
   FILE: css/components/modals/unified.css
   ========================================== */

.unified-modal {
    width: 100%;
    max-width: 400px;
    background: var(--nav-bg-color, #1e293b);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .unified-modal {
    transform: scale(1);
    opacity: 1;
}

.um-header {
    background: var(--primary-gradient, linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%));
    padding: 30px 20px 30px;
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
    
}

.um-header::before,
.um-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.um-header::before {
    width: 150px;
    height: 150px;
    top: -50px;
    left: -50px;
    filter: blur(2px);
}

.um-header::after {
    width: 100px;
    height: 100px;
    bottom: -30px;
    right: -20px;
    filter: blur(2px);
}

.um-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 1rem;
    z-index: 10;
}

.um-close:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: rotate(90deg);
}

.um-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2.5rem;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
    animation: umIconPulse 3s infinite ease-in-out;
}

@keyframes umIconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    }
}

.um-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.um-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 6px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.um-body {
    padding: 24px;
    background: rgba(0, 0, 0, 0.2);
    
    flex: 1;
}

.um-form-group {
    margin-bottom: 20px;
}

.um-label {
    display: block;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
    padding-left: 4px;
}

.um-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px 20px;
    color: white;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.um-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--nav-accent-color, #3b82f6);
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 0 0 4px var(--nav-accent-color, #3b82f6)33;
    transform: translateY(-1px);
}

.um-input::placeholder {
    color: #475569;
}

.um-input.text-center {
    text-align: center;
    letter-spacing: 1px;
    font-weight: 600;
}

.um-input[type="number"]::-webkit-outer-spin-button,
.um-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.um-input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.um-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-gradient, linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-glow, 0 4px 15px rgba(59, 130, 246, 0.3));
    transition: all 0.3s ease;
    margin-top: 10px;
}

.um-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-hover, 0 10px 40px rgba(59, 130, 246, 0.5));
    filter: brightness(1.15);
}

.um-btn:active {
    transform: translateY(0);
}

.um-info {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: center;
}

.um-info-text {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.um-info-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 8px 0;
    display: block;
}

.um-unit {
    font-size: 1rem;
    color: var(--nav-accent-color, #3b82f6);
    font-weight: 600;
    margin-left: 6px;
}

.um-input:-webkit-autofill,
.um-input:-webkit-autofill:hover,
.um-input:-webkit-autofill:focus,
.um-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--nav-bg-color, #1e293b) inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
    caret-color: white;
    border-color: rgba(255, 255, 255, 0.1);
}

.hidden-js {
    display: none;
}

.um-input-wrapper {
    position: relative;
}

.um-input-with-toggle {
    padding-right: 45px;
}

.um-password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}

.um-password-toggle:hover {
    color: #cbd5e1;
}

.um-password-toggle.active {
    color: #3b82f6;
}

.pm-input-section {
    margin: 15px 0;
}

.dm-btn-close {
    background: #334155;
    color: #94a3b8;
    box-shadow: none;
}


/* ==========================================
   FILE: css/components/modals/product.css
   ========================================== */
.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

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

.modal-body {
    padding: var(--spacing-lg);
}

.modal-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-end;
}

.purchase-modal-v2 {
    width: 420px;
    max-width: 90vw;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #0f172a;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.6);
    position: relative;
    display: flex;
    flex-direction: column;
}

.purchase-modal-v2.theme-point .pm-header-bg {
    background: var(--primary-gradient, linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%));
    overflow: hidden;
}

.purchase-modal-v2.theme-point .pm-header-bg::before,
.purchase-modal-v2.theme-point .pm-header-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.purchase-modal-v2.theme-point .pm-header-bg::before {
    width: 120px;
    height: 120px;
    top: -30px;
    left: -30px;
}

.purchase-modal-v2.theme-point .pm-header-bg::after {
    width: 80px;
    height: 80px;
    bottom: 10px;
    right: -20px;
}

.purchase-modal-v2.theme-point .pm-product-glow {
    background: radial-gradient(circle, var(--nav-accent-color, #3b82f6) 60%, transparent 70%);
}

.purchase-modal-v2.theme-point .pm-info-card.price .pm-value {
    color: var(--nav-accent-color, #60a5fa);
}

.purchase-modal-v2.theme-point .pm-btn-confirm {
    background: var(--primary-gradient, linear-gradient(135deg, #3b82f6, #2563eb));
    box-shadow: var(--shadow-glow, 0 6px 20px rgba(59, 130, 246, 0.3));
}

.purchase-modal-v2.theme-point .pm-btn-confirm:hover {
    box-shadow: var(--shadow-glow-hover, 0 10px 30px rgba(59, 130, 246, 0.5));
}

.purchase-modal-v2.theme-rp .pm-header-bg {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    overflow: hidden;
}

.purchase-modal-v2.theme-rp .pm-header-bg::before,
.purchase-modal-v2.theme-rp .pm-header-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.purchase-modal-v2.theme-rp .pm-header-bg::before {
    width: 100px;
    height: 100px;
    top: -20px;
    right: 50px;
}

.purchase-modal-v2.theme-rp .pm-header-bg::after {
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 30px;
}

.purchase-modal-v2.theme-rp .pm-product-glow {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.6), transparent 70%);
}

.purchase-modal-v2.theme-rp .pm-info-card.price .pm-value {
    color: #fbbf24;
}

.purchase-modal-v2.theme-rp .pm-btn-confirm {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.purchase-modal-v2.theme-rp .pm-btn-confirm:hover {
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
}

.pm-header {
    position: relative;
    height: 180px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 85px;
    
}

.pm-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.pm-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 20;
}

.pm-close:hover {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    transform: rotate(90deg);
}

.pm-product-frame {
    position: relative;
    z-index: 10;
    transform: translateY(40%);
    
}

.pm-product-glow {
    display: none !important;
    
}

.pm-product-image {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    background: #1e293b;
    border: 4px solid #1e293b;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    
    overflow: hidden;
    position: relative;
}

.pm-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pm-body {
    padding: 0 32px 32px;
    text-align: center;
    position: relative;
    z-index: 5;
}

#confirm-name,
.pm-product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 24px 0;
    line-height: 1.3;

    
    color: #ffffff !important;
    background: transparent !important;
    background-image: none !important;

    
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;

    
    -webkit-text-fill-color: #ffffff !important;
    -webkit-text-fill-color: currentColor !important;

    opacity: 1 !important;
}

.pm-quantity-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    gap: 12px;
    width: 100%;
    
    margin-bottom: 16px;
    margin-top: 0;
}

.qty-btn {
    width: 42px;
    
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 1rem;
    flex-shrink: 0;
    
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.qty-input-v2 {
    flex: 1;
    
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    height: 42px;
    
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    letter-spacing: 0.5px;
    outline: none;
    transition: all 0.2s;
    width: 60px;
    
    min-width: 0;
}

.qty-input-v2:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.qty-input-v2::-webkit-outer-spin-button,
.qty-input-v2::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input-v2[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.pm-stacked-price {
    display: flex;
    align-items: baseline;
    
    justify-content: center;
    gap: 6px;
    margin-bottom: 4px;
}

.pm-stacked-price .amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: -0.5px;
    line-height: 1;
}

.pm-stacked-price .label {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 400;
    margin-right: 2px;
}

.pm-stacked-price .unit {
    font-size: 1.1rem;
    font-weight: 600;
    color: #cbd5e1;
    text-transform: capitalize;
}

.pm-stacked-balance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    
    font-size: 0.95rem;
    
    font-weight: 500;
    margin-bottom: 28px;
    padding: 0;
    background: none;
    border: none;
    opacity: 0.9;
}

.pm-stacked-balance .label {
    color: #94a3b8;
    font-weight: 400;
    margin-right: 2px;
}

.pm-stacked-balance i {
    font-size: 1rem;
}

.pm-stacked-balance.status-green .label {
    color: #94a3b8;
}

.pm-stacked-balance.status-green i {
    color: #4ade80;
}

.pm-stacked-balance.status-green span:not(.label) {
    color: #4ade80;
}

div.pm-stacked-balance.status-red .label {
    color: #94a3b8 !important;
    
}

div.pm-stacked-balance.status-red i,
div.pm-stacked-balance.status-red span:not(.label) {
    color: #ef4444 !important;
    
}

.purchase-modal-v2.theme-point .pm-stacked-price .amount {
    color: #60a5fa;
    
}

.purchase-modal-v2.theme-rp .pm-stacked-price .amount {
    color: #fbbf24;
    
}

.pm-actions {
    display: flex;
    gap: 12px;
}

.pm-notes-container {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pm-note-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 400;
}

.pm-note-text i {
    font-size: 0.75rem;
    opacity: 0.8;
}

.pm-btn-cancel {
    order: 2;
    
    flex: 0.3;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.pm-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
}

.pm-btn-confirm {
    order: 1;
    
    flex: 1;
    padding: 14px;
    border-radius: 14px;
    border: none;
    font-weight: 700;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    
}

.pm-btn-confirm:disabled {
    
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
    transform: none !important;
    filter: grayscale(0.2);
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.pm-gift-notes {
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.gift-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
}

.gift-note i {
    font-size: 0.7rem;
    opacity: 0.8;
}

.pm-gift-notes .gift-note:not(:last-child)::after {
    content: "•";
    margin-left: 16px;
    color: rgba(255, 255, 255, 0.2);
}

.pm-input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s;
}

.pm-input:focus {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.pm-input:-webkit-autofill,
.pm-input:-webkit-autofill:hover,
.pm-input:-webkit-autofill:focus,
.pm-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #1e293b inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
    border-radius: 12px;
}


/* ==========================================
   FILE: css/components/modals/detail.css
   ========================================== */

.detail-modal-v2 {
    width: 800px;
    max-width: 95vw;
    padding: 0;
    overflow: hidden;
    background: #0f172a;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.6);
    position: relative;
}

.dm-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 20;
}

.dm-close:hover {
    background: #ef4444;
    color: white;
    transform: rotate(90deg);
}

.dm-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 400px;
}

.dm-image-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.dm-image-section::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    top: -50px;
    left: -50px;
}

.dm-image-section::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    bottom: -30px;
    right: -30px;
}

.dm-image-wrapper {
    position: relative;
    z-index: 1;
}

.dm-image-wrapper img {
    max-width: 280px;
    max-height: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.dm-info-section {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dm-product-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
    padding-right: 40px;
    
}

.dm-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dm-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #94a3b8;
}

.dm-badge i {
    font-size: 0.75rem;
    opacity: 0.7;
}

.dm-price-section {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 16px;
    background: var(--nav-accent-color, #3b82f6)1a;
    border: 1px solid var(--nav-accent-color, #3b82f6)33;
    border-radius: 12px;
}

.dm-price-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.dm-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--nav-accent-color, #60a5fa);
}

.dm-currency {
    font-size: 1rem;
    font-weight: 600;
    color: #94a3b8;
}

.dm-description-box {
    flex: 1;
}

.dm-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dm-section-title i {
    font-size: 0.8rem;
}

.dm-description {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
    max-height: 120px;
    overflow-y: auto;
    padding-right: 8px;
}

.dm-description::-webkit-scrollbar {
    width: 4px;
}

.dm-description::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.dm-stock-info {
    display: flex;
    gap: 20px;
}

.dm-stock-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
}

.dm-stock-item i {
    font-size: 0.9rem;
    color: #475569;
}

.dm-stock-item strong {
    color: #cbd5e1;
    font-weight: 600;
}

.dm-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.dm-btn-buy {
    flex: 1;
    padding: 14px 24px;
    border-radius: 12px;
    border: none;
    background: var(--primary-gradient, linear-gradient(135deg, #3b82f6, #2563eb));
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: var(--shadow-glow, 0 4px 15px rgba(59, 130, 246, 0.3));
}

.dm-btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-hover, 0 8px 25px rgba(59, 130, 246, 0.4));
}

.dm-btn-gift {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.dm-btn-gift:hover {
    background: rgba(217, 70, 239, 0.2);
    border-color: rgba(217, 70, 239, 0.4);
    color: #d946ef;
}

.detail-modal-v2.theme-rp .dm-price-section {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
}

.detail-modal-v2.theme-rp .dm-price {
    color: #fbbf24;
}

.detail-modal-v2.theme-rp .dm-btn-buy {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.detail-modal-v2.theme-rp .dm-btn-buy:hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.dm-btn-close {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #94a3b8 !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: none !important;
}

.dm-btn-close:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #f1f5f9 !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .dm-layout {
        grid-template-columns: 1fr;
    }

    .dm-image-section {
        padding: 30px;
    }

    .dm-image-wrapper img {
        max-width: 200px;
        max-height: 200px;
    }

    .dm-info-section {
        padding: 24px;
    }

    .dm-product-name {
        font-size: 1.3rem;
    }
}

.dm-extra-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.dm-extra-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dm-extra-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #64748b;
}

.dm-extra-header i {
    font-size: 0.8rem;
}

.dm-extra-value {
    color: #e2e8f0;
    font-weight: 500;
    padding-left: 20px;
    
}

.dm-extra-value.highlight {
    color: #fbbf24;
}

.dm-extra-value.accent {
    color: #38bdf8;
}


/* ==========================================
   FILE: css/components/modals/refund.css
   ========================================== */


.rf-amount-label {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 400;
}

.rf-amount-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.rf-amount-val {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    font-family: 'Kanit', sans-serif;
}

.rf-amount-unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    display: inline-block;
}

.rf-countdown-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rf-countdown-label {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.rf-timer-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.rf-timer-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    width: 60px;
    height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rf-time-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
    font-family: 'Kanit', sans-serif;
}

.rf-time-label {
    font-size: 0.6rem;
    color: #94a3b8;
    margin-top: 4px;
    text-transform: uppercase;
    font-weight: 500;
}

.rf-footer-info {
    padding-top: 5px;
}

.rf-loading-wrap {
    padding: 40px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rf-empty-wrap {
    padding: 40px 20px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-out;
}

.rf-empty-icon-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.rf-empty-icon-box i {
    font-size: 3rem;
    color: #60a5fa;
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.6));
}

.rf-empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.rf-empty-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 80%;
    margin: 0 auto;
}

.rf-expired-mode {
    filter: grayscale(100%);
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
}

.rf-expired-mode .rf-amount-val,
.rf-expired-mode .rf-amount-unit,
.rf-expired-mode .rf-time-val {
    color: #94a3b8 !important;
}

#btn-claim-cycle {
    background: #3b82f6 !important;
    color: #fff !important;
    border: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    box-shadow: none !important;
    animation: none !important;
}

#btn-claim-cycle:hover,
#btn-claim-cycle:focus,
#btn-claim-cycle:active,
#btn-onetime-waiting:hover,
#btn-onetime-waiting:focus,
#btn-onetime-waiting:active {
    transform: none !important;
    box-shadow: none !important;
    outline: none !important;
}

#btn-claim-cycle.disabled,
#btn-claim-cycle.disabled:hover,
#btn-onetime-waiting,
#btn-onetime-waiting:hover {
    background: #334155 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #cbd5e1 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

#refund-modal .um-close,
#refund-modal .um-close:hover {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    border: none !important;
}

#refund-modal .um-close {
    color: #fff !important;
}

#refund-modal .um-close:hover {
    color: #ef4444 !important;
}

.rf-ready-box {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
}

.rf-ready-title {
    color: #4ade80;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.rf-ready-subtitle {
    color: #94a3b8;
    font-size: 0.9rem;
}

.rf-timer-alert {
    color: #ef4444;
    font-family: 'Kanit', sans-serif;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    margin-left: 5px;
}

.rf-btn-claim-onetime {
    background: #3b82f6;
    color: #fff;
    border: none;
    opacity: 1;
    cursor: pointer;
}

.rf-expired-container {
    padding: 20px 0;
}

.rf-expired-icon-box {
    margin-bottom: 20px;
    opacity: 0.5;
}

.rf-expired-title {
    color: #cbd5e1;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.rf-expired-alert-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.rf-expired-text {
    color: #fda4af;
    font-size: 0.95rem;
    margin: 0;
}

.rf-expired-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f87171;
    font-family: 'Kanit', sans-serif;
}

.rf-expired-unit {
    font-size: 1rem;
    color: #f87171;
}

.rf-btn-disabled-full {
    background: #334155;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    cursor: not-allowed;
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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


/* ==========================================
   FILE: css/components/modals/login-v5.css
   ========================================== */

.login-modal-v5 {
    max-width: 420px;
    background: var(--nav-bg-color, rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 48px 40px;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 25px 50px -12px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(102, 126, 234, 0.1);
    overflow: visible;
}

.lm5-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.lm5-close:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    transform: rotate(90deg);
}

.lm5-avatar-section {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.lm5-avatar-glow {
    display: none;
}

.lm5-avatar-ring {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(145deg, var(--nav-bg-color, #0f172a), #020617);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lm5-avatar-ring:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px rgba(102, 126, 234, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lm5-avatar-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.lm5-title-section {
    text-align: center;
    margin-bottom: 32px;
}

.lm5-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.lm5-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

.lm5-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lm5-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.lm5-input-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.lm5-input {
    width: 100%;
    padding: 14px 44px 14px 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: var(--font-family);
    color: #fff;
    transition: all 0.25s ease;
}

.lm5-input::placeholder {
    color: #475569;
    font-weight: 400;
}

.lm5-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--nav-accent-color, #3b82f6);
    box-shadow: 0 0 0 4px var(--nav-accent-color, #3b82f6)1a;
}

.lm5-input.error {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1) !important;
}

.lm5-input.error:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15) !important;
}

.lm5-input:-webkit-autofill,
.lm5-input:-webkit-autofill:hover,
.lm5-input:-webkit-autofill:focus,
.lm5-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--nav-bg-color, #0f172a) inset !important;
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
    caret-color: #fff;
}

.lm5-input:focus+.lm5-input-icon,
.lm5-input-group:focus-within .lm5-input-icon {
    color: var(--nav-accent-color, #3b82f6);
}

.lm5-password-toggle {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    font-size: 0.95rem;
    transition: color 0.2s;
    z-index: 2;
}

.lm5-password-toggle:hover {
    color: #94a3b8;
}

.lm5-submit-btn {
    margin-top: 8px;
    width: 100%;
    padding: 13px 20px;
    background: var(--primary-gradient, linear-gradient(135deg, #3b82f6 0%, #2563eb 100%));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-glow, 0 6px 20px rgba(59, 130, 246, 0.3));
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.lm5-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.45);
}

.lm5-submit-btn:hover::before {
    left: 100%;
}

.lm5-submit-btn:active {
    transform: translateY(0);
}

.lm5-submit-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.lm5-submit-btn:hover i {
    transform: translateX(4px);
}

.lm5-help-text {
    margin-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #475569;
    font-weight: 400;
}

.lm5-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.lm5-divider::before,
.lm5-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.lm5-divider span {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
}

.lm5-footer {
    text-align: center;
}

.lm5-link {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lm5-link:hover {
    color: #667eea;
}

.lm5-link i {
    font-size: 0.8rem;
}

@media (max-width: 480px) {
    .login-modal-v5 {
        margin: 20px;
        padding: 36px 24px;
        border-radius: 24px;
    }

    .lm5-avatar-ring {
        width: 72px;
        height: 72px;
    }

    .lm5-title {
        font-size: 1.5rem;
    }

    .lm5-input {
        padding: 14px 44px 14px 44px;
    }
}


/* ==========================================
   FILE: css/components/modals/register-v5.css
   ========================================== */

.register-modal-v5 {
    max-width: 420px;
    background: var(--nav-bg-color, rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 48px 40px;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 25px 50px -12px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(102, 126, 234, 0.1);
    overflow: visible;
}

.rm5-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.rm5-close:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    transform: rotate(90deg);
}

.rm5-avatar-section {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.rm5-avatar-ring {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(145deg, var(--nav-bg-color, #0f172a), #020617);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rm5-avatar-ring:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px rgba(102, 126, 234, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rm5-avatar-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.rm5-title-section {
    text-align: center;
    margin-bottom: 32px;
}

.rm5-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.rm5-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

.rm5-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.rm5-input-group {
    position: relative;
    width: 100%;
    margin-bottom: 0;
    
    display: flex;
    align-items: center;
}

.rm5-input-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.rm5-input {
    width: 100%;
    padding: 14px 44px 14px 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: var(--font-family);
    color: #fff;
    transition: all 0.25s ease;
}

.rm5-input::placeholder {
    color: #475569;
    font-weight: 400;
}

.rm5-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--nav-accent-color, #3b82f6);
    box-shadow: 0 0 0 4px var(--nav-accent-color, #3b82f6)1a;
}

.rm5-input:focus~.rm5-input-icon,
.rm5-input-group:focus-within .rm5-input-icon {
    color: var(--nav-accent-color, #3b82f6);
}

.rm5-input.error {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1) !important;
}

.rm5-input:-webkit-autofill,
.rm5-input:-webkit-autofill:hover,
.rm5-input:-webkit-autofill:focus,
.rm5-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--nav-bg-color, #0f172a) inset !important;
    -webkit-text-fill-color: #fff !important;
    transition: background-color 500s ease-in-out 0s;
    caret-color: #fff;
}

.rm5-checkbox-group {
    margin: 4px 0;
}

.rm5-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.rm5-checkbox-label input {
    display: none;
}

.rm5-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.2s ease;
}

.rm5-checkbox-label input:checked+.rm5-checkbox-custom {
    background: var(--nav-accent-color, #3b82f6);
    border-color: var(--nav-accent-color, #3b82f6);
}

.rm5-checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 10px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.rm5-checkbox-label input:checked+.rm5-checkbox-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.rm5-checkbox-text {
    font-size: 0.85rem;
    color: #94a3b8;
    transition: color 0.2s;
}

.rm5-checkbox-label:hover .rm5-checkbox-text {
    color: #fff;
}

.rm5-password-toggle {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    font-size: 0.95rem;
    transition: color 0.2s;
    z-index: 2;
}

.rm5-captcha-container {
    display: flex;
    justify-content: center;
    transform: scale(0.9);
    
    transform-origin: center;
    margin: 0;
}

.rm5-maintenance-msg {
    text-align: center;
    padding: 2rem 1rem;
    color: #94a3b8;
}

.rm5-maintenance-msg i {
    font-size: 3.5rem;
    color: var(--nav-accent-color, #3b82f6);
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.8;
}

.rm5-maintenance-msg h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.rm5-maintenance-msg p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #94a3b8;
}

.rm5-submit-btn {
    width: 100%;
    padding: 13px 20px;
    background: var(--primary-gradient, linear-gradient(135deg, #3b82f6 0%, #2563eb 100%));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-glow, 0 6px 20px rgba(59, 130, 246, 0.3));
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rm5-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.45);
}

.rm5-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(0.8);
    transform: none !important;
    box-shadow: none !important;
}

.rm5-footer {
    margin-top: 24px;
    text-align: center;
}

.rm5-link {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
}

.rm5-link:hover {
    color: var(--nav-accent-color, #3b82f6);
}


/* ==========================================
   FILE: css/components/toast.css
   ========================================== */

.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-sm);
}

.toast {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 300px;
    max-width: 450px;
    animation: slideInUp 0.3s ease;
    overflow: hidden;
    position: relative;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

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

.toast.hiding {
    animation: slideOutDown 0.3s ease forwards;
}

@keyframes slideOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(100%);
    }
}

.toast-icon {
    font-size: 1.25rem;
}

.toast.success .toast-icon {
    color: var(--success-color);
}

.toast.error .toast-icon {
    color: var(--error-color);
}

.toast.warning .toast-icon {
    color: var(--warning-color);
}

.toast.info .toast-icon {
    color: var(--info-color);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

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

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: var(--spacing-xs);
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--accent-color);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    animation: progress 3s linear forwards;
}

@keyframes progress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}


/* ==========================================
   FILE: css/components/footer.css
   ========================================== */

.footer {
    background: #0f1014;
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    margin-top: 80px;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-box {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

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

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

.copyright .text-muted {
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.facebook-btn:hover {
    background: #1877F2 !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(24, 119, 242, 0.3);
    border-color: #1877F2 !important;
}

.discord-btn:hover {
    background: #5865F2 !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(88, 101, 242, 0.3);
    border-color: #5865F2 !important;
}

.social-btn i {
    font-size: 1.05rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 15px 0;
}

.footer-credit {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-credit .fa-heart {
    color: #ef4444;
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
    }

    .footer-social {
        justify-content: center;
    }
}


/* ==========================================
   FILE: css/components/sweetalert-theme.css
   ========================================== */


div:where(.swal2-container) div:where(.swal2-popup) {
    background: var(--bg-card, #1a1a2e) !important;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: 20px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    padding: 2em !important;
    width: 32em !important;
    max-width: 90% !important;
}

div:where(.swal2-container) .swal2-title {
    color: var(--text-primary, #ffffff) !important;
    font-family: var(--font-family, 'Kanit', sans-serif) !important;
    font-size: 1.6rem !important;
    font-weight: 600 !important;
}

div:where(.swal2-container) .swal2-html-container {
    color: var(--text-secondary, rgba(255, 255, 255, 0.8)) !important;
    font-family: var(--font-family, 'Kanit', sans-serif) !important;
    font-size: 1.1rem !important;
    font-weight: 300 !important;
}

div:where(.swal2-container) .swal2-actions {
    gap: 15px !important;
    margin-top: 1.5em !important;
}

div:where(.swal2-container) .swal2-confirm {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 12px 28px !important;
    font-family: var(--font-family, 'Kanit', sans-serif) !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3) !important;
    border: none !important;
    outline: none !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

div:where(.swal2-container) .swal2-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5) !important;
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%) !important;
}

div:where(.swal2-container) .swal2-confirm:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5) !important;
}

div:where(.swal2-container) .swal2-cancel {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #e2e8f0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 28px !important;
    font-family: var(--font-family, 'Kanit', sans-serif) !important;
    font-weight: 500 !important;
    transition: all 0.2s !important;
}

div:where(.swal2-container) .swal2-cancel:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

div:where(.swal2-icon).swal2-warning {
    border-color: #3b82f6 !important;
    color: #3b82f6 !important;
}

div:where(.swal2-icon).swal2-error {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}

div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line] {
    background-color: #ef4444 !important;
}

div:where(.swal2-icon).swal2-success {
    border-color: #10b981 !important;
    color: #10b981 !important;
}

div:where(.swal2-icon).swal2-success [class^=swal2-success-line] {
    background-color: #10b981 !important;
}

div:where(.swal2-icon).swal2-success .swal2-success-ring {
    border-color: rgba(16, 185, 129, 0.3) !important;
}

div:where(.swal2-container) .swal2-input,
div:where(.swal2-container) .swal2-textarea {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-family: var(--font-family, 'Kanit', sans-serif) !important;
    transition: border-color 0.2s !important;
}

div:where(.swal2-container) .swal2-input:focus,
div:where(.swal2-container) .swal2-textarea:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2) !important;
}

div:where(.swal2-container).swal2-backdrop-show,
div:where(.swal2-container).swal2-noanimation {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(4px) !important;
    z-index: 3000 !important;
    
}


/* ==========================================
   FILE: css/components/floating_discord.css
   ========================================== */

.social-floating-stack {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    align-items: flex-end;
}

.social-float-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    color: white !important;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    overflow: hidden;
}

.social-float-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s;
    z-index: 1;
}

.social-float-item:hover::before {
    left: 100%;
}

.social-float-item i {
    font-size: 24px;
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-float-item:hover {
    transform: translateY(-5px) scale(1.05);
    width: 170px;
    border-radius: 30px;
}

.social-float-item .float-text {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s ease;
    margin-left: 0;
    z-index: 2;
    font-family: 'Kanit', sans-serif;
}

.social-float-item:hover .float-text {
    max-width: 120px;
    opacity: 1;
    margin-left: 10px;
}

.social-float-item:hover i {
    transform: rotate(360deg);
}

.float-discord {
    background: #5865F2;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
    animation: discord-pulse 2s infinite;
}

.float-discord:hover {
    box-shadow: 0 12px 25px rgba(88, 101, 242, 0.6);
    animation: none;
}

.float-facebook {
    background: #1877F2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
    animation: fb-pulse 2s infinite;
}

.float-facebook:hover {
    box-shadow: 0 12px 25px rgba(24, 119, 242, 0.6);
    animation: none;
}

@keyframes discord-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(88, 101, 242, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(88, 101, 242, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(88, 101, 242, 0);
    }
}

@keyframes fb-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(24, 119, 242, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(24, 119, 242, 0);
    }
}

@media (max-width: 768px) {
    .social-floating-stack {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .social-float-item {
        width: 50px;
        height: 50px;
    }

    .social-float-item i {
        font-size: 20px;
    }

    .social-float-item:hover {
        width: 150px;
    }
}


/* ==========================================
   FILE: css/frontend-utils.css
   ========================================== */


.text-primary-blue {
    color: #3b82f6 !important;
}

.gap-6px {
    gap: 6px;
}

.nav-chevron-down {
    font-size: 0.7rem;
    opacity: 0.5;
}

.coupon-input-style {
    font-size: 1.2rem !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.warning-text-center {
    margin-top: 15px;
    text-align: center;
    font-size: 0.85rem;
    color: #ef4444;
    opacity: 0.9;
}

.d-none {
    display: none !important;
}

.promo-banner {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(56, 189, 248, 0.05));
    border: 1px dashed rgba(56, 189, 248, 0.4);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.5s ease-out;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #38bdf8;
}

.promo-icon {
    width: 42px;
    height: 42px;
    background: rgba(56, 189, 248, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(56, 189, 248, 0.2);
}

.promo-info {
    flex: 1;
}

.promo-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.promo-period {
    display: block;
    font-size: 0.8rem;
    color: #A1A1AA;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.bank-page_section .promo-banner {
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.1), rgba(148, 163, 184, 0.05));
    border-color: rgba(148, 163, 184, 0.4);
}

.bank-page_section .promo-banner::before {
    background: #94a3b8;
}

.bank-page_section .promo-icon {
    background: rgba(148, 163, 184, 0.2);
    color: #94a3b8;
    box-shadow: 0 4px 10px rgba(148, 163, 184, 0.2);
}

.bank-page_section .promo-name {
    font-size: 1rem;
    font-weight: 500;
}

.bank-page_section {
    --notice-bg: rgba(148, 163, 184, 0.05);
    --notice-border: rgba(148, 163, 184, 0.2);
    --notice-icon: #94a3b8;
}

.tw-page_section {
    --notice-bg: rgba(249, 115, 22, 0.05);
    --notice-border: rgba(249, 115, 22, 0.2);
    --notice-icon: #F97316;
}

.tw-page_section .promo-banner {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
    border-color: rgba(249, 115, 22, 0.4);
}

.tw-page_section .promo-banner::before {
    background: #F97316;
}

.tw-page_section .promo-icon {
    background: rgba(249, 115, 22, 0.2);
    color: #F97316;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

.tw-page_section .promo-name {
    font-size: 1rem;
    font-weight: 500;
}

.bank-info-icon-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
}

.bank-info-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E5E7EB 0%, #9CA3AF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(229, 231, 235, 0.2);
}

.bank-acc-details {
    flex: 1;
}

.pp-steps-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: linear-gradient(135deg, #E5E7EB 0%, #9CA3AF 100%);
    color: #111827;
    box-shadow: 0 0 15px rgba(229, 231, 235, 0.4);
}

.step-dot.completed {
    background: #9CA3AF;
    color: white;
}

.step-line {
    flex: 1;
    max-width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 10px;
}

.step-line.completed {
    background: #E5E7EB;
}

.pp-step-content {
    display: none;
    flex-direction: column;
    align-items: center;
    animation: slideUp 0.3s ease-out;
}

.pp-step-content.active {
    display: flex;
}

.pp-step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.pp-step-actions-row .btn-pp-back-wizard,
.pp-step-actions-row .btn-pp-next,
.pp-step-actions-row .btn-bank-submit {
    flex: 1;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin: 0;
    
}

.btn-pp-next {
    background: linear-gradient(135deg, #F3F4F6 0%, #9CA3AF 100%);
    color: #111827;
    border: none;
}

.btn-pp-next:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.pp-step-actions-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 420px;
    margin: 25px auto 0;
}

.btn-pp-back-wizard {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0 20px;
    font-weight: 600;
}

.btn-pp-back-wizard:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.pp-step-notice {
    margin-top: 15px;
    padding: 12px 18px;
    background: var(--notice-bg, rgba(56, 189, 248, 0.05));
    border: 1px solid var(--notice-border, rgba(56, 189, 248, 0.15));
    border-radius: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    width: 100%;
    max-width: 420px;
    transition: all 0.3s ease;
}

.pp-step-notice i {
    color: var(--notice-icon, #38bdf8);
    font-size: 1rem;
    margin-top: 2px;
}

.pp-step-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
}

.btn-pp-text {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-pp-text:hover {
    color: #fff;
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.pp-qr-name-display {
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.pp-amount-box {
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.pp-amount-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.pp-input-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.pp-amount-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(229, 231, 235, 0.3);
    border-radius: 12px;
    padding: 15px;
    padding-right: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #E2E8F0;
    text-align: center;
    transition: all 0.3s ease;
}

.pp-amount-input::-webkit-outer-spin-button,
.pp-amount-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.pp-amount-input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.pp-amount-input:focus {
    outline: none;
    border-color: #E2E8F0;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 15px rgba(226, 232, 240, 0.2);
}

.pp-currency {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.pp-amount-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.btn-gen-qr {
    width: 100%;
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gen-qr:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 88, 12, 0.4);
}

.pp-qr-display-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease-out;
}

.pp-qr-amount-display {
    margin-top: 4px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.pp-qr-amount-display span {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-left: 2px;
}

.btn-pp-back {
    margin-top: 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-pp-back:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.pp-qr-wrapper {
    position: relative;
    background: white;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-qr-wrapper img#promptpay-qr-image {
    width: 220px;
    height: 220px;
    display: block;
}

.pp-qr-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 8px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-qr-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pp-hint-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #F97316;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ==========================================
   FILE: css/pages/home.css
   ========================================== */


.home-slider-section {
    padding: var(--spacing-lg) 0 0 0;
    margin-top: 0;
}

.home-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/5;
    max-height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(30, 41, 59, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slider-wrapper .slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-wrapper .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 16px;
}

.slider-next {
    right: 16px;
}

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
    background: var(--accent-color);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--accent-color);
}

@media (max-width: 768px) {
    .home-slider {
        aspect-ratio: 16/7;
        border-radius: var(--radius-lg);
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 8px;
    }

    .slider-next {
        right: 8px;
    }

    .slider-dots {
        bottom: 10px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dot.active {
        width: 20px;
    }
}

.hero-premium {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -80px;
    
    padding-top: 80px;
    
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    -webkit-mask-image: linear-gradient(to bottom,
            black 0%,
            black 60%,
            transparent 100%);
    mask-image: linear-gradient(to bottom,
            black 0%,
            black 60%,
            transparent 100%);
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(15, 15, 26, 0.2) 0%,
            rgba(15, 15, 26, 0.1) 30%,
            rgba(15, 15, 26, 0.6) 70%,
            #0f0f1a 100%);
}

.hero-center {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--spacing-2xl);
}

.hero-main-logo {
    display: block;
    max-width: 420px;
    width: 100%;
    height: auto;
    margin: 0 auto var(--spacing-lg) auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {

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

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary-gradient);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-family);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(102, 126, 234, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(102, 126, 234, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-family);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.home-features {
    padding: var(--spacing-xl) 0;
    margin-top: 0;
    position: relative;
    z-index: 20;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    
    margin: 0 auto var(--spacing-lg);
}

.feature-card-new {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent-color);
    
    border-radius: 20px;
    padding: 0 28px;
    text-decoration: none;
    height: 120px;
    
    min-height: 120px;
    overflow: hidden;
}

.feature-card-new::before {
    display: none;
}

.fcard-icon {
    position: absolute;
    bottom: -35px;
    right: -20px;
    font-size: 5rem;
    
    z-index: 0;
    
    background: transparent;
    color: var(--accent-color);
    opacity: 0.15;
    transform: rotate(-20deg);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card-new:hover .fcard-icon {
    bottom: 0px;
    
    right: 15px;
    
    opacity: 1;
    
    transform: rotate(0deg) scale(1);
    
    color: var(--accent-color);
    
}

.fcard-icon img,
.fcard-accent {
    display: none;
}

.fcard-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fcard-text {
    text-align: left;
}

.fcard-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: white;
}

.fcard-text p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

.fcard-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    
    padding: 4px 12px;
    border-radius: 6px;
    
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: none;
}

.feature-card-new:hover .fcard-btn {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.fcard-arrow {
    display: none;
}

.server-info-card {
    display: flex;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    
    margin: 0 auto 80px auto;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    backdrop-filter: blur(20px);
    flex-shrink: 0;
}

.anim-delay-200 {
    animation-delay: 0.2s;
}

.server-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.05), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.sinfo-image {
    width: 55%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sinfo-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 41, 59, 0.8) 90%, rgba(15, 23, 42, 0.9));
    z-index: 2;
}

.sinfo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.sinfo-content {
    width: 45%;
    padding: var(--spacing-2xl) var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.sinfo-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
    width: fit-content;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    box-shadow: 0 0 15px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.sinfo-badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px var(--accent-color);
}

.sinfo-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
    line-height: 1.1;
    background: linear-gradient(to right, white, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sinfo-content h2 br {
    display: block;
    margin-bottom: 5px;
}

.sinfo-content>p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    max-width: 90%;
}

.sinfo-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sinfo-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    width: fit-content;
}

.sinfo-features li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.sinfo-features li i {
    color: var(--accent-color);
    font-size: 1rem;
    filter: drop-shadow(0 0 5px color-mix(in srgb, var(--accent-color), transparent 60%));
}

.home-footer {
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

.hfooter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.hfooter-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.hfooter-brand img {
    width: 28px;
    height: 28px;
}

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

.hfooter-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}


/* ==========================================
   FILE: css/pages/shop.css
   ========================================== */

.shop-section {
    padding: var(--spacing-2xl) 0;
}

.shop-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.filter-tabs {
    display: flex;
    gap: var(--spacing-sm);
}

.sidebar-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.sidebar-card .sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.sidebar-card .sidebar-header i {
    color: var(--accent-color);
}

.category-list,
.shop-type-list {
    padding: 12px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 4px;
    border: 1px solid transparent;
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transform: translateX(5px);
}

.category-item.active {
    background: color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 85%) !important;
    
    color: white !important;
    border: 1px solid var(--nav-accent-color, #3b82f6) !important;
    font-weight: 600;
}

.shop-layout.theme-rp .category-item.active {
    background: transparent !important;
    
    border: 1px solid var(--nav-accent-color, #f59e0b) !important;
    
    color: white !important;
}

.category-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.category-item.active .category-icon {
    background: var(--primary-gradient, linear-gradient(135deg, #3b82f6 0%, #2563eb 100%)) !important;
    
    color: white !important;
    box-shadow: var(--shadow-glow, 0 4px 12px rgba(59, 130, 246, 0.25)) !important;
    
}

.shop-layout.theme-rp .category-item.active .category-icon {
    background: var(--primary-gradient, linear-gradient(135deg, #f59e0b 0%, #d97706 100%)) !important;
    
    box-shadow: 0 0 15px var(--accent-color, rgba(245, 158, 11, 0.5)) !important;
    
}

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

.category-count {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    color: var(--text-muted);
}

.category-item.active .category-count {
    background: var(--primary-color);
    color: white;
}

.search-box input {
    width: 100%;
    padding: 12px 20px 12px 42px;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--nav-accent-color, #3b82f6);
    box-shadow: 0 0 0 4px var(--nav-accent-color, #3b82f6)26;
}

.search-box i {
    left: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.banner-tab {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.banner-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.banner-tab.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.products-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

.products-grid-compact .product-card {
    max-width: none;
    
}

.shop-section .shop-header-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(30, 64, 175, 0.1)) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    border-radius: var(--radius-lg);
    padding: 15px 20px;
    margin-bottom: 15px;
    width: 100%;
    overflow: hidden;
}

.shop-section .shop-header-banner::before {
    display: none !important;
}

.shop-warning-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(239, 68, 68, 0.08);
    
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg);
    padding: 12px 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.warning-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ef4444;
    
    font-size: 0.85rem;
    font-weight: 500;
}

.warning-item i {
    font-size: 0.9rem;
    opacity: 0.9;
}

.warning-divider {
    width: 1px;
    height: 16px;
    background: rgba(239, 68, 68, 0.3);
}

.shop-section .shop-header-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient) !important;
    border-radius: var(--radius-md);
    font-size: 1.3rem;
    color: white !important;
    flex-shrink: 0;
}

.shop-header-info {
    flex: 1;
}

.shop-header-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.shop-header-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

#promo-server-name {
    color: #3b82f6;
    font-weight: 600;
}

#promo-server-name.rp {
    color: #f59e0b;
}

.sidebar-card:has(.premium-dropdown) {
    overflow: visible !important;
    z-index: 100;
}

.sidebar-dropdown-wrapper {
    padding: 12px;
    position: relative;
    z-index: 10;
}

.premium-dropdown {
    position: relative;
    width: 100%;
    z-index: 100;
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-header:hover {
    background: rgba(30, 41, 59, 0.9);
    border-color: var(--accent-color);
}

.premium-dropdown.active .dropdown-header {
    border-radius: 14px 14px 0 0;
    border-color: var(--accent-color);
    z-index: 10001;
    
}

.header-icon {
    color: var(--accent-color);
}

.arrow-icon {
    margin-left: auto;
    transition: transform 0.3s;
}

.premium-dropdown.active .arrow-icon {
    transform: rotate(180deg);
}

.dropdown-body {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f172a;
    
    border: 1px solid var(--accent-color);
    border-top: none;
    border-radius: 0 0 14px 14px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.premium-dropdown.active .dropdown-body {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.dropdown-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.dropdown-option.active {
    background: var(--nav-accent-color, #3b82f6)26;
    color: white;
    border-left: 3px solid var(--nav-accent-color, #3b82f6);
}

.shop-layout.theme-rp .dropdown-option.active {
    
    background: linear-gradient(135deg, var(--nav-accent-color, #f59e0b) 0%, color-mix(in srgb, var(--nav-accent-color, #f59e0b), black 20%) 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--nav-accent-color, #f59e0b), transparent 60%) !important;
}

@media (max-width: 640px) {
    .shop-header-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

.shop-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shop-products {
    min-width: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    width: 100%;
}

.loading-spinner,
.no-products {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
    color: var(--text-secondary);
    background: rgba(30, 41, 59, 0.4);
    border-radius: var(--radius-xl);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.loading-spinner i,
.no-products i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.loading-spinner i {
    color: var(--accent-color);
}


/* ==========================================
   FILE: css/pages/gift.css
   ========================================== */


.gift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding-bottom: 40px;
}

.gift-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
}

.btn-gift-reject {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
}

.btn-gift-reject:hover {
    background: rgba(239, 68, 68, 0.2) !important;
    border-color: rgba(239, 68, 68, 0.5) !important;
}

.btn-pink-custom {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4) !important;
    color: white !important;
    transition: all 0.2s ease;
}

.btn-pink-custom:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6) !important;
    transform: translateY(-2px);
}

.stat-expiring {
    color: #3b82f6;
    font-weight: bold;
}

.sidebar-conditions {
    padding: 20px;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

.promo-icon-gift {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.gift-empty-state {
    text-align: center;
    padding: 3rem 0;
    display: none;
}

.gift-sender-pill {
    background: #3b82f6;
    border-color: #1d4ed8;
    color: white;
}

.gift-server-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.gift-expire-text {
    margin-top: 15px;
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
}

.sidebar-icon-blue {
    color: #3b82f6;
}

.sidebar-content {
    padding: 20px;
}

.anim-delay-1 {
    animation-delay: 0.1s;
}


/* ==========================================
   FILE: css/pages/history.css
   ========================================== */

.history-tabs .btn-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    margin: 5px;
    white-space: nowrap;
}

.history-tabs {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .history-tabs {
        justify-content: flex-start;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.history-tabs .btn-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.history-tabs .btn-tab.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border-color: #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.status-pending {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.status-received {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-rejected {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.status-expired {
    background: rgba(107, 114, 128, 0.1);
    color: #9ca3af;
    border: 1px solid rgba(107, 114, 128, 0.2);
}

.table th {
    font-weight: 500;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.9rem;
}

.table td {
    vertical-align: middle;
    color: #e2e8f0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.history-container {
    padding: 4rem 0;
}

.card-body-table {
    padding: 0;
}

.table-full {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

.th-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.th-cell,
.td-cell {
    padding: 1rem;
}

.th-cell {
    background: rgba(255, 255, 255, 0.03);
    font-weight: 600;
}

.td-center {
    text-align: center;
}

.td-right {
    text-align: right;
}

.text-orange {
    color: #f59e0b;
}

.text-gray {
    color: #6b7280;
}

.font-weight-600 {
    font-weight: 600;
}

.white-space-nowrap {
    white-space: nowrap;
}

.mr-1 {
    margin-right: 0.25rem;
}

.badge-point {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.badge-rp {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
}

.badge-gift-sent {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.badge-gift-received {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.gift-avatar {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-blue {
    color: #3b82f6;
}

.text-pink {
    color: #ec4899;
}

.text-success {
    color: #10b981;
}

.text-danger {
    color: #ef4444;
}

.text-sm {
    font-size: 0.85rem;
}

code.text-primary {
    color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

code.text-orange {
    color: #f59e0b !important;
    background: rgba(245, 158, 11, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.method-badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-tw {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-bank {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

:root {
    --ph-tooltip-bg: #1e293b;
    --ph-tooltip-text: #f8fafc;
    --ph-tooltip-border: #334155;
    --ph-tooltip-label: #94a3b8;
    --ph-tooltip-sub: #64748b;
}

.ph-tooltip-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: help;
}

.ph-tooltip-container:hover {
    z-index: 100;
}

.ph-badge-sale {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    white-space: nowrap;
}

.ph-custom-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--ph-tooltip-bg);
    color: var(--ph-tooltip-text);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 50;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    text-align: left;
    pointer-events: none;
    min-width: 170px;
    border: 1px solid var(--ph-tooltip-border);
}

.ph-tooltip-title {
    color: var(--ph-tooltip-sub);
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ph-tooltip-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.ph-tooltip-label {
    color: var(--ph-tooltip-label);
}

.ph-tooltip-value {
    color: var(--ph-tooltip-text);
    font-weight: 600;
}

.ph-tooltip-value.strikethrough {
    text-decoration: line-through;
    color: var(--ph-tooltip-sub);
    font-weight: 400;
}

.text-red {
    color: #ef4444 !important;
}

.ph-custom-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: var(--ph-tooltip-bg) transparent transparent transparent;
}

.ph-tooltip-container:hover .ph-custom-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.ph-tooltip-container.ph-tooltip-bottom .ph-custom-tooltip {
    bottom: auto;
    top: 100%;
    margin-bottom: 0;
    margin-top: 10px;
    transform: translateX(-50%) translateY(-5px);
}

.ph-tooltip-container.ph-tooltip-bottom .ph-custom-tooltip::after {
    top: auto;
    bottom: 100%;
    border-color: transparent transparent var(--ph-tooltip-bg) transparent;
}

.ph-tooltip-container.ph-tooltip-bottom:hover .ph-custom-tooltip {
    transform: translateX(-50%) translateY(0);
}


/* ==========================================
   FILE: css/pages/ranking.css
   ========================================== */

.ranking-section {
    padding: 60px 0;
    min-height: 80vh;
}

.ranking-header {
    text-align: center;
    margin-bottom: 50px;
}

.ranking-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.ranking-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
}

.podium-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 80px;
    padding-top: 40px;
    
}

.podium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.podium-item:hover {
    transform: translateY(-10px);
}

.podium-rank-1 {
    order: 2;
    
    z-index: 10;
}

.podium-rank-2 {
    order: 1;
    
}

.podium-rank-3 {
    order: 3;
    
}

.podium-avatar-box {
    position: relative;
    margin-bottom: -15px;
    
    z-index: 2;
}

.podium-avatar {
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.podium-item:hover .podium-avatar {
    transform: scale(1.05) translateY(-5px);
}

.podium-rank-1 .podium-avatar {
    width: auto;
    height: 320px;
    border: none;
}

.podium-rank-2 .podium-avatar {
    width: auto;
    height: 260px;
    border: none;
    filter: grayscale(0.2) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
}

.podium-rank-3 .podium-avatar {
    width: auto;
    height: 260px;
    border: none;
    filter: sepia(0.3) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
}

.crown-icon {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    animation: float 3s ease-in-out infinite;
}

.podium-base {
    width: 100%;
    text-align: center;
    padding: 20px 15px;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--card-bg-start, #1e293b) 0%, var(--card-bg-end, #0f172a) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 180px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.podium-item:hover .podium-base {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.podium-rank-1 .podium-base {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.15) 0%, var(--card-bg-end, #0f172a) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-bottom: 4px solid #FFD700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
    min-width: 220px;
    padding: 30px 20px;
    margin-bottom: 20px;
}

.podium-rank-2 .podium-base {
    background: linear-gradient(180deg, rgba(192, 192, 192, 0.1) 0%, var(--card-bg-end, #0f172a) 100%);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-bottom: 4px solid #C0C0C0;
}

.podium-rank-3 .podium-base {
    background: linear-gradient(180deg, rgba(205, 127, 50, 0.1) 0%, var(--card-bg-end, #0f172a) 100%);
    border: 1px solid rgba(205, 127, 50, 0.2);
    border-bottom: 4px solid #CD7F32;
}

.podium-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.podium-rank-1 .podium-name {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFF8E7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.podium-amount {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.3);
}

.podium-rank-1 .podium-amount {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.podium-rank-2 .podium-amount {
    color: #C0C0C0;
    background: rgba(192, 192, 192, 0.1);
}

.podium-rank-3 .podium-amount {
    color: #CD7F32;
    background: rgba(205, 127, 50, 0.1);
}

.podium-rank-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: #0f172a;
    border-bottom-right-radius: 12px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    margin: 0;
    transform: none;
    opacity: 1;
    z-index: 10;
}

.podium-rank-1 .podium-rank-label {
    background: #FFD700;
}

.podium-rank-2 .podium-rank-label {
    background: #C0C0C0;
}

.podium-rank-3 .podium-rank-label {
    background: #CD7F32;
}

.monthly-list-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(165deg, var(--card-bg-start, #1e293b) 0%, var(--card-bg-end, #0f172a) 100%);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.monthly-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
}

.monthly-header i {
    font-size: 2rem;
    color: var(--nav-accent-color, var(--accent-color, #38bdf8));
    background: color-mix(in srgb, var(--nav-accent-color, var(--accent-color, #38bdf8)), transparent 90%);
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 12px;
}

.monthly-header h2 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--text-primary, #fff);
}

.monthly-header p {
    margin: 0;
    color: var(--text-secondary, #94a3b8);
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ranking-row {
    display: flex;
    align-items: center;
    background: color-mix(in srgb, var(--card-bg-start, #1e293b), transparent 40%);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.ranking-row:hover {
    background: color-mix(in srgb, var(--card-bg-start, #1e293b), transparent 20%);
    transform: translateX(5px);
    border-color: color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 70%);
}

.rank-num {
    font-size: 1.5rem;
    font-weight: 800;
    width: 50px;
    color: var(--text-muted, #64748b);
    text-align: center;
}

.rank-1 .rank-num {
    color: #FFD700;
}

.rank-2 .rank-num {
    color: #C0C0C0;
}

.rank-3 .rank-num {
    color: #CD7F32;
}

.rank-user {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
}

.rank-avatar {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: var(--bg-dark, #0f172a);
}

.rank-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary, #fff);
}

.rank-amount {
    text-align: right;
}

.amount-val {
    font-weight: 700;
    color: var(--nav-accent-color, var(--accent-color, #38bdf8));
    font-size: 1.2rem;
}

.amount-label {
    font-size: 0.8rem;
    color: var(--text-muted, #64748b);
}

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

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

@media (max-width: 768px) {
    .podium-container {
        flex-direction: column;
        align-items: center;
    }

    .podium-rank-2,
    .podium-rank-3 {
        order: 4;
        
    }
}


/* ==========================================
   FILE: css/pages/rules.css
   ========================================== */

.rules-section {
    padding: 60px 0 100px;
    min-height: 80vh;
}

.rules-header {
    text-align: center;
    margin-bottom: 50px;
}

.rules-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    
    background: var(--primary-gradient, linear-gradient(135deg, #38bdf8 0%, #2563eb 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: 1px;
}

.rules-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
}

.rules-card {
    
    background: linear-gradient(165deg, var(--card-bg-start, #1e293b) 0%, var(--card-bg-end, #0f172a) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.rules-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 95%), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.rules-card>* {
    position: relative;
    z-index: 1;
}

.rules-category {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
}

.rules-category:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #f8fafc;
    font-size: 1.5rem;
    font-weight: 700;
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-icon.chat {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.category-icon.gameplay {
    color: #f87171;
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.category-icon.account {
    color: #34d399;
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.category-icon.general {
    
    color: var(--nav-accent-color, #f59e0b);
    background: color-mix(in srgb, var(--nav-accent-color, #f59e0b), transparent 85%);
    border-color: color-mix(in srgb, var(--nav-accent-color, #f59e0b), transparent 70%);
    box-shadow: 0 0 15px color-mix(in srgb, var(--nav-accent-color, #f59e0b), transparent 80%);
}

.rule-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rule-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.rule-item:hover {
    background: color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 95%);
    transform: translateX(5px);
    border-color: color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 80%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rule-number {
    font-weight: 800;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.3);
    min-width: 30px;
    text-align: right;
    line-height: 1.4;
    transition: color 0.3s;
}

.rule-item:hover .rule-number {
    color: var(--nav-accent-color, #3b82f6);
}

.rule-content h4 {
    color: #e2e8f0;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.rule-content p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.rules-loading {
    text-align: center;
    padding: 80px 0;
    color: #64748b;
}

.rules-loading-icon {
    font-size: 3rem;
    color: var(--nav-accent-color, #3b82f6);
    margin-bottom: 20px;
    animation: fa-spin 2s linear infinite;
}

.rules-error {
    text-align: center;
    padding: 60px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 20px;
    color: #fca5a5;
    max-width: 500px;
    margin: 60px auto;
}

.rules-error i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .rules-card {
        padding: 25px;
    }

    .rules-title {
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.25rem;
    }

    .rule-item {
        flex-direction: column;
        gap: 10px;
    }

    .rule-number {
        text-align: left;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.5);
    }
}


/* ==========================================
   FILE: css/pages/promotions.css
   ========================================== */
.promo-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.promo-divider {
    display: flex;
    align-items: center;
    margin: 40px 0 20px 0;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.8;
}

.promo-divider::before,
.promo-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 70%), transparent);
    margin: 0 20px;
}

.text-gradient-blue {
    background: var(--primary-gradient, linear-gradient(135deg, #38bdf8 0%, #2563eb 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.promo-header {
    text-align: center;
    margin-bottom: 50px;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.promo-subtitle {
    color: #9ca3af;
    font-size: 1.1rem;
}

.text-primary {
    color: var(--nav-accent-color, #3b82f6) !important;
}

.promo-card {
    display: flex;
    flex-direction: row;
    background: linear-gradient(145deg, var(--card-bg-start, #1e293b), var(--card-bg-end, #0f172a));
    border: 1px solid rgba(255, 255, 255, 0.05);
    
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 200px;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.5);
    border-color: var(--nav-accent-color, #3b82f6);
}

.promo-card.is-upcoming,
.promo-card.is-expired {
    filter: grayscale(0.8) opacity(0.8);
    border-color: rgba(255, 255, 255, 0.05);
}

.promo-card.is-expired {
    filter: sepia(0.3) grayscale(0.7) opacity(0.7);
}

.promo-card.is-upcoming .promo-image::after,
.promo-card.is-expired .promo-image::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 2.5rem;
    font-weight: 900;
    white-space: nowrap;
    letter-spacing: 5px;
    z-index: 10;
    border: 5px solid rgba(255, 255, 255, 0.05);
    padding: 10px 40px;
    pointer-events: none;
}

.promo-card.is-upcoming .promo-image::after {
    content: "COMING SOON";
    color: rgba(255, 255, 255, 0.1);
}

.promo-card.is-expired .promo-image::after {
    content: "EXPIRED";
    color: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.1);
}

.promo-card.is-upcoming .btn-view,
.promo-card.is-expired .btn-view {
    pointer-events: auto !important;
    background: color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 80%) !important;
    color: var(--nav-accent-color, #3b82f6) !important;
    border: 1px solid color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 70%) !important;
    cursor: pointer !important;
    opacity: 1 !important;
}

.promo-card.is-upcoming .btn-claim,
.promo-card.is-expired .btn-claim {
    background: #334155 !important;
    color: #64748b !important;
    border: none !important;
    box-shadow: none !important;
    cursor: not-allowed;
    pointer-events: none;
}

.promo-image {
    width: 300px;
    min-height: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

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

.promo-card:hover .promo-image img {
    transform: scale(1.05);
}

.promo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-timer-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 80%);
    padding: 4px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-timer-label {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
}

.promo-timer-value {
    color: var(--nav-accent-color, #3b82f6);
    font-size: 0.85rem;
    font-weight: 800;
}

.promo-details {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.promo-info {
    flex: none;
    margin-bottom: 15px;
}

.promo-name {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
    line-height: 1.2;
}

.promo-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.promo-footer {
    width: 100%;
    margin-top: auto;
}

.promo-progress-wrap {
    margin-bottom: 15px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.progress-track {
    width: 100%;
    height: 10px;
    background: #334155;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gradient, linear-gradient(90deg, #3b82f6, #60a5fa));
    border-radius: 6px;
    transition: width 1s ease-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0.15) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.15) 75%,
            transparent 75%,
            transparent);
    background-size: 1rem 1rem;
    animation: progress-stripe 1s linear infinite;
}

@keyframes progress-stripe {
    from {
        background-position: 1rem 0;
    }

    to {
        background-position: 0 0;
    }
}

.promo-reward-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #e2e8f0;
}

.promo-actions {
    display: flex;
    gap: 10px;
}

.btn-claim {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-view {
    width: 50px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.1rem;
}

.btn-view:hover {
    background: color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 90%);
    color: var(--nav-accent-color, #3b82f6);
    border-color: var(--nav-accent-color, #3b82f6);
    transform: translateY(-2px);
}

.btn-claim:not(:disabled) {
    background: var(--primary-gradient, linear-gradient(135deg, #3b82f6 0%, #2563eb 100%));
    color: white;
    box-shadow: var(--shadow-glow, 0 4px 6px -1px rgba(59, 130, 246, 0.3));
}

.btn-claim:not(:disabled):hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-hover, 0 10px 15px -3px rgba(59, 130, 246, 0.4));
}

.btn-claim:disabled {
    background: #475569;
    color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.7;
}

@media (max-width: 992px) {
    .promo-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .promo-footer {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .promo-card {
        flex-direction: column;
    }

    .promo-image {
        width: 100%;
        height: 160px;
    }

    .promo-content {
        padding: 15px;
    }

    .promo-timer-label {
        display: none;
    }

    .promo-timer-badge {
        top: 15px;
        right: 15px;
    }
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--card-bg-start, #1e293b) 0%, var(--card-bg-end, #0f172a) 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    border: 1px solid var(--card-bg-start, #1e293b);
    overflow: hidden;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.6);
}

.no-image-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(var(--nav-accent-color, #60a5fa) 0.5px, transparent 0.5px);
    background-size: 15px 15px;
}

.no-image-placeholder i {
    font-size: 3.5rem;
    margin-bottom: 12px;
    background: var(--primary-gradient, linear-gradient(135deg, #94a3b8 0%, #334155 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    opacity: 0.8;
    z-index: 1;
}

.no-image-placeholder span {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    background: linear-gradient(to bottom, var(--nav-accent-color, #94a3b8), color-mix(in srgb, var(--nav-accent-color, #475569), black 30%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.6;
    z-index: 1;
}

.promo-empty-state {
    max-width: 600px;
    margin: 60px auto;
    padding: 60px 40px;
    background: linear-gradient(145deg, color-mix(in srgb, var(--card-bg-start, #1e293b), transparent 60%), color-mix(in srgb, var(--card-bg-end, #0f172a), transparent 40%));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 0 30px color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 95%);
    position: relative;
    overflow: hidden;
}

.promo-empty-state::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 97%) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.promo-empty-icon-wrap {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 90%), color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 95%));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 1px solid color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 80%);
    box-shadow: 0 15px 30px -10px color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 80%);
    position: relative;
    z-index: 1;
}

.promo-empty-icon-wrap i {
    font-size: 3rem;
    background: var(--primary-gradient, linear-gradient(135deg, #60a5fa 0%, #2563eb 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.promo-empty-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.promo-empty-desc {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promo-empty-state-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 90%);
    border-radius: 50%;
    z-index: 0;
}

.promo-empty-state-decoration.d1 {
    top: -100px;
    right: -100px;
}

.promo-empty-state-decoration.d2 {
    bottom: -80px;
    left: -80px;
    width: 150px;
    height: 150px;
}

@media (max-width: 768px) {
    .promo-empty-state {
        margin: 40px 20px;
        padding: 40px 24px;
    }

    .promo-empty-title {
        font-size: 1.5rem;
    }
}

.text-theme-accent {
    color: var(--nav-accent-color, #3b82f6) !important;
}

.promo-modal-info {
    margin-top: 1rem;
    padding: 0.625rem;
    border-radius: 0.5rem;
    background: color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 80%);
    color: var(--nav-accent-color, #3b82f6);
    font-size: 15px;
    line-height: 1.4;
}

body.swal2-shown .swal2-container .swal2-popup.swal2-dynamic-popup {
    background: linear-gradient(145deg, var(--card-bg-start, #1e293b), var(--card-bg-end, #0f172a)) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 24px !important;
    padding: 2rem !important;
}

body.swal2-shown .swal2-container .swal2-actions.swal2-dynamic-actions {
    display: flex !important;
    gap: 15px !important;
    justify-content: center !important;
    margin-top: 1.5rem !important;
    width: 100% !important;
}

body.swal2-shown .swal2-container .swal2-actions button.swal2-dynamic-confirm,
body.swal2-shown .swal2-container .swal2-actions button.swal2-confirm {
    background: linear-gradient(135deg, var(--nav-accent-color, #3b82f6) 0%, color-mix(in srgb, var(--nav-accent-color, #3b82f6), black 20%) 100%) !important;
    background-color: var(--nav-accent-color, #3b82f6) !important;
    
    color: white !important;
    box-shadow: 0 4px 6px -1px color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 50%) !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 48px !important;
    outline: none !important;
}

body.swal2-shown .swal2-container .swal2-actions button.swal2-dynamic-confirm:hover,
body.swal2-shown .swal2-container .swal2-actions button.swal2-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 15px -3px color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 40%) !important;
    opacity: 0.95 !important;
    background-image: linear-gradient(135deg, var(--nav-accent-color, #3b82f6) 0%, color-mix(in srgb, var(--nav-accent-color, #3b82f6), black 20%) 100%) !important;
}

body.swal2-shown .swal2-container .swal2-actions button.swal2-dynamic-cancel {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #94a3b8 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 48px !important;
    outline: none !important;
}

body.swal2-shown .swal2-container .swal2-actions button.swal2-dynamic-cancel:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

body.swal2-shown .swal2-container .swal2-title {
    color: #fff !important;
    font-size: 1.8rem !important;
}

body.swal2-shown .swal2-container .swal2-html-container {
    color: #cbd5e1 !important;
    font-size: 1.1rem !important;
}

body.swal2-shown .swal2-container .swal2-icon {
    border-color: var(--nav-accent-color, #3b82f6) !important;
    color: var(--nav-accent-color, #3b82f6) !important;
}


/* ==========================================
   FILE: css/pages/topup.css
   ========================================== */


.topup-section {
    padding: 120px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topup-main-card {
    background: linear-gradient(145deg, var(--card-bg-start, rgba(30, 41, 59, 0.9)), var(--card-bg-end, rgba(15, 23, 42, 0.95)));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    backdrop-filter: blur(20px);
}

.topup-header-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.header-icon-circle {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.header-icon-circle::before,
.header-icon-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid color-mix(in srgb, var(--accent-color, #8b5cf6), transparent 70%);
    animation: auraExpand 2.5s ease-out infinite;
}

.header-icon-circle::before {
    width: 100%;
    height: 100%;
}

.header-icon-circle::after {
    width: 100%;
    height: 100%;
    animation-delay: 1.25s;
}

@keyframes auraExpand {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
        border-color: color-mix(in srgb, var(--accent-color, #8b5cf6), transparent 50%);
    }

    100% {
        width: 180%;
        height: 180%;
        opacity: 0;
        border-color: color-mix(in srgb, var(--accent-color, #8b5cf6), transparent 100%);
    }
}

.topup-title-section {
    text-align: center;
    margin-bottom: 48px;
}

.topup-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

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

.payment-cards-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.payment-option-card {
    position: relative;
    background: linear-gradient(135deg, var(--card-bg-start, rgba(30, 41, 59, 0.5)), var(--card-bg-end, rgba(15, 23, 42, 0.5)));
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    
    flex: 1 1 280px;
    max-width: 340px;
    min-width: 250px;
}

.payment-option-card:hover {
    transform: translateY(-5px);
}

.payment-option-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(40px);
    pointer-events: none;
    transition: all 0.4s ease;
}

.payment-option-card.truemoney .payment-option-glow {
    background: #f97316;
}

.payment-option-card.truemoney:hover {
    border-color: #f97316;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(30, 41, 59, 0.8));
}

.payment-option-card.truemoney .payment-option-icon {
    background: white;
    color: #f97316;
}

.payment-option-card.bank .payment-option-glow {
    background: #38bdf8;
}

.payment-option-card.bank:hover {
    border-color: #38bdf8;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(30, 41, 59, 0.8));
}

.payment-option-card.bank .payment-option-icon {
    background: white;
    color: #38bdf8;
}

.payment-option-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.payment-option-card:hover .payment-option-icon {
    transform: scale(1.1);
}

.payment-option-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.payment-option-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .topup-main-title {
        font-size: 2rem;
    }

    .payment-cards-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .header-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

.topup-maintenance-card {
    text-align: center;
    padding: 20px 0;
    width: 100%;
    animation: fadeIn 0.5s ease-out;
}

.maintenance-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 10rem;
    color: var(--accent-color, #f59e0b);
    position: relative;
}

.maintenance-icon-box i {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.m-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.m-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.m-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.m-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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


/* ==========================================
   FILE: css/pages/topup_bank.css
   ========================================== */

.bank-page_section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
    background: transparent;
}

.bank-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 550px;
}

.bank-card {
    background: radial-gradient(circle at top, rgba(148, 163, 184, 0.15), transparent 70%), linear-gradient(180deg, var(--card-bg-start, #1e293b), var(--card-bg-end, #0f172a));
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid #94a3b8;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.bank-header {
    background: transparent;
    padding: 40px 30px;
    text-align: center;
}

.bank-logo-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.bank-logo-glow {
    position: absolute;
    inset: 0;
    background: #38bdf8;
    opacity: 0.2;
    filter: blur(25px);
    border-radius: 50%;
}

.bank-logo-box {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #94a3b8, #64748b);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bank-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.bank-subtitle {
    font-size: 0.9rem;
    color: #A1A1AA;
    margin-bottom: 20px;
}

.bank-page_section .bank-rates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.bank-page_section .stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.bank-page_section .stat-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(148, 163, 184, 0.4);
}

.bank-page_section .stat-label {
    font-size: 0.75rem;
    color: #A1A1AA;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.bank-page_section .stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #E4E4E7;
    font-family: 'Kanit', sans-serif;
}

.bank-content-body {
    padding: 30px;
}

.bank-acc-info {
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.bank-acc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.bank-acc-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
    background: white;
    padding: 6px;
}

.bank-acc-detail-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 14px 16px;
}

.bank-acc-no {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.btn-copy {
    background: #94a3b8;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-copy:hover {
    background: #64748b;
}

.slip-upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.2);
}

.slip-upload-area:hover {
    border-color: #94a3b8;
    background: rgba(148, 163, 184, 0.05);
}

.slip-preview-img {
    display: block;
    margin: 0 auto 12px;
    max-width: 200px;
    max-height: 200px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.upload-icon-circle {
    width: 64px;
    height: 64px;
    background: rgba(148, 163, 184, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.btn-bank-submit {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #94a3b8, #64748b);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(148, 163, 184, 0.3);
    transition: transform 0.2s;
    margin-bottom: 30px;
}

.bank-how-to {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.how-to-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.step-num {
    width: 24px;
    height: 24px;
    background: rgba(148, 163, 184, 0.2);
    border-radius: 50%;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine:active {
    transform: scale(0.98);
}

.btn-shine:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.system-offline {
    opacity: 0.5;
    pointer-events: none;
}

.system-offline-badge {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.bank-logo-icon {
    font-size: 3rem;
    color: white;
}

.stat-unit-bank {
    font-size: 0.8rem;
    color: #94a3b8;
}

.bank-acc-label {
    font-size: 0.85rem;
    color: #A1A1AA;
}

.bank-acc-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.bank-acc-no-label {
    font-size: 0.75rem;
    color: #A1A1AA;
    margin-bottom: 2px;
}

.bank-upload-section {
    margin-bottom: 20px;
}

.bank-form-label {
    display: block;
    font-size: 0.9rem;
    color: #D4D4D8;
    margin-bottom: 10px;
    font-weight: 500;
}

.bank-form-label i {
    margin-right: 6px;
    color: #94a3b8;
}

.file-input-hidden {
    display: none;
}

.slip-preview-container {
    display: none;
}

.slip-success-text {
    font-size: 0.85rem;
    color: #10B981;
    font-weight: 600;
}

.upload-icon {
    font-size: 1.5rem;
    color: #94a3b8;
}

.upload-text {
    font-size: 0.95rem;
    color: #D4D4D8;
    margin-bottom: 8px;
}

.upload-hint {
    font-size: 0.8rem;
    color: #71717A;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-text {
    font-size: 0.85rem;
    color: #A1A1AA;
}

.trust-badge {
    margin-top: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trust-icon {
    color: #10B981;
    font-size: 0.9rem;
}

.trust-text {
    font-size: 0.8rem;
    color: #52525B;
}

.how-to-title i {
    color: #94a3b8;
}


/* ==========================================
   FILE: css/pages/topup_truewallet.css
   ========================================== */

.tw-page_section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
    background: transparent;
}

.tw-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 550px;
}

.tw-card {
    background: radial-gradient(circle at top, rgba(249, 115, 22, 0.15), transparent 70%), linear-gradient(180deg, var(--card-bg-start, #1e293b), var(--card-bg-end, #0f172a));
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid #F97316;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.tw-header {
    background: transparent;
    padding: 40px 30px;
    text-align: center;
}

.tw-logo-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.tw-logo-glow {
    position: absolute;
    inset: 0;
    background: #FF7E00;
    opacity: 0.2;
    filter: blur(25px);
    border-radius: 50%;
}

.tw-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 10;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tw-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.tw-page_section .stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.tw-page_section .stat-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(249, 115, 22, 0.4);
}

.tw-page_section .stat-label {
    font-size: 0.75rem;
    color: #A1A1AA;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.tw-page_section .stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #E4E4E7;
    font-family: 'Kanit', sans-serif;
}

.tw-content-body {
    padding: 30px;
}

.tw-input-wrapper {
    position: relative;
}

.tw-input {
    width: 100%;
    height: 52px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0 50px 0 16px;
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s;
}

.tw-input:focus {
    border-color: #F97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.tw-paste-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #A1A1AA;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.tw-paste-btn:hover {
    background: #27272A;
    color: white;
}

.btn-tw-submit {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #F97316, #EA580C);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
    transition: transform 0.2s;
    margin-bottom: 30px;
}

.tw-how-to {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tw-step-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tw-step-num {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine:active {
    transform: scale(0.98);
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.tw-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.stat-unit {
    font-size: 0.8rem;
    color: #F97316;
}

.tw-form-label {
    display: block;
    font-size: 0.9rem;
    color: #D4D4D8;
    margin-bottom: 10px;
    font-weight: 500;
}

.tw-input-section {
    margin-bottom: 20px;
}

.tw-howto-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tw-steps-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tw-step-text {
    font-size: 0.85rem;
    color: #A1A1AA;
}

.tw-trust-badge {
    margin-top: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tw-trust-icon {
    color: #10B981;
    font-size: 0.9rem;
}

.tw-trust-text {
    font-size: 0.8rem;
    color: #52525B;
}


/* ==========================================
   FILE: css/pages/download.css
   ========================================== */

.download-section {
    padding: 60px 0 100px;
}

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

.rules-header {
    text-align: center;
    margin-bottom: 50px;
}

.rules-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    display: inline-block;
}

.rules-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
}

.text-gradient-blue {
    background: var(--primary-gradient, linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.mr-3 {
    margin-right: 1rem;
}

.download-group-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0 25px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    padding-left: 10px;
    border-left: 4px solid var(--nav-accent-color, #3b82f6);
}

.download-list {
    display: grid;
    gap: 16px;
}

.download-list-item {
    
    background: color-mix(in srgb, var(--nav-accent-color, #3b82f6), var(--card-bg-start, #1e293b) 95%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.download-list-item:hover {
    
    background: color-mix(in srgb, var(--nav-accent-color, #3b82f6), rgba(30, 41, 59, 0.4) 85%);
    border-color: color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 60%);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.download-list-item.recommended {
    
    background: linear-gradient(135deg, color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 85%), color-mix(in srgb, var(--card-bg-end, #0f172a), black 40%));
    border: 1px solid color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 60%);
    box-shadow: 0 10px 40px color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 88%);
}

.rec-badge-inline {
    background: var(--primary-gradient);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-glow, 0 4px 10px rgba(59, 130, 246, 0.3));
    display: inline-block;
}

.download-list-item.recommended .d-list-icon {
    background: var(--primary-gradient, linear-gradient(135deg, #3b82f6 0%, #2563eb 100%));
    color: white;
    border: none;
    box-shadow: var(--shadow-glow, 0 0 20px rgba(59, 130, 246, 0.4));
}

.d-list-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.download-list-item:hover .d-list-icon {
    background: color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 90%);
    border-color: var(--nav-accent-color, #3b82f6);
    color: var(--nav-accent-color, #3b82f6);
}

.download-list-item.recommended .d-list-icon {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.d-list-content {
    flex: 1;
}

.d-list-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.d-list-title h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 4px;
}

.d-list-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.d-list-action {
    display: flex;
    align-items: center;
    gap: 24px;
}

.d-list-size {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.d-list-size .size-val {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.d-list-size .size-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-provider {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.btn-provider:hover {
    background: var(--primary-gradient, linear-gradient(135deg, #3b82f6 0%, #2563eb 100%));
    border-color: transparent;
    opacity: 0.9;
    box-shadow: var(--shadow-glow, 0 0 15px rgba(59, 130, 246, 0.4));
    
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.download-card {
    
    background: color-mix(in srgb, var(--nav-accent-color, #3b82f6), var(--card-bg-start, #1e293b) 95%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.download-card:hover {
    
    background: color-mix(in srgb, var(--nav-accent-color, #3b82f6), rgba(30, 41, 59, 0.6) 85%);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.d-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.d-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--nav-accent-color, #3b82f6);
    
}

.d-card-title h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.d-card-title span {
    font-size: 0.8rem;
    color: #64748b;
}

.d-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.d-card-body p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-download-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: white !important;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    margin-top: auto;
}

.btn-download-secondary:hover {
    background: color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 85%);
    
    border-color: var(--nav-accent-color, #3b82f6);
    
    box-shadow: 0 4px 12px color-mix(in srgb, var(--nav-accent-color, #3b82f6), transparent 80%);
}

@media (max-width: 768px) {
    .download-list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 24px;
    }

    .d-list-action {
        width: 100%;
        justify-content: space-between;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}


/* ==========================================
   FILE: css/utilities/helpers.css
   ========================================== */


.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.ml-auto {
    margin-left: auto !important;
}

.mr-auto {
    margin-right: auto !important;
}

.mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx-3 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-3 {
    margin-left: 1rem;
}

.mr-1 {
    margin-right: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 1rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 1rem;
}

.p-4 {
    padding: 1.5rem;
}

.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-white {
    color: white !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-muted {
    color: #94a3b8 !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-danger {
    color: var(--error-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

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

.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.hidden {
    display: none !important;
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: inline-flex !important;
    }
}

@media (max-width: 991.98px) {
    .d-none-lg {
        display: block !important;
    }

    
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.w-full {
    width: 100%;
}

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

.gap-lg {
    gap: var(--spacing-lg);
}

.app-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-flow: row nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}

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

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark, #0f0f1a);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 3rem;
    height: 3rem;
    border-width: 4px;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    margin-top: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #94a3b8;
}

#main-content {
    min-height: 50vh;
    padding-top: 20px;
    position: relative;
}

.fe-confirm-content {
    background: #1e293b;
    width: 400px;
    max-width: 90%;
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.fe-confirm-icon {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: pulse-blue 2s infinite;
}

.fe-confirm-icon i {
    font-size: 1.8rem;
    color: #3b82f6;
    animation: wobble-subtle 3s infinite;
}

.fe-confirm-title {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.fe-confirm-message {
    margin: 0 0 25px 0;
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
}

.fe-confirm-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.fe-btn-confirm {
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.fe-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.fe-btn-cancel {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #334155;
    background: #0f172a;
    color: #cbd5e1;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.fe-btn-cancel:hover {
    background: #1e293b;
    border-color: #475569;
}

.site-footer {
    background: #0f172a;
    padding: 25px 0 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    font-size: 0.70rem;
    font-weight: 600;
    color: #f8fafc;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    margin-bottom: 12px;
}

.footer-credit {
    font-size: 0.75rem;
    color: #475569;
    font-weight: 500;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.gap-5 {
    gap: 3rem;
}

.form-label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.password-toggle-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}

.password-toggle-btn:hover {
    color: #cbd5e1;
}


/* ==========================================
   FILE: css/utilities/responsive.css
   ========================================== */


.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1.25rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    padding: var(--spacing-lg);
    transform: translateX(-100%);
    transition: var(--transition-normal);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--bg-glass);
    color: var(--text-primary);
}

.mobile-nav-link i {
    width: 24px;
    text-align: center;
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .navbar-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .user-balance {
        display: none;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .shop-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-tabs {
        overflow-x: auto;
        padding-bottom: var(--spacing-sm);
    }

    .search-box {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .container {
        padding: 0 var(--spacing-md);
    }
}

@media (min-width: 1921px) {
    html {
        font-size: 18px;
        
    }

    .container {
        max-width: 90%;
        
        width: 1600px;
        
    }
}

@media (min-width: 2560px) {

    
    html {
        font-size: 20px;
        
    }

    .container {
        width: 2000px;
        max-width: 90%;
    }

    
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 3840px) {

    
    html {
        font-size: 26px;
        
    }

    .container {
        width: 3200px;
    }
}


/* ==========================================
   FILE: css/animations/all.css
   ========================================== */

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spinner-border {
    display: inline-block;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes pulse-pink {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

@keyframes wobble-subtle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

.animate__zoomIn {
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ==========================================
   FILE: css/tablet.css (Wrapped in Media Query)
   ========================================== */
@media (min-width: 768px) and (max-width: 1024px) {

@media screen and (min-width: 768px) and (max-width: 1024px) {

    
    
    .navbar-expand-lg .navbar-toggler {
        display: block !important;
        border: none !important;
        outline: none !important;
        padding: 5px;
        background: transparent !important;
        box-shadow: none !important;
        cursor: pointer !important;
    }

    .navbar-expand-lg .navbar-collapse {
        display: none !important;
        
    }

    
    .navbar-expand-lg .navbar-collapse.show {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        
        height: 100vh;
        margin: 0;
        padding: 90px 0 20px 0;
        background: var(--card-bg-start, rgba(15, 23, 42, 0.95));
        
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 9998;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        overflow-y: auto;
        flex-direction: column;
        animation: sidebarSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: column !important;
        width: 100% !important;
        align-items: flex-start !important;
    }

    .navbar-expand-lg .nav-item {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-expand-lg .nav-link {
        padding: 15px 25px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        width: 100%;
        text-align: left;
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
    }

    .navbar-expand-lg .nav-link i {
        margin-right: 15px;
        width: 25px;
        text-align: center;
        color: var(--nav-accent-color, #3b82f6);
    }

    
    .mobile-menu-footer {
        display: block !important;
        margin-top: auto !important;
        width: 100%;
        padding: 0 20px 20px 20px;
    }

    .menu-divider {
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        margin-bottom: 15px;
        width: 100%;
    }

    .btn-close-menu {
        width: 100%;
        padding: 12px;
        background: rgba(220, 38, 38, 0.15);
        
        color: #fca5a5;
        
        border: 1px solid rgba(220, 38, 38, 0.3);
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.2s;
        text-align: center;
        display: block;
    }

    .btn-close-menu:hover {
        background: rgba(220, 38, 38, 0.3);
        color: white;
        cursor: pointer;
    }

    
    .container {
        padding-left: 30px !important;
        padding-right: 30px !important;
        max-width: 100% !important;
    }

    
    .product-grid,
    .grid-container {
        grid-template-columns: repeat(3, 1fr) !important;
        
        gap: 15px !important;
    }

    
    .hero-premium {
        min-height: 50vh !important;
        padding-top: 100px !important;
    }

    .hero-main-logo {
        max-width: 60% !important;
    }

    
    h1,
    .page-title {
        font-size: 2.2rem !important;
    }

    h2,
    .section-title {
        font-size: 1.8rem !important;
    }

    
    #user-actions .nav-dropdown {
        right: 0 !important;
        width: 280px;
    }

    
    
    .table-responsive td,
    .table-responsive th {
        padding: 10px !important;
        font-size: 0.9rem !important;
    }

    
    .nav-btn-login {
        padding: 8px 20px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        border-radius: 12px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
        transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    }

    .nav-btn-login:active {
        transform: scale(0.95) !important;
    }

    
    .nav-btn-login i {
        font-size: 1.1rem !important;
        color: white !important;
        display: inline-block !important;
        
    }
}
}


/* ==========================================
   FILE: css/mobile.css (Wrapped in Media Query)
   ========================================== */
@media (max-width: 767px) {

@media screen and (max-width: 767px) {

    
    * {
        
        -webkit-tap-highlight-color: transparent;
    }

    body {
        
        font-size: 16px;
        overflow-x: hidden !important;
        
    }

    
    .hero-bg-layer img,
    body::before,
    .particles-js-canvas-el {
        animation: none !important;
        transition: none !important;
    }

    
    .container,
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    
    .navbar-custom {
        padding: 10px 15px;
    }

    .navbar-brand img {
        height: 35px !important;
        width: auto;
    }

    .navbar-toggler {
        border: none !important;
        outline: none !important;
        padding: 5px;
        background: transparent !important;
        box-shadow: none !important;
        cursor: pointer !important;
    }

    .navbar-toggler i {
        font-size: 1.5rem;
        color: #fff !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        margin: 0;
        padding: 90px 0 20px 0;
        background: var(--card-bg-start, rgba(15, 23, 42, 0.95));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 9998;
        display: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        overflow-y: auto;
    }

    .navbar-collapse.show {
        display: flex !important;
        flex-direction: column;
        animation: sidebarSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes sidebarSlideIn {
        from {
            transform: translateX(-100%);
            opacity: 0;
        }

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

    
    .navbar-nav {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }

    .nav-item {
        width: 100% !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

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

    .nav-link {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        padding: 15px 25px !important;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9) !important;
        width: 100%;
        text-align: left;
    }

    .nav-link i {
        width: 25px;
        text-align: center;
        margin-right: 15px;
        color: #3b82f6;
    }

    .nav-link:active,
    .nav-link:focus,
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #fff !important;
        padding-left: 30px !important;
        transition: all 0.2s;
    }

    
    .mobile-menu-footer {
        margin-top: auto !important;
        width: 100%;
        padding: 0 20px 20px 20px;
    }

    .menu-divider {
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        margin-bottom: 15px;
        width: 100%;
    }

    .btn-close-menu {
        width: 100%;
        padding: 12px;
        background: rgba(220, 38, 38, 0.15);
        color: #fca5a5;
        border: 1px solid rgba(220, 38, 38, 0.3);
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.2s;
    }

    .btn-close-menu:hover {
        background: rgba(220, 38, 38, 0.3);
        color: white;
    }

    
    .hero-premium {
        height: auto !important;
        min-height: 45vh !important;
        padding-top: 80px !important;
        padding-bottom: 20px !important;
        background-attachment: scroll !important;
        display: flex !important;
        align-items: center !important;
    }

    .hero-main-logo {
        max-width: 80% !important;
        height: auto;
    }

    
    .product-grid,
    .grid-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    @media (max-width: 480px) {
        .product-grid.one-col-mobile {
            grid-template-columns: 1fr !important;
        }
    }

    .product-card {
        margin-bottom: 0 !important;
        height: 100% !important;
    }

    .product-img-wrapper {
        height: 180px !important;
    }

    .product-actions .btn {
        padding: 8px 10px;
        font-size: 0.9rem;
    }

    
    .table-responsive thead {
        display: none;
    }

    .table-responsive tr {
        display: block;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 15px;
        border-radius: 10px;
        padding: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .table-responsive td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none !important;
        padding: 8px 0 !important;
        text-align: right;
    }

    .table-responsive td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #aaa;
        text-align: left;
        margin-right: 15px;
    }

    
    .modal-dialog {
        margin: 10px;
        width: auto !important;
    }

    .modal-content {
        border-radius: 15px !important;
    }

    
    .floating-discord-btn {
        right: 15px !important;
        bottom: 15px !important;
        width: 50px !important;
        height: 50px !important;
    }

    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 20px;
        justify-content: center;
    }

    
    h1,
    .page-title {
        font-size: 2rem !important;
    }

    h2,
    .section-title {
        font-size: 1.5rem !important;
    }

    #user-actions .nav-dropdown {
        right: 0 !important;
        left: auto !important;
        transform: none !important;
        width: 260px;
        margin-top: 10px;
    }

    
    .nav-btn-login {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .nav-btn-login i {
        display: none !important;
        
    }

    
    .feature-card-new p {
        display: none !important;
        
    }

    .feature-card-new {
        min-height: auto !important;
        
        padding: 15px !important;
    }

    .feature-card-new h3 {
        margin-bottom: 5px !important;
        
        font-size: 1.2rem !important;
    }

    .fcard-body {
        padding: 0 !important;
    }

    
    .server-info-card {
        display: flex !important;
        flex-direction: column !important;
        padding: 25px 20px !important;
        text-align: center !important;
        height: auto !important;
        
        min-height: auto !important;
    }

    .sinfo-content {
        padding: 0 !important;
        width: 100% !important;
        order: unset !important;
        
    }

    .sinfo-image {
        display: none !important;
        
    }

    .sinfo-features {
        justify-content: center !important;
        flex-wrap: wrap !important;
        width: 100%;
        margin-top: 15px;
    }

    .sinfo-features li {
        margin: 5px 10px !important;
        width: auto !important;
        display: inline-flex;
        align-items: center;
    }

    
    .home-slider-section {
        padding: 0 15px !important;
        margin-bottom: 20px !important;
    }

    .home-slider {
        height: auto !important;
        border-radius: 15px !important;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .slider-wrapper {
        height: 200px !important;
        
    }

    .slide img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
        
        object-position: center;
    }

    
    .slider-btn {
        display: none !important;
    }

    .slider-dots {
        bottom: 10px !important;
    }

    
    #podium-container {
        display: none !important;
    }

    #lifetime-mobile-list {
        display: block !important;
        margin-top: 20px;
    }
}
}


