/* ============================
   MOBILE GLOBAL STYLES
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary-dark: #0a1929;
    --secondary-dark: #0d1f30;
    --accent-gold: #FFD700;
    --accent-blue: #1e88e5;
    --text-primary: #ffffff;
    --text-secondary: #b0bec5;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: linear-gradient(135deg, #1a2836 0%, #0f1921 100%);
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --blue-gradient: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #0a1929 0%, #001529 100%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 70px; /* Space for bottom nav */
}

/* ============================
   TELEGRAM BANNER
   ============================ */
.telegram-banner {
    background: var(--gold-gradient);
    padding: 8px 15px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-banner a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.close-banner {
    position: absolute;
    right: 10px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
}

/* ============================
   MOBILE HEADER (styles in header.php)
   ============================ */

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
}

.menu-btn,
.search-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

.logo-name {
    font-size: 24px;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-actions {
    display: flex;
    gap: 8px;
    padding: 8px 15px;
    overflow-x: auto;
}

.user-balance {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid var(--accent-gold);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-deposit {
    background: var(--blue-gradient);
    color: white;
}

.btn-withdraw {
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
    color: white;
}

.btn-login {
    background: var(--blue-gradient);
    color: white;
}

.btn-register {
    background: var(--gold-gradient);
    color: #000;
}

/* ============================
   SIDE MENU
   ============================ */
.side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 2000;
    transition: left 0.3s ease;
}

.side-menu.active {
    left: 0;
}

.side-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side-menu.active .side-menu-overlay {
    opacity: 1;
}

.side-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: var(--primary-dark);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.side-menu.active .side-menu-content {
    transform: translateX(0);
}

.side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.close-menu {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}

.user-info i {
    font-size: 40px;
    color: var(--accent-gold);
}

.user-name {
    font-weight: 600;
    font-size: 16px;
}

.user-balance {
    font-size: 14px;
    color: var(--accent-gold);
}

.side-menu-nav {
    padding: 10px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}

.menu-item:active {
    background: rgba(255, 255, 255, 0.05);
}

.menu-item.active {
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
    border-left: 3px solid var(--accent-gold);
}

.menu-item i {
    width: 20px;
    text-align: center;
}

.menu-divider {
    height: 1px;
    background: var(--border-color);
    margin: 10px 0;
}

/* ============================
   QUICK NAV
   ============================ */
.quick-nav {
    display: flex;
    background: rgba(13, 31, 48, 0.95);
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    position: sticky;
    top: 0;
    z-index: 999;
}

.quick-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    transition: all 0.3s;
}

.quick-nav-item i {
    font-size: 18px;
}

.quick-nav-item.active {
    color: var(--accent-gold);
}

.quick-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
}

/* ============================
   MAIN CONTENT
   ============================ */
.main-content {
    padding: 15px;
}

/* ============================
   HERO SLIDER
   ============================ */
.hero-slider {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--card-bg);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.slider-container {
    position: relative;
    height: 200px;
}

.slide {
    display: none;
    height: 100%;
}

.slide.active {
    display: flex;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 30px 20px;
    background: radial-gradient(ellipse at center, rgba(30, 136, 229, 0.2) 0%, transparent 70%);
}

.slide-badge {
    background: var(--gold-gradient);
    color: #000;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 15px;
}

.slide-title {
    font-size: 36px;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.slide-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.btn-claim {
    background: var(--gold-gradient);
    color: #000;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: var(--accent-gold);
    width: 24px;
    border-radius: 4px;
}

/* ============================
   SECTIONS
   ============================ */
.featured-matches,
.casino-games,
.live-casino {
    margin-bottom: 25px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.section-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.see-all {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================
   MATCH CARD
   ============================ */
.match-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
}

.match-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 12px;
}

.match-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.match-league {
    color: var(--text-secondary);
    flex: 1;
}

.match-time {
    color: var(--accent-gold);
    font-weight: 600;
}

.match-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.team img {
    width: 35px;
    height: 35px;
}

.team span {
    font-size: 12px;
    font-weight: 600;
}

.match-vs {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 5px;
}

.match-odds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.odd-btn {
    background: rgba(30, 136, 229, 0.2);
    border: 1px solid rgba(30, 136, 229, 0.5);
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.odd-btn:active {
    background: rgba(30, 136, 229, 0.4);
}

.odd-label {
    font-size: 10px;
    color: var(--text-secondary);
}

.odd-value {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

/* ============================
   GAME CARDS
   ============================ */
.games-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.games-scroll::-webkit-scrollbar {
    height: 6px;
}

.games-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.games-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 3px;
}

.game-card {
    min-width: 140px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.game-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
}

.game-card:active .game-play {
    opacity: 1;
}

.live-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #f44336;
    color: white;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
}

.game-info {
    padding: 10px;
}

.game-info h4 {
    font-size: 13px;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-provider {
    font-size: 11px;
    color: var(--text-secondary);
}

/* ============================
   BOTTOM NAVIGATION (legacy)
   ============================ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 25, 41, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 1000;
}

.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 11px;
    padding: 5px 10px;
    position: relative;
    transition: all 0.3s;
}

.bottom-nav .nav-item i {
    font-size: 20px;
}

.bottom-nav .nav-item.active {
    color: var(--accent-gold);
}

.coupon-badge {
    position: absolute;
    top: 0;
    right: 5px;
    background: #f44336;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ============================
   MOBILE BOTTOM NAV
   ============================ */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: linear-gradient(180deg, #12182e 0%, #0a0e1a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 5px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    padding: 8px 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.mobile-nav-item i,
.mobile-nav-item svg {
    font-size: 22px;
    width: 22px;
    height: 22px;
    transition: all 0.3s;
}

.mobile-nav-item span {
    font-size: 9px;
}

.mobile-nav-item.active {
    color: #00b4fd;
}

.mobile-nav-item.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, #00b4fd, #0095e8);
    border-radius: 0 0 4px 4px;
}

/* ============================
   MOBILE SIDEBAR
   ============================ */
.mobile-sidebar-overlay {
    position: fixed;
    left: 0;
    right: 0;
    /* top & bottom — sidebar.php JS ile header/footer arasına ayarlanır */
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2400;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    background: #0d1526;
    z-index: 2410;
    transform: translateY(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0s linear 0.4s;
    overflow-y: auto;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.7);
    border-radius: 24px 24px 0 0;
}

.mobile-sidebar.active {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), visibility 0s linear 0s;
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-sidebar-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.mobile-sidebar-close {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.mobile-sidebar-close:active {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-sidebar-menu {
    padding: 12px 16px 20px;
}

.mobile-sidebar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
}

.mobile-sidebar-item:active {
    background: rgba(255, 255, 255, 0.07);
}

.mobile-sidebar-item-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

/* ============================
   MOBILE MAIN LAYOUT
   ============================ */
.mobile-main {
    margin-top: 60px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.mobile-section {
    padding: 15px;
}

.mobile-section-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

/* ============================
   MOBILE CATEGORY NAV
   ============================ */
.mobile-category-nav {
    background: #0f1420;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: sticky;
    top: 60px;
    z-index: 1500;
}

.mobile-category-nav::-webkit-scrollbar {
    display: none;
}

.mobile-category-list {
    display: flex;
    padding: 0 10px;
    gap: 4px;
    white-space: nowrap;
}

.mobile-category-item {
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    flex-shrink: 0;
}

.mobile-category-item.active {
    color: #00b4fd;
    border-bottom-color: #00b4fd;
}

.mobile-category-item:active {
    color: rgba(0, 180, 253, 0.7);
}

/* ============================
   SPORT CATEGORIES
   ============================ */
.mobile-sport-categories {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 15px 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mobile-sport-categories::-webkit-scrollbar {
    display: none;
}

.mobile-sport-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    min-width: 70px;
    position: relative;
}

.mobile-sport-cat.active {
    background: linear-gradient(135deg, rgba(0, 180, 253, 0.2) 0%, rgba(0, 149, 232, 0.15) 100%);
    border-color: rgba(0, 180, 253, 0.4);
}

.mobile-sport-cat:active {
    transform: scale(0.96);
}

.mobile-sport-cat span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.mobile-sport-cat.active span {
    color: #00b4fd;
}

.mobile-sport-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.mobile-sport-cat.active .mobile-sport-icon {
    color: #00b4fd;
}

.sport-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3366;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================
   MATCHES SECTION
   ============================ */
.mobile-matches-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-matches-list {
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ============================
   LOADING SPINNER
   ============================ */
.mobile-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    color: rgba(255, 255, 255, 0.5);
    gap: 14px;
    font-size: 13px;
}

.mobile-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #00b4fd;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================
   MATCH CARDS
   ============================ */
.mobile-match-card {
    background: linear-gradient(135deg, #1a2240 0%, #101828 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.mobile-match-card:active {
    border-color: rgba(0, 180, 253, 0.3);
}

.mobile-match-time {
    font-size: 11px;
    color: #00b4fd;
    font-weight: 600;
    margin-bottom: 8px;
}

.mobile-match-league {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-match-teams {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.mobile-match-team {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-match-odds-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mobile-match-odd {
    background: rgba(0, 180, 253, 0.1);
    border: 1px solid rgba(0, 180, 253, 0.2);
    border-radius: 8px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-match-odd:active {
    background: rgba(0, 180, 253, 0.25);
}

.mobile-match-odd .team-name {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.mobile-match-odd .odd-value {
    font-size: 15px;
    font-weight: 700;
    color: #00b4fd;
}

.mobile-match-odd.clickable {
    cursor: pointer;
    transition: all 0.18s;
}
.mobile-match-odd.clickable:active {
    transform: scale(0.94);
    background: rgba(0, 180, 253, 0.2);
}
.mobile-match-odd.selected {
    background: rgba(0, 180, 253, 0.28);
    border-color: #00b4fd;
}
.mobile-match-odd.selected .odd-value {
    color: #fff;
}

/* ============================
   FLOATING SUPPORT
   ============================ */
.floating-support {
    position: fixed;
    bottom: 90px;
    right: 15px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.floating-support:active {
    transform: scale(0.95);
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================
   UTILITY CLASSES
   ============================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }

/* ============================
   SCROLLBAR STYLING
   ============================ */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFA500;
}
