* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-primary: #ff6b00;
    --orange-secondary: #ff8c00;
    --orange-light: #ffa500;
    --orange-glow: rgba(255, 107, 0, 0.5);
    --orange-subtle: rgba(255, 107, 0, 0.1);
    --black-primary: #0a0a0a;
    --black-secondary: #0f0f0f;
    --black-tertiary: #161616;
    --black-card: #1a1a1a;
    --black-hover: #222222;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #b0b0b0;
    --gray-dark: #444444;
    --success: #00c853;
    --error: #ff3d00;
    --gold: #FFD700;
    --silver: #C0C0C0;
    --bronze: #CD7F32;
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-orange: 0 5px 30px rgba(255, 107, 0, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black-primary);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--orange-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange-secondary);
}

/* ==================== PRELOADER ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo span:first-child {
    color: var(--white);
}

.preloader-logo span:last-child {
    color: var(--orange-primary);
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--black-tertiary);
    border-top-color: var(--orange-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader-text {
    margin-top: 1.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

.preloader-progress {
    width: 180px;
    height: 3px;
    background: var(--black-tertiary);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}

.preloader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-light));
    width: 0%;
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

.page-loader.active {
    display: flex;
}

.page-loader-content {
    text-align: center;
}

.loader-icon {
    font-size: 3.5rem;
    color: var(--orange-primary);
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    padding: 0 2rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    cursor: pointer;
    transition: transform var(--transition-normal);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    display: flex;
    align-items: center;
}

.logo-text span:first-child,
.logo span:first-child {
    color: var(--white);
}

.logo-text span:last-child,
.logo span:last-child {
    color: var(--orange-primary);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    transition: width var(--transition-normal);
}

.nav-links a:hover {
    color: var(--orange-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 0.7rem 1.4rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--orange-primary);
}

.btn-secondary:hover {
    background: var(--orange-primary);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 2rem 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
    animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--orange-primary);
    border-radius: 50%;
    animation: float 20s infinite;
    opacity: 0.2;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    max-width: 850px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange-subtle);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--orange-light);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge i {
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-title span {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat-value {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-weight: 800;
    color: var(--orange-primary);
    line-height: 1.2;
}

.stat-label {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RECENT PURCHASES - NEW DESIGN ==================== */
.recent-purchases-section {
    padding: 3rem 1.5rem;
    background: linear-gradient(180deg, var(--black-primary) 0%, var(--black-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.recent-purchases-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
}

.recent-purchases-container {
    max-width: 1000px;
    margin: 0 auto;
}

.recent-purchases-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.recent-purchases-header i {
    color: var(--orange-primary);
    font-size: 1.3rem;
}

.recent-purchases-header span {
    color: var(--gray-light);
    font-weight: 600;
}

.recent-purchases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.recent-purchase-card {
    background: linear-gradient(145deg, var(--black-card), var(--black-tertiary));
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.recent-purchase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-light));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.recent-purchase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: var(--shadow-orange);
}

.recent-purchase-card:hover::before {
    opacity: 1;
}

.recent-purchase-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.recent-purchase-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.recent-purchase-user {
    flex: 1;
    min-width: 0;
}

.recent-purchase-nick {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recent-purchase-time {
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.2rem;
}

.recent-purchase-product {
    background: var(--black-primary);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.recent-purchase-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--orange-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.recent-purchase-name {
    font-weight: 600;
    color: var(--orange-light);
    font-size: 0.95rem;
}

.no-recent-purchases {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--gray);
}

.no-recent-purchases i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    display: block;
}

/* Skeleton */
.recent-purchase-card.skeleton .recent-purchase-avatar,
.recent-purchase-card.skeleton .recent-purchase-nick,
.recent-purchase-card.skeleton .recent-purchase-product {
    background: linear-gradient(90deg, var(--black-tertiary) 25%, var(--black-hover) 50%, var(--black-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

.recent-purchase-card.skeleton .recent-purchase-nick {
    height: 20px;
    width: 80%;
}

.recent-purchase-card.skeleton .recent-purchase-time {
    height: 14px;
    width: 60%;
    margin-top: 0.5rem;
    background: linear-gradient(90deg, var(--black-tertiary) 25%, var(--black-hover) 50%, var(--black-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==================== GOAL SECTION ==================== */
.goal-section {
    padding: 4rem 1.5rem;
    background: var(--black-secondary);
}

.goal-container {
    max-width: 700px;
    margin: 0 auto;
}

.goal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.goal-title {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.goal-title i {
    color: var(--orange-primary);
}

.goal-subtitle {
    color: var(--gray);
    font-size: 0.9rem;
}

.goal-bar-container {
    background: var(--black-tertiary);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.goal-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.goal-current {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange-primary);
}

.goal-target {
    font-size: 1.1rem;
    color: var(--gray);
}

.goal-bar {
    height: 16px;
    background: var(--black-primary);
    border-radius: 8px;
    overflow: hidden;
}

.goal-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-light));
    border-radius: 8px;
    transition: width 1.5s ease-out;
    position: relative;
}

.goal-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmerGoal 2s infinite;
}

@keyframes shimmerGoal {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.goal-percentage {
    text-align: center;
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.goal-reset {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 5rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange-subtle);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--orange-light);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* ==================== PRODUCTS GRID ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    background: var(--black-card);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.3);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 107, 0, 0.05));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    color: var(--orange-primary);
    transition: all 0.4s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.product-description {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.product-features {
    list-style: none;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: var(--gray-light);
    font-size: 0.85rem;
}

.product-features li i {
    color: var(--orange-primary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange-primary);
}

.price-currency {
    color: var(--gray);
    font-size: 0.95rem;
}

.product-buy-btn {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 10;
}

.product-buy-btn:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-orange);
}

/* Rank Colors */
.rank-vip .product-icon { color: #4CAF50; background: rgba(76, 175, 80, 0.1); }
.rank-mvip .product-icon { color: #2196F3; background: rgba(33, 150, 243, 0.1); }
.rank-elita .product-icon { color: #9C27B0; background: rgba(156, 39, 176, 0.1); }
.rank-king .product-icon { color: #FFC107; background: rgba(255, 193, 7, 0.1); }
.rank-north .product-icon { color: var(--orange-primary); background: rgba(255, 107, 0, 0.1); }

/* ==================== KEYS GRID ==================== */
.keys-section {
    background: var(--black-secondary);
}

.keys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.key-card {
    background: var(--black-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.key-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 10px 35px rgba(255, 107, 0, 0.12);
}

.key-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: inline-block;
    animation: keyFloat 3s ease-in-out infinite;
}

@keyframes keyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.key-zwykly .key-icon { color: #9E9E9E; }
.key-rzadki .key-icon { color: #2196F3; }
.key-epicki .key-icon { color: #9C27B0; }
.key-legendarny .key-icon { color: #FFC107; }
.key-north .key-icon { color: var(--orange-primary); }

.key-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.key-description {
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.key-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--orange-primary);
    margin-bottom: 1rem;
}

.key-buy-btn {
    width: 100%;
    padding: 0.7rem;
    border: 2px solid var(--orange-primary);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--orange-primary);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 10;
}

.key-buy-btn:hover {
    background: var(--orange-primary);
    color: var(--white);
}

/* ==================== HALL OF FAME - NEW DESIGN ==================== */
.top-section {
    background: var(--black-primary);
    position: relative;
    overflow: hidden;
}

.top-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.top-players-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Podium Container */
.top-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
    min-height: 350px;
}

/* Podium Places */
.podium-place {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
}

.podium-place:hover {
    transform: translateY(-10px);
}

/* Podium Card */
.podium-card {
    background: linear-gradient(180deg, var(--black-card) 0%, var(--black-tertiary) 100%);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    border: 2px solid;
    min-width: 160px;
}

.podium-place.first .podium-card {
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
    min-width: 180px;
    padding: 2rem 1.5rem;
}

.podium-place.second .podium-card {
    border-color: var(--silver);
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.15);
}

.podium-place.third .podium-card {
    border-color: var(--bronze);
    box-shadow: 0 0 30px rgba(205, 127, 50, 0.15);
}

/* Crown */
.podium-crown {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.2rem;
    color: var(--gold);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownFloat {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(-5deg); }
    50% { transform: translateX(-50%) translateY(-8px) rotate(5deg); }
}

/* Avatar */
.podium-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--black-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    border: 3px solid;
    position: relative;
    overflow: hidden;
}

.podium-place.first .podium-avatar {
    width: 85px;
    height: 85px;
    font-size: 1.8rem;
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), transparent);
}

.podium-place.second .podium-avatar {
    border-color: var(--silver);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), transparent);
}

.podium-place.third .podium-avatar {
    border-color: var(--bronze);
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2), transparent);
}

.podium-avatar i {
    color: var(--gray);
}

/* Name & Amount */
.podium-name {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.podium-place.first .podium-name {
    font-size: 1.15rem;
}

.podium-amount {
    font-weight: 700;
    font-size: 1.1rem;
}

.podium-place.first .podium-amount {
    color: var(--gold);
    font-size: 1.25rem;
}

.podium-place.second .podium-amount {
    color: var(--silver);
}

.podium-place.third .podium-amount {
    color: var(--bronze);
}

/* Podium Base */
.podium-base {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.podium-stand {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.podium-place.first .podium-stand {
    width: 100px;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.1));
}

.podium-place.second .podium-stand {
    width: 90px;
    height: 55px;
    background: linear-gradient(180deg, rgba(192, 192, 192, 0.3), rgba(192, 192, 192, 0.1));
}

.podium-place.third .podium-stand {
    width: 90px;
    height: 35px;
    background: linear-gradient(180deg, rgba(205, 127, 50, 0.3), rgba(205, 127, 50, 0.1));
}

/* Rest of Top List */
.top-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-width: 600px;
    margin: 0 auto;
}

.top-list-item {
    background: var(--black-card);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.top-list-item:hover {
    background: var(--black-hover);
    transform: translateX(5px);
    border-color: rgba(255, 107, 0, 0.2);
}

.top-list-rank {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--black-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray);
    flex-shrink: 0;
}

.top-list-avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
}

.top-list-name {
    flex: 1;
    font-weight: 600;
    font-size: 0.95rem;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-list-amount {
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.no-top-players {
    text-align: center;
    padding: 3rem;
    color: var(--gray);
}

.no-top-players i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
    display: block;
    color: var(--orange-primary);
}

/* ==================== MODALS ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 1rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: var(--black-card);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--black-card);
    z-index: 10;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-title i {
    color: var(--orange-primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 1.5rem;
}

/* ==================== FORMS ==================== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: var(--black-tertiary);
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.form-input:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.15);
}

.form-input::placeholder {
    color: var(--gray);
}

.form-input:read-only {
    opacity: 0.6;
    cursor: not-allowed;
}

.input-with-button {
    display: flex;
    gap: 0.5rem;
}

.input-with-button .form-input {
    flex: 1;
}

.btn-edit {
    padding: 0 1rem;
    border: 2px solid var(--orange-primary);
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--orange-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-edit:hover {
    background: var(--orange-primary);
    color: var(--white);
}

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--orange-primary);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    flex-shrink: 0;
    margin-top: 1px;
}

.checkbox-container input:checked + .checkmark {
    background: var(--orange-primary);
}

.checkbox-container input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--white);
    font-size: 0.7rem;
}

.checkbox-label {
    color: var(--gray-light);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Server Warning */
.server-warning {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 107, 0, 0.08));
    border: 1px solid rgba(255, 107, 0, 0.4);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.server-warning-icon {
    width: 44px;
    height: 44px;
    background: var(--orange-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.server-warning-content h4 {
    color: var(--orange-primary);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.server-warning-content p {
    color: var(--gray-light);
    font-size: 0.85rem;
    line-height: 1.45;
}

.server-warning-content strong {
    color: var(--white);
}

/* ==================== CAPTCHA ==================== */
.captcha-container {
    background: var(--black-tertiary);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.captcha-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.captcha-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.captcha-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.captcha-subtitle {
    font-size: 0.8rem;
    color: var(--gray);
}

.captcha-challenge {
    background: var(--black-primary);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    text-align: center;
}

.captcha-question {
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
}

.captcha-question span {
    color: var(--orange-primary);
    font-weight: 700;
}

.captcha-input {
    width: 100px;
    text-align: center;
    padding: 0.65rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    background: var(--black-tertiary);
    color: var(--white);
    font-family: inherit;
    font-size: 1.3rem;
    font-weight: 700;
}

.captcha-input:focus {
    outline: none;
    border-color: var(--orange-primary);
}

.captcha-refresh {
    background: none;
    border: none;
    color: var(--orange-primary);
    cursor: pointer;
    margin-left: 0.75rem;
    font-size: 1.1rem;
    transition: transform var(--transition-normal);
    padding: 0.5rem;
}

.captcha-refresh:hover {
    transform: rotate(180deg);
}

.captcha-status {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    min-height: 20px;
}

.captcha-status.success { color: var(--success); }
.captcha-status.error { color: var(--error); }

/* ==================== PURCHASE MODAL ==================== */
.purchase-modal .modal {
    max-width: 520px;
}

.product-preview {
    background: var(--black-tertiary);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.product-preview-icon {
    width: 60px;
    height: 60px;
    background: var(--orange-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--orange-primary);
    flex-shrink: 0;
}

.product-preview-info {
    flex: 1;
    min-width: 0;
}

.product-preview-info h3 {
    font-size: 1.15rem;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-preview-info p {
    color: var(--gray);
    font-size: 0.85rem;
}

.product-preview-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--orange-primary);
    flex-shrink: 0;
}

/* ==================== SETTINGS MODAL ==================== */
.settings-modal .modal {
    max-width: 600px;
}

.settings-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.75rem;
    overflow-x: auto;
}

.settings-tab {
    padding: 0.65rem 1.1rem;
    border: none;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--gray);
    font-family: inherit;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.settings-tab.active {
    background: var(--orange-primary);
    color: var(--white);
}

.settings-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.08);
}

.settings-content {
    display: none;
}

.settings-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Profile Logo */
.profile-logo-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    background: var(--black-tertiary);
    padding: 0.75rem;
}

/* Purchase History */
.purchase-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 350px;
    overflow-y: auto;
}

.purchase-item {
    background: var(--black-tertiary);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
    gap: 1rem;
}

.purchase-item:hover {
    background: var(--black-hover);
}

.purchase-info {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
    flex: 1;
}

.purchase-icon {
    width: 40px;
    height: 40px;
    background: var(--orange-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    flex-shrink: 0;
}

.purchase-details {
    min-width: 0;
}

.purchase-details h4 {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.purchase-details p {
    font-size: 0.75rem;
    color: var(--gray);
}

.purchase-price {
    text-align: right;
    flex-shrink: 0;
}

.purchase-amount {
    font-weight: 700;
    color: var(--orange-primary);
    font-size: 0.95rem;
}

.purchase-date {
    font-size: 0.75rem;
    color: var(--gray);
}

.no-purchases {
    text-align: center;
    padding: 2.5rem;
    color: var(--gray);
}

.no-purchases i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.4;
    display: block;
}

/* Stats Card */
.stats-card {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    text-align: center;
}

.stats-card-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.stats-card-item p {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.2rem;
}

/* ==================== USER MENU ==================== */
.user-menu {
    position: relative;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 700;
    font-size: 1rem;
}

.user-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--orange-glow);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--black-card);
    border-radius: var(--radius-lg);
    min-width: 230px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.user-dropdown-name {
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.user-dropdown-email {
    font-size: 0.8rem;
    color: var(--gray);
}

.user-dropdown-menu {
    padding: 0.5rem;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--gray-light);
    font-size: 0.9rem;
}

.user-dropdown-item:hover {
    background: var(--orange-subtle);
    color: var(--orange-primary);
}

.user-dropdown-item i {
    width: 18px;
    text-align: center;
}

/* ==================== TOAST ==================== */
.toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 3000;
    max-width: calc(100vw - 3rem);
}

.toast {
    background: var(--black-card);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 280px;
    max-width: 380px;
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--orange-primary);
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left-color: var(--success);
}

.toast.error {
    border-left-color: var(--error);
}

.toast-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    color: var(--success);
}

.toast.error .toast-icon {
    color: var(--error);
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-content h4 {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.toast-content p {
    font-size: 0.8rem;
    color: var(--gray);
}

.toast-close {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 0.4rem;
    margin-left: auto;
    flex-shrink: 0;
}

.toast-close:hover {
    color: var(--white);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--black-secondary);
    padding: 3.5rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand .logo {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 900;
    display: inline-flex;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 0.95rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color var(--transition-normal);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--orange-primary);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--black-tertiary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--orange-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray);
    font-size: 0.8rem;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black-primary);
    z-index: 999;
    display: none;
    flex-direction: column;
    padding: 80px 1.5rem 1.5rem;
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-links a {
    display: block;
    padding: 1rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.mobile-menu-links a:hover {
    background: var(--orange-subtle);
    color: var(--orange-primary);
}

.mobile-menu-buttons {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ==================== SCROLL ANIMATIONS ==================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .top-podium {
        gap: 0.75rem;
    }

    .podium-card {
        min-width: 140px;
        padding: 1.25rem 1rem;
    }

    .podium-place.first .podium-card {
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 1.25rem 50px;
    }

    .hero-stats {
        gap: 1.25rem;
    }

    .stat {
        min-width: 100px;
    }

    .recent-purchases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .top-podium {
        flex-direction: column;
        align-items: center;
        min-height: auto;
        gap: 1.5rem;
    }

    .podium-place {
        order: 2;
    }

    .podium-place.first {
        order: 1;
    }

    .podium-base {
        display: none;
    }

    .podium-card {
        min-width: 200px !important;
    }

    .stats-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-card-item {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stats-card-item:last-child {
        border-bottom: none;
    }

    .modal {
        margin: 0.5rem;
        max-height: calc(100vh - 1rem);
        border-radius: var(--radius-lg);
    }

    .toast-container {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .toast {
        min-width: auto;
        width: 100%;
        max-width: none;
    }

    .product-preview {
        flex-wrap: wrap;
    }

    .product-preview-price {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .server-warning {
        flex-direction: column;
        text-align: center;
    }

    .server-warning-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 1rem;
        height: 60px;
    }

    .logo-img {
        height: 35px;
    }

    .section {
        padding: 3.5rem 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .products-grid,
    .keys-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 1.5rem;
    }

    .key-card {
        padding: 1.25rem;
    }

    .goal-bar-container {
        padding: 1.25rem;
    }

    .goal-current {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .settings-tabs {
        gap: 0.25rem;
    }

    .settings-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}