@font-face {
    font-family: 'Minecraft';
    src: url('../minecraft_font.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

:root {
    --primary: #4fc3f7;
    --primary-dark: #0288d1;
    --primary-light: #b3e5fc;
    --accent: #00e5ff;
    --bg-dark: #0a0e1a;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --border: rgba(79, 195, 247, 0.15);
    --glow: rgba(79, 195, 247, 0.3);
    --success: #4caf50;
    --danger: #f44336;
    --warning: #ffc107;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ==================== BG EFFECTS ==================== */
.bg-effects {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-effects::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(79,195,247,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(0,229,255,0.05) 0%, transparent 50%);
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
    0%,100% { transform: translate(0,0) rotate(0deg); }
    33% { transform: translate(2%,-2%) rotate(1deg); }
    66% { transform: translate(-1%,1%) rotate(-1deg); }
}

.particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== TOPBAR ==================== */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
    border-bottom: 1px solid var(--border);
    background: rgba(10,14,26,0.85);
    backdrop-filter: blur(20px);
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-center {
    display: flex;
    align-items: center;
    gap: 4px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 44px;
    width: 44px;
    border-radius: 10px;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* Nav Links */
.nav-link {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Minecraft', monospace;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(79,195,247,0.08);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(79,195,247,0.12);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 6px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(79,195,247,0.08);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(79,195,247,0.2);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ==================== HERO ==================== */
.hero-full {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 32px 24px 0;
}

.hero-full-img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
    aspect-ratio: 1280 / 720;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    box-shadow: 0 4px 20px rgba(79,195,247,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(79,195,247,0.5);
}

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

.btn-outline:hover {
    background: rgba(79,195,247,0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-discord {
    background: #5865F2;
    color: #fff;
    box-shadow: 0 4px 20px rgba(88,101,242,0.3);
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(88,101,242,0.5);
}

.btn-discord {
    background: #5865F2;
    color: #fff;
    box-shadow: 0 4px 20px rgba(88,101,242,0.3);
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(88,101,242,0.5);
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
    position: relative;
    z-index: 1;
    padding: 40px 0 80px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
}

/* ==================== CARDS ==================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(79,195,247,0.3);
}

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

.card-header h3 {
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-header h3 i {
    color: var(--primary);
}

.card-badge {
    padding: 4px 10px;
    background: rgba(79,195,247,0.15);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
}

.card-body {
    padding: 20px 22px;
}

/* ==================== BUYERS ==================== */
.buyer-scroll {
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(79,195,247,0.3) transparent;
    padding-right: 4px;
}

.buyer-scroll::-webkit-scrollbar {
    width: 4px;
}

.buyer-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.buyer-scroll::-webkit-scrollbar-thumb {
    background: rgba(79,195,247,0.3);
    border-radius: 2px;
}

.buyer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 10px;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.buyer-item:hover {
    background: rgba(79,195,247,0.05);
    border-color: rgba(79,195,247,0.15);
}

.buyer-avatar {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 2px solid var(--border);
}

.buyer-info { flex: 1; }

.buyer-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.buyer-rank {
    font-size: 11px;
    color: var(--text-secondary);
}

.buyer-rank strong {
    color: var(--primary);
}

/* ==================== NEWS ==================== */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.news-item {
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: rgba(79,195,247,0.05);
    border-color: rgba(79,195,247,0.15);
    transform: translateX(4px);
}

.news-date {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.news-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.news-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== CHANGELOG ==================== */
.changelog-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.changelog-item {
    position: relative;
    padding-left: 24px;
}

.changelog-item::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 12px var(--glow);
}

.changelog-item::after {
    content: '';
    position: absolute;
    left: 4px; top: 22px;
    width: 2px;
    height: calc(100% - 8px);
    background: var(--border);
}

.changelog-item:last-child::after { display: none; }

.changelog-version {
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.changelog-title {
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
    color: var(--text-primary);
}

.changelog-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
    line-height: 1.6;
}

.changelog-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 6px;
}

.tag-new { background: rgba(76,175,80,0.15); color: var(--success); }
.tag-fix { background: rgba(244,67,54,0.15); color: var(--danger); }
.tag-improve { background: rgba(255,193,7,0.15); color: var(--warning); }
.tag-notice { background: rgba(79,195,247,0.15); color: var(--primary); }

/* ==================== SIDEBAR ==================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: rgba(79,195,247,0.08);
    border-color: rgba(79,195,247,0.2);
    transform: translateX(4px);
}

.quick-link i {
    font-size: 16px;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.quick-link span {
    font-size: 13px;
    font-weight: 500;
}

/* Server Status */
.server-status {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.status-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.status-bar {
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
}

.status-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width 1s ease;
}

/* ==================== STORE PAGE ==================== */
.store-hero {
    position: relative;
    z-index: 1;
    padding: 48px 0 32px;
    text-align: center;
}

.store-hero h1 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Minecraft', monospace;
}

.store-hero p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.rank-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.rank-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79,195,247,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(79,195,247,0.1);
}

.rank-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(79,195,247,0.15);
}

.rank-card.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.rank-popular {
    position: absolute;
    top: 16px; right: 16px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rank-header {
    padding: 32px 24px 24px;
    text-align: center;
}

.rank-icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: none;
    background: transparent;
}

.rank-icon img {
    border-radius: 12px;
}

.rank-icon.stack-icon,
.rank-icon.mvp-icon,
.rank-icon.vip-icon {
    background: transparent;
    border: none;
}

.rank-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
    font-family: 'Minecraft', monospace;
}

.rank-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.rank-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.rank-price .currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

.rank-price .amount {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rank-price .period {
    font-size: 13px;
    color: var(--text-secondary);
}

.rank-divider {
    height: 1px;
    background: var(--border);
    margin: 0 24px;
}

.rank-perks {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rank-perks h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.perk-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-primary);
}

.perk-item i {
    font-size: 12px;
    color: var(--success);
    width: 16px;
    text-align: center;
}

.perk-item.disabled {
    color: var(--text-secondary);
    opacity: 0.4;
}

.perk-item.disabled i {
    color: var(--text-secondary);
}

.rank-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.rank-btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    box-shadow: 0 4px 20px rgba(79,195,247,0.3);
}

.rank-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(79,195,247,0.5);
}

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

.rank-btn-outline:hover {
    background: rgba(79,195,247,0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* How to Buy */
.how-to-buy {
    margin-top: 64px;
}

.how-to-buy h2 {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-to-buy .subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 40px;
}

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

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: rgba(79,195,247,0.3);
    transform: translateY(-4px);
}

.step-number {
    width: 44px; height: 44px;
    margin: 0 auto 16px;
    border-radius: 12px;
    background: rgba(79,195,247,0.1);
    border: 1px solid rgba(79,195,247,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.step-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== TERMS PAGE ==================== */
.page-header {
    position: relative;
    z-index: 1;
    padding: 48px 0 32px;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Minecraft', monospace;
}

.page-header p {
    font-size: 15px;
    color: var(--text-secondary);
}

.page-content {
    position: relative;
    z-index: 1;
    padding: 0 0 80px;
}

.terms-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.terms-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    margin-top: 32px;
}

.terms-card h2:first-child {
    margin-top: 0;
}

.terms-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.terms-card ul {
    margin: 12px 0;
    padding-left: 24px;
}

.terms-card li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 4px;
}

.terms-card li strong {
    color: var(--text-primary);
}

.terms-card .highlight {
    color: var(--primary);
    font-weight: 600;
}

.terms-card .warning {
    color: var(--danger);
    font-weight: 600;
}

/* ==================== NEWS PAGE ==================== */
.news-full-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.news-full-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 32px;
    transition: all 0.3s ease;
}

.news-full-item:hover {
    border-color: rgba(79,195,247,0.3);
    transform: translateY(-2px);
}

.news-full-date {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.news-full-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.news-full-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.news-full-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 12px;
}

.tag-update { background: rgba(79,195,247,0.15); color: var(--primary); }
.tag-event { background: rgba(255,193,7,0.15); color: var(--warning); }
.tag-release { background: rgba(76,175,80,0.15); color: var(--success); }

/* ==================== FOOTER ==================== */
.footer {
    position: relative;
    z-index: 1;
    padding: 40px 0 24px;
    border-top: 1px solid var(--border);
    background: rgba(10,14,26,0.6);
    backdrop-filter: blur(20px);
}

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

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-left img {
    height: 28px; width: 28px;
    border-radius: 6px;
}

.footer-text {
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--primary); }

.footer-disclaimer {
    text-align: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 11px;
    color: rgba(148,163,184,0.5);
}

/* Made by badge */
.made-by {
    position: fixed;
    bottom: 10px;
    right: 14px;
    font-family: 'Minecraft', monospace;
    font-size: 10px;
    color: rgba(148,163,184,0.4);
    z-index: 99;
    text-decoration: none;
    pointer-events: none;
}

/* ==================== TOAST ==================== */
.toast {
    position: fixed;
    bottom: 24px; right: 24px;
    padding: 14px 24px;
    background: var(--bg-card);
    border: 1px solid var(--success);
    border-radius: 12px;
    color: var(--success);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== MOBILE NAV ==================== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .ranks-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .topbar-center { display: none; }
    .mobile-menu-btn { display: block; }
}

@media (max-width: 600px) {
    .store-hero h1 { font-size: 30px; }
    .page-header h1 { font-size: 30px; }
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .topbar .container {
        flex-wrap: wrap;
    }
    .topbar-left {
        width: 100%;
        justify-content: space-between;
    }
    .terms-card { padding: 24px; }
    .news-full-item { padding: 20px; }
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
    background: rgba(79,195,247,0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(79,195,247,0.5);
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

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

.mc-font {
    font-family: 'Minecraft', monospace;
}
