@import url('https://fonts.googleapis.com/css2?family=Tahoma:wght@400;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #0c0c0e;
    --bg-panel: rgba(12, 12, 14, 0.75);
    --bg-card: rgba(20, 20, 24, 0.65);
    --accent-gold: #f0b429;
    --accent-blue: #3b8edc;
    --accent-purple: #7c3aed;
    --accent-purple-end: #4f46e5;
    --accent-green: #2ecc71;
    --text-main: #ebebeb;
    --text-muted: #8a8a9a;
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(59, 142, 220, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
body::before { content: ''; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 30% 20%, rgba(59,142,220,0.06) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(124,58,237,0.04) 0%, transparent 50%); pointer-events: none; z-index: -1; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.glass {
    background: var(--bg-panel);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
}

.navbar { position: fixed; top: 0; left: 0; right: 0; height: 64px; display: flex; justify-content: space-between; align-items: center; padding: 0 32px; background: rgba(10, 10, 12, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255, 255, 255, 0.03); z-index: 100; }
.nav-logo { display: flex; flex-direction: column; gap: 0; }
.nav-logo .title { font-size: 18px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; }
.nav-logo .subtitle { font-size: 11px; color: var(--accent-blue); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.2; margin-top: 3px; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn { padding: 12px 20px; border-radius: 4px; font-weight: 600; font-size: 13px; cursor: pointer; transition: all 0.2s ease; border: none; display: inline-block; text-align: center; position: relative; }
.btn-outline { background: rgba(255, 255, 255, 0.02); color: var(--text-muted); }
.btn-outline:hover { background: rgba(255,255,255,0.05); color: var(--text-main); }
.btn-blue { background: rgba(59, 142, 220, 0.1); color: rgba(59, 142, 220, 0.9); border-left: 3px solid var(--accent-blue); }
.btn-blue:hover { background: rgba(59, 142, 220, 0.18); color: #fff; }
.btn-gold { background: rgba(240, 180, 41, 0.1); color: rgba(240, 180, 41, 0.9); font-weight: 700; border-left: 3px solid var(--accent-gold); }
.btn-gold:hover { background: rgba(240, 180, 41, 0.18); color: #fff; }
.btn-purple { background: rgba(124, 58, 237, 0.1); color: rgba(124, 58, 237, 0.9); border-left: 3px solid var(--accent-purple); }
.btn-purple:hover { background: rgba(124, 58, 237, 0.18); color: #fff; }

.pkg-btn { width: 100%; padding: 14px; font-size: 14px; border-radius: 4px; letter-spacing: 0.3px; }

.user-dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; right: 0; top: 100%; padding-top: 4px; background: rgba(12,12,16,0.95); backdrop-filter: blur(12px); min-width: 150px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.03); overflow: hidden; z-index: 200; }
.dropdown-menu a { color: var(--text-muted); padding: 10px 16px; display: block; font-size: 13px; transition: all 0.15s; }
.dropdown-menu a:hover { background: rgba(255,255,255,0.04); color: var(--text-main); }
.user-dropdown:hover .dropdown-menu { display: block; }

.hero { min-height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 100px 20px 60px; }
.hero h1 { font-size: 52px; font-weight: 800; margin-bottom: 12px; letter-spacing: -1.5px; }
.hero p { font-size: 16px; color: var(--text-muted); max-width: 520px; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 12px; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 28px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; text-transform: uppercase; }

section { padding: 70px 32px; max-width: 1140px; margin: 0 auto; }
.section-title { font-size: 28px; font-weight: 800; margin-bottom: 36px; text-align: center; letter-spacing: -0.5px; }

.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }

.package-card {
    background: rgba(14, 14, 18, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 28px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.package-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); border-color: rgba(59, 142, 220, 0.2); }
.pkg-border-gold { }
.pkg-border-gold:hover { border-color: rgba(240, 180, 41, 0.3); box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 20px rgba(240, 180, 41, 0.08); }
.pkg-border-purple { }
.pkg-border-purple:hover { border-color: rgba(124, 58, 237, 0.4); box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 25px rgba(124, 58, 237, 0.1); }
.pkg-popular { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-end)); font-size: 10px; font-weight: 800; padding: 4px 14px; border-radius: 10px; letter-spacing: 1.5px; white-space: nowrap; }

.pkg-image-container { width: 100px; height: 100px; margin-bottom: 20px; border-radius: 50%; background: rgba(255,255,255,0.03); display: flex; align-items: center; justify-content: center; overflow: hidden; border: 2px solid rgba(255,255,255,0.06); }
.pkg-image { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; image-rendering: auto; -webkit-backface-visibility: hidden; backface-visibility: hidden; transform: translateZ(0); }

.pkg-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.pkg-price { font-size: 32px; font-weight: 800; margin-bottom: 24px; }
.pkg-price span { font-size: 14px; color: var(--text-muted); font-weight: 400; }

.pkg-features { width: 100%; margin-bottom: auto; padding-bottom: 24px; }
.pkg-features li { margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; color: var(--text-muted); text-align: left; font-size: 13px; line-height: 1.4; }
.pkg-features li::before { content: '✓'; color: var(--accent-green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.pkg-btn { width: 100%; padding: 13px; font-size: 14px; border-radius: 6px; }

.filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.filter-btn { background: rgba(20,20,24,0.6); backdrop-filter: blur(8px); border: none; color: var(--text-muted); padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.filter-btn.active, .filter-btn:hover { background: var(--text-main); color: var(--bg-dark); }

.items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.item-card {
    background: rgba(14, 14, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    height: 260px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}
.item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    border-radius: 10px 10px 0 0;
    opacity: 0.6;
    transition: opacity 0.25s ease;
}
.item-card:hover { border-color: rgba(59, 142, 220, 0.2); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.5); }
.item-card:hover::before { opacity: 0.85; }
.item-card[data-type="weapon"]::before { background: linear-gradient(135deg, rgba(240,180,41,0.15) 0%, rgba(200,100,20,0.08) 100%); }
.item-card[data-type="vehicle"]::before { background: linear-gradient(135deg, rgba(59,142,220,0.15) 0%, rgba(30,80,180,0.08) 100%); }
.item-card[data-type="cosmetic"]::before { background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(80,40,180,0.08) 100%); }
.item-card[data-type="tag"]::before { background: linear-gradient(135deg, rgba(20,184,166,0.15) 0%, rgba(10,120,110,0.08) 100%); }
.item-card[data-type="prestige"]::before { background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(240,180,41,0.1) 100%); }
.item-card[data-type="money"]::before { background: linear-gradient(135deg, rgba(46,204,113,0.15) 0%, rgba(20,150,80,0.08) 100%); }
.item-card[data-type="token"]::before { background: linear-gradient(135deg, rgba(240,180,41,0.12) 0%, rgba(200,150,20,0.06) 100%); }

.item-card-content { position: relative; z-index: 2; padding: 0 20px 20px; display: flex; flex-direction: column; flex: 1; }

.item-image-area { position: relative; z-index: 2; height: 120px; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 10px 10px 0 0; }
.item-image { max-width: 80%; max-height: 90px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6)); transition: transform 0.25s ease; }
.item-card:hover .item-image { transform: scale(1.08); }
.item-placeholder-icon { font-size: 42px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)); transition: transform 0.25s ease; }
.item-card:hover .item-placeholder-icon { transform: scale(1.15) rotate(-3deg); }

.strip { position: absolute; left: 0; top: 0; bottom: 0; width: 3px; border-radius: 3px 0 0 3px; z-index: 3; }
.strip-gold { background: var(--accent-gold); }
.strip-blue { background: var(--accent-blue); }
.strip-purple { background: var(--accent-purple); }
.strip-teal { background: #14b8a6; }
.strip-green { background: var(--accent-green); }
.item-badge { position: absolute; top: 16px; right: 16px; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 10px; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); letter-spacing: 0.5px; z-index: 3; }
.item-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; margin-top: 0; }
.item-desc { font-size: 12px; color: var(--text-muted); flex-grow: 1; line-height: 1.5; }
.item-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.item-cost { font-size: 20px; font-weight: 800; color: var(--accent-gold); }
.card-coming-soon { opacity: 0.5; }
.card-coming-soon::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: repeating-linear-gradient(135deg, transparent, transparent 20px, rgba(0,0,0,0.1) 20px, rgba(0,0,0,0.1) 40px); pointer-events: none; border-radius: 10px; }
.cs-badge { background: rgba(0,0,0,0.5) !important; color: var(--text-muted); }

.timeline { display: flex; justify-content: space-between; position: relative; margin-top: 50px; padding: 0 20px; }
.timeline::before { content: ''; position: absolute; top: 15px; left: 60px; right: 60px; height: 2px; background: rgba(255,255,255,0.06); }
.timeline-node { display: flex; flex-direction: column; align-items: center; z-index: 2; width: 120px; text-align: center; }
.node-circle { width: 30px; height: 30px; border-radius: 50%; background: var(--bg-dark); border: 2px solid rgba(255,255,255,0.15); margin-bottom: 14px; transition: all 0.3s; }
.node-circle.active { border-color: var(--accent-gold); background: var(--accent-gold); box-shadow: 0 0 12px rgba(240,180,41,0.4); }
.node-month { font-size: 12px; font-weight: 800; margin-bottom: 4px; letter-spacing: 0.5px; }
.node-reward { font-size: 11px; color: var(--text-muted); }

.steps { display: flex; justify-content: center; gap: 24px; }
.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    background: rgba(14, 14, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 36px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.2s ease;
}
.step:hover { border-color: rgba(59, 142, 220, 0.15); transform: translateY(-3px); }
.step-icon { font-size: 28px; margin-bottom: 16px; }
.step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 12px; color: var(--text-muted); }

footer { background: rgba(10,10,12,0.9); backdrop-filter: blur(12px); padding: 32px; text-align: center; border-top: 1px solid rgba(255,255,255,0.03); margin-top: 60px; }
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 16px; }
.footer-links a { color: var(--text-muted); font-size: 13px; font-weight: 500; transition: color 0.15s; }
.footer-links a:hover { color: var(--text-main); }
.copyright { font-size: 11px; color: rgba(255,255,255,0.25); }

.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .hero h1 { font-size: 32px; letter-spacing: -1px; }
    .hero p { font-size: 14px; padding: 0 12px; }
    .hero { min-height: 320px; padding: 80px 16px 40px; }
    .steps { flex-direction: column; align-items: center; gap: 16px; }
    .step { max-width: 100%; }
    .timeline { flex-wrap: wrap; gap: 20px; justify-content: center; padding: 0; }
    .timeline::before { display: none; }
    .timeline-node { width: 45%; }
    .navbar { padding: 0 16px; height: 56px; }
    .nav-logo .title { font-size: 16px; }
    .nav-actions { gap: 8px; }
    .nav-actions .btn { padding: 8px 12px; font-size: 12px; }
    section { padding: 40px 16px; }
    .section-title { font-size: 22px; margin-bottom: 24px; }
    .packages-grid { grid-template-columns: 1fr; gap: 16px; }
    .package-card { padding: 24px 20px; }
    .package-card[style*="scale(1.05)"] { transform: none !important; }
    .pkg-price { font-size: 26px; }
    .pkg-title { font-size: 18px; }
    .pkg-image-container { width: 80px !important; height: 80px !important; min-height: 80px !important; }
    .pkg-image { width: 60px !important; height: 60px !important; }
    footer { padding: 24px 16px; }
    .footer-links { flex-wrap: wrap; gap: 12px; }
    .items-grid { grid-template-columns: 1fr; }
    .user-dropdown-btn span { display: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .hero { min-height: 260px; padding: 70px 12px 30px; }
    .pkg-features li { font-size: 12px; }
    .timeline-node { width: 100%; }
    .step { padding: 24px 16px; }
    .step h3 { font-size: 14px; }
    .step p { font-size: 11px; }
    .footer-links { flex-direction: column; align-items: center; gap: 8px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .packages-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .package-card { padding: 24px 16px; }
    .pkg-price { font-size: 28px; }
    section { padding: 50px 24px; }
    .items-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1025px) {
    .packages-grid { gap: 28px; }
}
