/* Jaiclub Stylesheet - Core Design System (Fixed & Optimized) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-primary: #1A1A2C;
    --bg-secondary: #24243A;
    --bg-tertiary: #2E2E48;
    --btn-primary: #EF7C7B;
    --btn-secondary: #5E9EFA;
    --mixed-gradient: linear-gradient(135deg, #EF7C7B, #5E9EFA);
    
    --text-white: #ffffff;
    --text-muted: #8e92a8;
    
    --gold: #f3c239;
    --gold-dark: #b88e14;
    --gold-glow: rgba(243, 194, 57, 0.45);
    --gold-gradient: linear-gradient(135deg, #f5d061, #f3c239, #d49a17);
    
    --red: #f84545;
    --red-gradient: linear-gradient(135deg, #ff5e62, #ff2525);
    
    --green: #2cd379;
    --green-gradient: linear-gradient(135deg, #56ab2f, #a8e063);
    
    --violet: #8e44ad;
    --violet-gradient: linear-gradient(135deg, #a044ff, #6a3093);
    
    --card-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    
    /* Layout Variables */
    --max-width: 800px;
    --header-height: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6, .brand-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
    border: 1px solid var(--glass-border);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Header Styles */
header {
    background: rgba(26, 26, 44, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.header-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.1));
}

.site-title {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

/* Responsive Nav Menus */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-desktop a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--text-white);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-mobile {
    display: none;
}

/* CTAs in Desktop Nav */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-login {
    border: none;
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    background: var(--mixed-gradient);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(239, 124, 123, 0.3), 0 4px 15px rgba(94, 158, 250, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-login:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 124, 123, 0.4), 0 6px 20px rgba(94, 158, 250, 0.3);
}

.btn-login:active {
    transform: scale(0.96);
}

.btn-register {
    border: none;
    background: var(--mixed-gradient);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(239, 124, 123, 0.4), 0 4px 15px rgba(94, 158, 250, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-register:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 124, 123, 0.5), 0 6px 20px rgba(94, 158, 250, 0.4);
}

.btn-register:active {
    transform: scale(0.96);
}

/* Custom Primary & Secondary Buttons */
.btn-primary, .btn-secondary {
    background: var(--mixed-gradient);
    color: var(--text-white);
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(239, 124, 123, 0.3), 0 4px 15px rgba(94, 158, 250, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover, .btn-secondary:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 124, 123, 0.4), 0 8px 25px rgba(94, 158, 250, 0.3);
}

.btn-primary:active, .btn-secondary:active {
    transform: scale(0.96);
}

/* User Info Panel in Header */
.user-panel {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-balance {
    background: rgba(243, 194, 57, 0.1);
    border: 1px dashed var(--gold);
    padding: 6px 14px;
    border-radius: 20px;
    color: var(--gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.user-username {
    font-weight: 500;
}

.btn-logout {
    color: var(--text-muted);
}
.btn-logout:hover {
    color: var(--red);
}

/* Layout Padding for Fixed Header */
main {
    margin-top: var(--header-height);
    flex: 1;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at top, rgba(46, 46, 72, 0.8) 0%, rgba(26, 26, 44, 1) 70%);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(243, 194, 57, 0.08) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-tagline {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-buttons .btn-register {
    padding: 14px 32px;
    font-size: 1rem;
}

.hero-buttons .btn-login {
    padding: 14px 32px;
    font-size: 1rem;
    color: #fff;
}

/* Main Section Content */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin: 60px 0 30px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto 80px;
    padding: 0 20px;
}

.game-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(243, 194, 57, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(243, 194, 57, 0.1);
}

.game-img-container {
    height: 240px;
    position: relative;
    background: #151a2d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon-placeholder {
    font-size: 80px;
    color: var(--gold);
    opacity: 0.8;
}

.game-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    color: var(--bg-primary);
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.game-name {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.game-desc {
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.game-players {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-play {
    background: var(--mixed-gradient);
    color: var(--text-white);
    padding: 11px 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(239, 124, 123, 0.3), 0 4px 15px rgba(94, 158, 250, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-play:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 124, 123, 0.4), 0 6px 20px rgba(94, 158, 250, 0.3);
}

.btn-play:active {
    transform: scale(0.96);
}

/* Wingo Interactive Page Styles */
.wingo-container {
    max-width: 1000px;
    margin: 40px auto 80px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
}

.wingo-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
}

.wingo-timer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.wingo-timer-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.timer-countdown {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    font-family: monospace;
    background: rgba(243,194,57,0.08);
    padding: 5px 15px;
    border-radius: 8px;
    border: 1px solid rgba(243,194,57,0.2);
}

.wingo-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.color-btn {
    border: none;
    border-radius: 10px;
    padding: 15px 0;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.2s ease;
}

.color-btn:hover {
    transform: scale(1.05);
}

.btn-green-bet { background: var(--green-gradient); box-shadow: 0 4px 15px rgba(44, 211, 121, 0.4); }
.btn-violet-bet { background: var(--violet-gradient); box-shadow: 0 4px 15px rgba(142, 68, 173, 0.4); }
.btn-red-bet { background: var(--red-gradient); box-shadow: 0 4px 15px rgba(248, 69, 111, 0.4); }

.wingo-numbers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.num-btn {
    border: 1px solid var(--glass-border);
    background: var(--bg-tertiary);
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.num-btn:hover {
    border-color: var(--gold);
    background: rgba(243, 194, 57, 0.05);
    color: var(--gold);
}

.num-btn.selected {
    background: var(--mixed-gradient);
    color: var(--text-white);
    border-color: #EF7C7B;
}

.wingo-bet-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.bet-input-wrapper {
    display: flex;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-primary);
}

.bet-currency {
    background: var(--bg-tertiary);
    color: var(--gold);
    padding: 12px 15px;
    font-weight: 700;
}

.bet-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    padding: 12px;
    flex: 1;
    font-size: 1.1rem;
    font-family: monospace;
}

.wingo-history {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--card-shadow);
}

.history-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    font-family: monospace;
}

.history-round {
    color: var(--text-muted);
}

.history-result-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}

.badge-green { background: var(--green); }
.badge-red { background: var(--red); }
.badge-violet { background: var(--violet); }

/* Winners Ticker */
.winners-section {
    max-width: var(--max-width);
    margin: 0 auto 80px;
    padding: 0 20px;
}

.winners-ticker-box {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    height: 200px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--card-shadow);
}

.winners-list {
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    transition: transform 0.5s ease-in-out;
}

.winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 0.95rem;
}

.winner-avatar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.winner-avatar-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(243, 194, 57, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: bold;
}

.winner-game {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3px 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.winner-amount {
    color: var(--green);
    font-weight: 700;
}

/* Blogging Hub Styling */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto 80px;
    padding: 0 20px;
}

.blog-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 194, 57, 0.2);
}

.blog-card-img {
    height: 180px;
    background: #141b2c;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-card-img i {
    font-size: 60px;
    color: var(--gold);
    opacity: 0.4;
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta-info {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

.blog-readmore {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-readmore:hover {
    gap: 10px;
}

/* User authentication forms (Login & Register) */
.auth-container {
    max-width: 450px;
    margin: 60px auto 100px;
    padding: 0 20px;
}

.auth-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.auth-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-input {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-white);
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: var(--gold);
}

.auth-msg {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.auth-msg.error {
    background: rgba(248, 69, 69, 0.1);
    border: 1px solid var(--red);
    color: #ff8080;
}

.auth-msg.success {
    background: rgba(44, 211, 121, 0.1);
    border: 1px solid var(--green);
    color: #8effbf;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--gold);
    font-weight: 600;
}

/* 3D Claim Bonus Popup */
.claim-popup {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 260px;
    background: linear-gradient(145deg, #181d33, #0d1020) padding-box,
                linear-gradient(to bottom right, #f5d061, #f3c239, #3498db) border-box;
    border: 2px solid transparent;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.8), 0 0 20px rgba(243, 194, 57, 0.15);
    padding: 16px;
    z-index: 10000;
    transition: transform 0.1s ease-out, opacity 0.5s ease;
    perspective: 1000px;
    transform-style: preserve-3d;
    animation: bounceFloat 5s infinite ease-in-out;
}

.claim-popup.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100px) scale(0.8);
}

.claim-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    z-index: 10;
}

.claim-close-btn:hover {
    color: var(--red);
}

.claim-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translateZ(20px); /* 3D pop depth */
}

.claim-gift-box {
    font-size: 38px;
    margin-bottom: 10px;
    animation: wiggle 2s infinite ease-in-out;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(243, 194, 57, 0.3));
}

.claim-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 6px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.claim-desc {
    font-size: 0.8rem;
    color: var(--text-white);
    margin-bottom: 14px;
    line-height: 1.4;
}

.claim-btn {
    background: var(--mixed-gradient);
    color: var(--text-white);
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(239, 124, 123, 0.4), 0 4px 15px rgba(94, 158, 250, 0.2);
    display: block;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
}

.claim-btn:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 124, 123, 0.5), 0 6px 20px rgba(94, 158, 250, 0.4);
}

.claim-btn:active {
    transform: scale(0.96);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--bg-secondary);
    border-left: 4px solid var(--gold);
    color: var(--text-white);
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.show {
    transform: translateX(0);
}

.toast.toast-success {
    border-left-color: var(--green);
}

.toast.toast-error {
    border-left-color: var(--red);
}

/* Footer Styles */
footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 30px 20px 20px;
    margin-top: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand-title {
    font-size: 1.3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.footer-brand-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-links-title {
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-list a {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-links-list a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon-btn i {
    font-size: 0.9rem;
}

.social-icon-btn:hover {
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.social-icon-btn.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-icon-btn.telegram:hover { background: #0088cc; }
.social-icon-btn.whatsapp:hover { background: #25d366; }
.social-icon-btn.facebook:hover { background: #1877f2; }

.social-icon-btn:hover i {
    color: var(--text-white);
}

.footer-guidelines {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.5;
}

.disclaimer-badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--red);
    color: var(--text-white);
    font-weight: 800;
    font-size: 0.75rem;
    border: 2px solid var(--text-white);
    box-shadow: 0 0 10px rgba(248, 69, 69, 0.4);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 20px auto 0;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Animations */
@keyframes bounceFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-10px) rotateX(2deg); }
}

/* Mobile App-like Bottom Navigation Styles */
.mobile-bottom-nav {
    display: none;
}

/* Platform Features Grid (Fixed) */
.features-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Responsive Table Wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 25px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.table-responsive table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 550px;
}

/* Main content container wrapping the page body cards */
.main-content-container {
    max-width: 800px;
    width: 100%;
    margin: 40px auto 80px;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Media Queries (RESPONSIVENESS) */

/* Laptop & Medium Screen Optimization */
@media (max-width: 1024px) {
    .nav-desktop {
        gap: 15px;
    }
    .logo-link {
        gap: 5px;
    }
    .site-title {
        font-size: 1.5rem;
    }
    .footer-container {
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-guidelines {
        grid-column: span 2;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 75px; /* Add bottom margin so sticky nav does not overlap footer contents */
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* MOBILE NAVIGATION ENFORCEMENT */
    .nav-desktop {
        display: none !important; /* Force hide desktop navigation */
    }
    
    .nav-mobile {
        display: flex !important; /* Show mobile navigation */
        align-items: center;
        gap: 10px;
    }

    header {
        height: 50px !important;
    }

    /* Fix: main margin-top must match new header height */
    main {
        margin-top: 50px !important;
    }

    .site-title {
        font-size: 1.15rem !important;
    }

    .logo-img {
        height: 28px !important;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .wingo-container {
        grid-template-columns: 1fr;
    }

    .main-content-container {
        margin: 20px auto 40px;
        padding: 0 15px;
    }

    /* Reduce card and product section sizes on mobile */
    .wingo-card {
        padding: 16px !important;
        border-radius: 12px !important;
        margin-bottom: 20px !important;
    }

    .wingo-card h2 {
        font-size: 1.25rem !important;
        margin-bottom: 12px !important;
    }

    .wingo-card p {
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
        line-height: 1.5 !important;
    }

    .wingo-card .features-grid {
        gap: 15px !important;
    }
    
    /* Centered, balanced, user-friendly mobile popup */
    .claim-popup {
        bottom: 80px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
        width: 280px !important;
        padding: 12px !important;
    }

    .claim-popup:hover {
        transform: translateX(-50%) !important;
    }

    .claim-popup .claim-gift-box {
        font-size: 32px;
        margin-bottom: 8px;
    }
    .claim-popup .claim-title {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    .claim-popup .claim-desc {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    .claim-popup .claim-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    /* Sticky Bottom Nav Bar styling */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        height: 65px;
        background: rgba(26, 26, 44, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        justify-content: space-around;
        align-items: center;
        z-index: 9999;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .mobile-bottom-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        font-size: 0.7rem;
        font-weight: 500;
        text-decoration: none;
        gap: 3px;
        transition: all 0.2s ease;
        flex: 1;
        height: 100%;
    }

    .mobile-bottom-link i {
        font-size: 1.25rem;
    }

    .mobile-bottom-link.active,
    .mobile-bottom-link:hover {
        color: var(--gold);
    }

    .mobile-bottom-link.highlight i {
        background: var(--mixed-gradient);
        color: var(--text-white);
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -20px;
        box-shadow: 0 4px 15px rgba(239, 124, 123, 0.3), 0 4px 15px rgba(94, 158, 250, 0.3);
        border: 2px solid var(--bg-secondary);
        font-size: 1.1rem;
        transition: transform 0.2s;
    }
    
    .mobile-bottom-link.highlight:hover i {
        transform: translateY(-2px) scale(1.05);
    }

    .mobile-bottom-link.highlight span {
        margin-top: -3px;
        font-weight: 600;
    }
}

@media (max-width: 580px) {
    .blogs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-guidelines {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-bottom: 20px; /* Safe space */
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-buttons .btn-register,
    .hero-buttons .btn-login {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 12px 20px;
    }
}

/* Wiggle animation for gift box in claim popup */
@keyframes wiggle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    15% { transform: rotate(-10deg) scale(1.1); }
    30% { transform: rotate(10deg) scale(1.1); }
    45% { transform: rotate(-5deg) scale(1.05); }
    60% { transform: rotate(5deg) scale(1.05); }
    75% { transform: rotate(0deg) scale(1); }
}

.login-img-wrap {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto 20px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.login-img {
    display: block;
    width: 100%;
    height: auto;      /* Keeps original ratio */
    max-width: 100%;
    object-fit: contain;
    border-radius: 16px;
}

/* Tablet */
@media (max-width: 768px) {
    .login-img-wrap {
        max-width: 100%;
        border-radius: 12px;
    }

    .login-img {
        border-radius: 12px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .login-img-wrap {
        width: 100%;
        border-radius: 10px;
    }

    .login-img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
}

/* Card & Layout Helper Classes for Cleaner Markup */
.wingo-card {
    margin-bottom: 30px;
}
.wingo-card:last-child {
    margin-bottom: 0;
}
.wingo-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}
.wingo-card p:last-child {
    margin-bottom: 0;
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--gold);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
}
.card-subtitle {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--gold);
    font-weight: 600;
}

.features-auto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    width: 100%;
    margin-bottom: 25px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 16px;
    transition: all 0.3s ease;
}
.feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(243, 194, 57, 0.2);
    transform: translateY(-2px);
}
.feature-item-center {
    text-align: center;
}
.feature-item-center i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 8px;
}
.feature-item-center p {
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 !important;
}

.benefit-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}
.benefit-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(243, 194, 57, 0.2);
}
.benefit-item i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}
.benefit-item span {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}
.step-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(243, 194, 57, 0.2);
    border-left-color: var(--gold);
}
.step-item .step-number {
    font-weight: 800;
    color: var(--gold);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}
.step-item h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.step-item p {
    color: var(--text-muted) !important;
    font-size: 0.9rem;
    margin: 0 !important;
    line-height: 1.5;
}

.card-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
}
.card-list li {
    display: flex;
    align-items: center;
}
.card-list i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(243, 194, 57, 0.2);
    background: rgba(255, 255, 255, 0.02);
}
.faq-item h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.faq-item p {
    color: var(--text-muted) !important;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 !important;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag-badge {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid var(--glass-border);
    transition: all 0.2s ease;
    cursor: default;
}
.tag-badge:hover {
    color: var(--gold);
    border-color: rgba(243, 194, 57, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.alert-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255, 200, 0, 0.04);
    border: 1px solid rgba(243, 194, 57, 0.2);
    border-radius: 10px;
    padding: 14px 18px;
    transition: all 0.3s ease;
}
.alert-item:hover {
    background: rgba(255, 200, 0, 0.06);
    border-color: rgba(243, 194, 57, 0.3);
}
.alert-item i {
    color: var(--gold);
    margin-top: 3px;
    font-size: 1rem;
    flex-shrink: 0;
}
.alert-item span {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── Feature-item heading (replaces inline h4 styles) ── */
.feature-item h4 {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}
.feature-item h4 i {
    margin-right: 6px;
}
.feature-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ── Benefits grid (replaces inline display:grid wrapper) ── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
}

/* ── Platform download cards (Android / iOS) ── */
.platform-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}
.platform-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.platform-card:hover {
    border-color: rgba(243, 194, 57, 0.2);
    background: rgba(255, 255, 255, 0.035);
}
.platform-card-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.platform-card-icon.android { color: var(--green); }
.platform-card-icon.ios      { color: #ffffff; }
.platform-card h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 8px;
}
.platform-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
}
.platform-card .btn-play {
    display: block;
    width: 100%;
}

/* ── Steps list wrapper (replaces inline flex column) ── */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── Process panel (login / register inner card) ── */
.process-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
}
.process-panel .card-subtitle {
    margin-bottom: 15px;
}

/* ── Process ordered list ── */
.process-ol {
    margin-left: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: decimal;
}

/* ── Security / tips plain list ── */
.icon-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}
.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.icon-list li i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── Troubleshooting mini-cards ── */
.trouble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}
.trouble-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 14px;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.trouble-card:hover {
    border-color: rgba(243, 194, 57, 0.2);
    background: rgba(255, 255, 255, 0.04);
}
.trouble-card h5 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.trouble-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0 !important;
}

/* ── FAQ list wrapper ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ── Util: margin-bottom helpers ── */
.mb-25 { margin-bottom: 25px; }
.mt-25 { margin-top: 25px; }

/* Subpage Layout System */
.subpage-header {
    background: radial-gradient(circle at top, #191c2c 0%, #0a0b10 100%);
    padding: 60px 0 30px;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
}
.subpage-title {
    font-size: 2.8rem;
    margin-bottom: 12px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}
.ai-assistant-card {
    padding: 20px;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    margin: 20px auto;
    max-width: 600px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--card-shadow);
}
.ai-assistant-title {
    color: var(--text-white);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
}
.ai-assistant-form {
    display: flex;
    gap: 10px;
}
.ai-assistant-input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--bg-primary);
    color: var(--text-white);
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}
.ai-assistant-input:focus {
    border-color: var(--gold);
}
.ai-assistant-btn {
    background: var(--gold-gradient);
    border: none;
    padding: 0 25px;
    border-radius: 30px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
    font-family: 'Outfit', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.ai-assistant-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
.ai-assistant-result {
    display: none;
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--gold);
    color: var(--text-muted);
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
}
.subpage-content {
    max-width: 800px;
    margin: 40px auto;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    padding: 0 20px;
}
.subpage-content h2 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 8px;
}
.subpage-content p {
    margin-bottom: 20px;
}

/* Blog Modal Overlay */
.blog-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.blog-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.blog-modal-container {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    max-width: 650px;
    width: 90%;
    border-radius: 16px;
    padding: 35px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--card-shadow);
}
.blog-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}
.blog-modal-close:hover {
    color: var(--gold);
}
.blog-modal-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
}
.blog-modal-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blog-modal-content {
    color: var(--text-white);
    line-height: 1.7;
    font-size: 1rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}