/* ============================================
   RAMEN TOPUP - UNIFIED CUTE PINK THEME
   Works for: Admin Panel, User Panel, Public Pages
   Version: 6.0 - Complete Unification
============================================ */

/* ========== GOOGLE FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
    /* Pink Theme Colors */
    --primary: #ff6b9d;
    --primary-dark: #e83e6b;
    --primary-light: #ffb7c5;
    --primary-soft: #ffd1dc;
    --primary-bg: rgba(255, 107, 157, 0.1);
    --primary-gradient: linear-gradient(135deg, #ff6b9d, #ff4d7a);
    --primary-gradient-hover: linear-gradient(135deg, #ff4d7a, #e83e6b);
    
    /* Background Colors */
    --bg-main: #fff5f7;
    --bg-card: #ffffff;
    --bg-soft: #fff0f3;
    --bg-dark: #1a1a2e;
    --bg-darker: #0f0f1a;
    --bg-admin: #1a1a2e;
    
    /* Text Colors */
    --text-dark: #2d1b2e;
    --text-soft: #5e3a5c;
    --text-light: #8b6b8a;
    --text-white: #ffffff;
    --text-gray: #a0a0b0;
    
    /* Status Colors */
    --success: #2ed573;
    --success-bg: rgba(46, 213, 115, 0.1);
    --danger: #ff4757;
    --danger-bg: rgba(255, 71, 87, 0.1);
    --warning: #ffa502;
    --warning-bg: rgba(255, 165, 2, 0.1);
    --info: #00b8d9;
    --info-bg: rgba(0, 184, 217, 0.1);
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(255, 107, 157, 0.08);
    --shadow-md: 0 8px 24px rgba(255, 107, 157, 0.12);
    --shadow-lg: 0 12px 36px rgba(255, 107, 157, 0.15);
    --shadow-hover: 0 20px 40px rgba(255, 107, 157, 0.2);
    
    /* Borders */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-circle: 50%;
}

/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Quicksand', sans-serif;
    background: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Cute Floating Background */
body::before {
    content: '🌸 🎀 ✨ 💕 🍜 ✨ 🎀 🌸';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 60px;
    opacity: 0.02;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    z-index: 0;
    animation: floatBackground 60s linear infinite;
}

@keyframes floatBackground {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

p, span, li, a {
    color: var(--text-soft);
}

.text-primary { color: var(--primary) !important; }
.text-dark { color: var(--text-dark) !important; }
.text-soft { color: var(--text-soft) !important; }
.text-white { color: var(--text-white) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-warning { color: var(--warning) !important; }

/* ========== CONTAINER ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .container-fluid {
        padding: 0 12px;
    }
}

/* ========== BUTTONS - UNIFIED ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.btn-primary, .btn-pink {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover, .btn-pink:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: var(--primary-gradient-hover);
}

.btn-outline, .btn-outline-pink {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover, .btn-outline-pink:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #1abc9c);
    color: white;
}

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

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

.btn-sm {
    padding: 6px 16px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.1rem;
}

/* ========== CARDS - UNIFIED ========== */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: none;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.card-header {
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--primary-bg), rgba(255, 107, 157, 0.05));
    border-bottom: 2px solid var(--primary-light);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.card-header i {
    color: var(--primary);
    margin-right: 8px;
}

.card-body {
    padding: 24px;
}

@media (max-width: 768px) {
    .card-header {
        padding: 14px 18px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .card-body {
        padding: 18px;
    }
}

/* ========== STAT CARDS - UNIFIED ========== */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid var(--primary-light);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    opacity: 0.2;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-bg);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.stat-icon i {
    font-size: 1.4rem;
    color: var(--primary);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.stat-label {
    color: var(--text-soft);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .stat-value {
        font-size: 1.3rem;
    }
    .stat-card {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .stat-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== GAME CARDS ========== */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    display: block;
    border: 1px solid var(--primary-light);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.game-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-bg);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.game-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.game-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .game-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }
    .game-card {
        padding: 15px 10px;
    }
    .game-icon {
        width: 50px;
        height: 50px;
    }
    .game-icon i {
        font-size: 1.4rem;
    }
}

/* ========== PRODUCT CARDS ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--primary-light);
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.product-card.selected {
    border: 2px solid var(--primary);
    background: var(--primary-bg);
}

.product-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
}

/* ========== TABLES - UNIFIED ========== */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.table th {
    font-weight: 700;
    color: var(--primary);
    background: rgba(255, 107, 157, 0.05);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table td {
    color: var(--text-soft);
}

.table tr:hover td {
    background: rgba(255, 107, 157, 0.03);
}

@media (max-width: 768px) {
    .table th,
    .table td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

/* ========== BADGES - UNIFIED ========== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.badge-success {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.badge-danger {
    background: var(--danger-bg);
    color: var(--danger);
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.badge-warning {
    background: var(--warning-bg);
    color: var(--warning);
    border: 1px solid rgba(255, 165, 2, 0.3);
}

.badge-info {
    background: var(--info-bg);
    color: var(--info);
    border: 1px solid rgba(0, 184, 217, 0.3);
}

.badge-primary {
    background: var(--primary-bg);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 157, 0.3);
}

/* ========== FORMS - UNIFIED ========== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-control,
.form-select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-soft);
    border: 2px solid var(--primary-light);
    border-radius: 60px;
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-bg);
}

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

/* ========== ALERTS - UNIFIED ========== */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: none;
}

.alert-success {
    background: var(--success-bg);
    border-left: 4px solid var(--success);
    color: var(--success);
}

.alert-danger {
    background: var(--danger-bg);
    border-left: 4px solid var(--danger);
    color: var(--danger);
}

.alert-warning {
    background: var(--warning-bg);
    border-left: 4px solid var(--warning);
    color: var(--warning);
}

.alert-info {
    background: var(--info-bg);
    border-left: 4px solid var(--info);
    color: var(--info);
}

/* ========== MODALS - UNIFIED ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalPop 0.3s ease;
}

@keyframes modalPop {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header {
    padding: 18px 24px;
    border-bottom: 2px solid var(--primary-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3, .modal-header h5 {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.modal-close {
    background: var(--primary-bg);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--text-soft);
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--danger);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 18px 24px;
    border-top: 1px solid var(--primary-light);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* ========== PAGINATION ========== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    background: var(--bg-card);
    border-radius: 50px;
    color: var(--text-soft);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ========== NAVBAR - USER PANEL ========== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 2px solid var(--primary-light);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo i {
    background: none;
    -webkit-background-clip: unset;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--text-soft);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.btn-login,
.nav-link.btn-register {
    padding: 8px 24px;
    border-radius: 50px;
}

.nav-link.btn-login {
    background: var(--primary-gradient);
    color: white;
}

.nav-link.btn-register {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 20px 0 0;
        gap: 15px;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-link {
        width: 100%;
        text-align: center;
    }
}

/* ========== ADMIN SIDEBAR ========== */
.admin-navbar {
    background: var(--primary-gradient);
    padding: 12px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.admin-sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    width: 260px;
    height: calc(100% - 60px);
    background: var(--bg-dark);
    overflow-y: auto;
    transition: all 0.3s;
    z-index: 999;
}

.admin-sidebar .sidebar-menu {
    list-style: none;
    padding: 20px 0;
}

.admin-sidebar .sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.admin-sidebar .sidebar-link:hover,
.admin-sidebar .sidebar-link.active {
    background: rgba(255, 107, 157, 0.1);
    color: var(--primary);
    border-left-color: var(--primary);
}

.admin-sidebar .sidebar-link i {
    width: 20px;
}

.admin-main {
    margin-left: 260px;
    margin-top: 60px;
    padding: 20px;
    transition: all 0.3s;
}

.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.3rem;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .admin-sidebar {
        left: -260px;
    }
    .admin-sidebar.active {
        left: 0;
    }
    .admin-main {
        margin-left: 0;
        padding: 15px;
    }
}

/* ========== WELCOME BANNER ========== */
.welcome-banner {
    background: linear-gradient(135deg, var(--primary-soft), var(--primary-light));
    border-radius: var(--radius-xl);
    padding: 35px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.welcome-banner::before {
    content: '🌸 🎀 💕 🍜 ✨';
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 80px;
    opacity: 0.1;
}

.welcome-banner h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.welcome-banner p {
    color: var(--text-soft);
}

@media (max-width: 768px) {
    .welcome-banner {
        padding: 25px;
    }
    .welcome-banner h2 {
        font-size: 1.4rem;
    }
}

/* ========== HERO SECTION ========== */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-soft), var(--primary-light));
    border-radius: var(--radius-xl);
    margin: 30px 0;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.hero-section .lead {
    font-size: 1.2rem;
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto 24px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 15px;
    }
    .hero-section h1 {
        font-size: 1.8rem;
    }
}

/* ========== FEATURE CARDS ========== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid var(--primary-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .feature-grid {
        gap: 20px;
    }
}

/* ========== REFERRAL CARD ========== */
.referral-code {
    background: var(--bg-soft);
    border-radius: 60px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 16px 0;
}

.referral-code code {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    word-break: break-all;
}

.copy-btn {
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

/* ========== FOOTER ========== */
.cute-footer {
    background: linear-gradient(135deg, #2d1b2e, #1a0f1a);
    color: var(--primary-light);
    padding: 50px 0 20px;
    margin-top: 60px;
    border-top: 3px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary);
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-description {
    color: #b8a0b5;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: rgba(255, 107, 157, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-item a {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8a0b5;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 107, 157, 0.2);
}

.footer-thanks {
    font-size: 1rem;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #8b6b8a;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-column h4 {
        justify-content: center;
    }
    .contact-item {
        justify-content: center;
    }
    .footer-links a {
        justify-content: center;
    }
}

/* ========== HEART DECORATION ========== */
.heart-decoration {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 35px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 999;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-soft);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .stat-card, .game-card, .feature-card {
    animation: fadeInUp 0.5s ease-out;
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: 5px; }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 20px; }
.mt-5 { margin-top: 30px; }

.mb-1 { margin-bottom: 5px; }
.mb-2 { margin-bottom: 10px; }
.mb-3 { margin-bottom: 15px; }
.mb-4 { margin-bottom: 20px; }
.mb-5 { margin-bottom: 30px; }

.p-1 { padding: 5px; }
.p-2 { padding: 10px; }
.p-3 { padding: 15px; }
.p-4 { padding: 20px; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }

.gap-1 { gap: 5px; }
.gap-2 { gap: 10px; }
.gap-3 { gap: 15px; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.rounded { border-radius: var(--radius-md); }
.rounded-circle { border-radius: 50%; }

.shadow { box-shadow: var(--shadow-sm); }
.shadow-hover:hover { box-shadow: var(--shadow-md); }

/* ========== RESPONSIVE UTILITIES ========== */
@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
    .text-center-mobile {
        text-align: center;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none;
    }
}