:root {
    --bg: #070810;
    --bg2: #0b0f1f;
    --text: #f3f6ff;
    --muted: rgba(243, 246, 255, .72);
    --stroke: rgba(255, 255, 255, .14);
    --glass: rgba(255, 255, 255, .08);
    --glass2: rgba(255, 255, 255, .12);
    --violet: #8b5cf6;
    --magenta: #ec4899;
    --cyan: #22d3ee;
    --gold: #f6d365;
    --shadow: 0 26px 90px rgba(0, 0, 0, .55);
    --radius: 22px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.galaxy-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.12), transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.08), transparent 50%),
        var(--bg);
}

.smoke-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.smoke-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    animation: drift 25s infinite alternate ease-in-out;
}

.smoke-blob:nth-child(2) {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.05) 0%, transparent 70%);
    top: 20%;
    right: -10%;
    animation-duration: 35s;
    animation-delay: -5s;
}

@keyframes drift {
    0% { transform: translate(-10%, -10%) scale(1); }
    100% { transform: translate(15%, 20%) scale(1.2); }
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 10% 10%, #fff, transparent),
        radial-gradient(1px 1px at 50% 20%, #fff, transparent),
        radial-gradient(1.5px 1.5px at 80% 40%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 30% 70%, #fff, transparent),
        radial-gradient(1.5px 1.5px at 60% 85%, #fff, transparent);
    background-size: 300px 300px;
    opacity: 0.3;
    z-index: -1;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 5px;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    position: relative;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--violet), var(--magenta));
    color: white;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.5);
}

.btn-glass {
    background: var(--glass2);
    color: var(--text);
    border: 1px solid var(--stroke);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top-marquee {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: linear-gradient(90deg, #070810, #1a1b3a);
    border-bottom: 1px solid rgba(34, 211, 238, 0.3);
    display: flex;
    align-items: center;
    z-index: 2000;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-top 25s linear infinite;
}

.marquee-content span {
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0 40px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

@keyframes marquee-top {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

#main-header {
    top: 50px !important;
}

header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    margin: 0 auto;
    max-width: 1200px;
}

.logo {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.logo-trip {
    color: var(--cyan);
    font-weight: 400;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.hero {
    padding-top: 600px;
    padding-bottom: 5px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    background-image: 
        linear-gradient(to bottom, rgba(7, 8, 16, 0.178), rgba(7, 8, 16, 0.027)), 
        url('../img/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 2px solid rgba(34, 211, 238, 0.2);
}

.hero-tag {
    color: var(--cyan);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(34, 211, 238, 0.3));
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom:40px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--muted);
}

.badge-icon {
    background: var(--glass2);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--stroke);
}

.highlights-section {
    padding-top: 0px;
}

.highlights-intro {
    text-align: center;
    margin-bottom: 60px;
}

.highlights-text-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.8;
}

.highlights-text-wrapper p a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    border-bottom: 1px solid rgba(34, 211, 238, 0.3);
}

.highlights-text-wrapper p a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--cyan), 0 0 20px var(--violet);
    border-bottom-color: var(--magenta);
}

.highlights-text-wrapper p a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.highlights-text-wrapper p a:hover::after {
    width: 100%;
}

.p-highlight {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text);
    text-align: justify;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: var(--transition);
}

.color-1 { background: rgba(34, 211, 238, 0.15); fill: var(--cyan); }
.color-2 { background: rgba(139, 92, 246, 0.15); fill: var(--violet); }
.color-3 { background: rgba(246, 211, 101, 0.15); fill: var(--gold); }

.btn::after,
.site-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-30deg);
    animation: shine-sweep 4s infinite ease-in-out;
    pointer-events: none;
}

@keyframes shine-sweep {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.btn:hover::after,
.site-btn:hover::after {
    animation: none;
    opacity: 0;
}

.faq-clean-section {
    padding: 100px 0;
    margin-bottom: 50px;
}

.container-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-item-minimal {
    border-bottom: 1px solid var(--stroke);
}

.faq-trigger-minimal {
    width: 100%;
    padding: 30px 0;
    background: none;
    border: none;
    color: var(--text);
    text-align: left;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
}

.faq-trigger-minimal:hover { color: var(--cyan); }

.faq-chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-minimal {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-minimal p {
    padding-bottom: 30px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 800px;
}

.top-sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.site-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: var(--transition);
    border: 1px solid var(--stroke);
}

.highlighted-card {
    border-color: var(--cyan);
    background: rgba(34, 211, 238, 0.05);
    transform: translateY(-10px);
}

.site-card:hover {
    transform: translateY(-15px);
    border-color: var(--violet);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.site-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-status {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--muted);
}

.site-status.hot {
    background: var(--magenta);
    color: white;
    animation: pulse 1.5s infinite;
}

.site-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.site-card-body p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.site-stats {
    display: flex;
    gap: 20px;
    border-top: 1px solid var(--stroke);
    padding-top: 20px;
}

.s-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.s-stat span {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--muted);
}

.s-stat strong {
    color: var(--cyan);
    font-size: 1rem;
}

.site-btn {
    width: 100%;
    justify-content: center;
    letter-spacing: 1px;
}

.article-h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #fff, var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.rule-item {
    padding: 25px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted);
    border-left: 4px solid var(--cyan);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
}

.rule-item strong {
    display: block;
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rule-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--magenta);
}

footer {
    padding: 100px 0 40px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--stroke);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.8;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.footer-col a:hover {
    color: var(--cyan);
    padding-left: 5px;
}

.footer-payment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--stroke);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--muted);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 2px solid #4ade80;
}

.payment-badge:hover {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border-color: #4ade80;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--stroke);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--muted);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--violet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
    z-index: 100;
}

.site-list-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.site-info-table {
    width: 100%;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.info-row:hover { background: rgba(34, 211, 238, 0.05); }
.info-row:last-child { border-bottom: none; }

.info-label {
    color: var(--muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.info-value {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: right;
}

.info-value strong { color: var(--gold); }

.site-list-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    width: 100%;
}

.site-list-actions .btn {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease;
    border: none;
}

.btn-livechat {
    background: #b95808 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(185, 88, 8, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.btn-login {
    background: #e0e0e0 !important;
    color: #000 !important;
}

.jackpot-wrapper {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    margin-bottom: 15px;
    text-align: center;
}

.jackpot-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 211, 238, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.jackpot-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.jackpot-amount h2 {
    margin: 0;
    color: #fff;
    text-shadow: 0 0 15px rgba(34, 211, 238, 0.6);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #62ff4d;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #5cff4d;
    border-radius: 50%;
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.jackpot-footer p {
    margin: 10px 0 0;
    font-size: 0.8rem;
    color: var(--muted);
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: 15px;
    width: 100%;
    margin-bottom: 50px;
}

.dest-card {
    position: relative;
    height: 220px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dest-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
}

.dest-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 70%);
    z-index: 1;
}

.dest-card div { position: relative; z-index: 2; }
.dest-card h3 {
    font-size: 0.9rem;
    color: #fff;
    margin: 5px 0;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .dest-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
    #main-header { top: 45px !important; }
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 290px;
        margin-top: 30px;
    }
    .hero-btns, .hero-badges { justify-content: center; }
    .dest-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px 20px !important;
    }
    .footer-col.main-col { grid-column: span 2; margin-bottom: 20px; }
    .footer-col:last-child { grid-column: span 2; margin-top: 10px; }
    .top-sites-grid { display: flex !important; flex-direction: column !important; }
}

@media (max-width: 768px) {
    .hero { background-size: 200% auto; background-position: center top; }
    .highlights-intro { margin-bottom: 40px; }
    .p-highlight { font-size: 1rem; }
    .rules-grid { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .dest-card { height: 150px; padding: 10px; }
    .dest-card h3 { font-size: 0.75rem; }
}

@media (max-width: 600px) {
    .dest-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .section-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    :root { --radius: 16px; }
    .container { padding: 0 3px; }
    .section-title { font-size: 1.8rem !important; margin-bottom: 30px; }
    .top-marquee { height: 30px; }
    .marquee-content span { font-size: 0.65rem; padding: 0 20px; }
    #main-header { top: 30px !important; }
    .header-inner { padding: 8px 12px; }
    .logo { font-size: 1.2rem; gap: 6px; }
    .logo img { height: 22px; }
    .header-actions { gap: 6px; }
    .header-actions .btn { padding: 6px 10px; font-size: 0.75rem; border-radius: 5px; }
    .hero { 
        padding-top: 250px !important; 
        padding-bottom: 30px; 
        margin-top: 20px; 
        gap: 20px;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h2 { font-size: 2.2rem !important; line-height: 1.2; }
    .hero-btns { width: 100%; gap: 10px; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .hero-badges { justify-content: center; gap: 10px; }
    .jackpot-section { margin-top: -50px; }
    .jackpot-wrapper { padding: 15px 10px; }
    .jackpot-amount h2 { font-size: 1.6rem !important; }
    .stats-wrapper { padding: 20px 5px !important; }
    .stat-item h3 { font-size: 1.1rem !important; }
    #updateTable th:nth-child(1), #updateTable td:nth-child(1),
    #updateTable th:nth-child(3), #updateTable td:nth-child(3),
    #updateTable th:nth-child(4), #updateTable td:nth-child(4),
    #updateTable th:nth-child(5), #updateTable td:nth-child(5) {
        display: none !important;
    }
    #updateTable th, #updateTable td { padding: 10px 5px !important; font-size: 0.7rem !important; }
    .site-logo { max-height: 20px !important; }
    .btn-book { padding: 6px 8px !important; font-size: 0.65rem !important; }
    .info-row { padding: 8px 12px; }
    .info-label { font-size: 0.75rem; }
    .info-value { font-size: 0.8rem; }
    .site-list-actions .btn { padding: 10px; font-size: 0.85rem; }
    .dest-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .dest-card { height: 130px; padding: 10px; }
    .dest-card h3 { font-size: 0.75rem; }
}

@media (max-width: 360px) {
    .logo { font-size: 1rem; }
    .logo img { height: 18px; }
    .header-actions .btn { padding: 5px 8px; font-size: 0.7rem; letter-spacing: 0; }
    .hero { padding-top: 200px !important; }
    .hero-content h2 { font-size: 1.9rem !important; }
    .section-title { font-size: 1.5rem !important; }
    .highlight-card { padding: 20px 15px; }
    .faq-trigger-minimal { padding: 15px 0; font-size: 0.95rem; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 25px !important; }
    .footer-col.main-col, .footer-col:last-child { grid-column: span 1; }
}

@media (max-width: 320px) {
    .jackpot-amount h2 { font-size: 1.3rem !important; }
    .jackpot-badge { font-size: 0.6rem; }
    .stat-item h3 { font-size: 0.95rem !important; }
    .stat-item p { font-size: 0.5rem !important; }
    #updateTable td a { font-size: 0.65rem !important; }
    .info-label { font-size: 0.65rem; }
    .info-value { font-size: 0.7rem; }
    .badge-item { font-size: 0.7rem; gap: 5px; }
    .badge-icon { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion) {
    * { animation: none !important; transition: none !important; }
    .smoke-blob { display: none; }
}