: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: 12px 28px;
    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);
}

.btn-gold {
    background: var(--gold);
    color: #111;
}

.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%);
    }
}

.jackpot-section {
    padding: 10px 0;
    margin-top: -110px;
    position: relative;
    z-index: 10;
}

.jackpot-card {
    padding: 10px 5px;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(34, 211, 238, 0.15));
    border: 1px solid rgba(34, 211, 238, 0.2);
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.jackpot-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(236, 72, 153, 0.2);
    color: var(--magenta);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--magenta);
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}

.jackpot-amount {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
}

.jackpot-amount h2 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.6);
    font-family: 'Courier New', monospace;
    margin: 0;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(236, 72, 153, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0);
    }
}

#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 32px;
    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-nebula {
    color: var(--text);
    text-shadow: 0 0 15px rgba(34, 211, 238, 0.6);
}

.logo-trip {
    color: var(--cyan);
    font-weight: 400;
}

.logo img {
    height: 32px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

nav ul li a {
    position: relative;
    padding: 8px 0;
    text-decoration: none;
    color: var(--muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--text);
    text-shadow: 0 0 10px var(--cyan);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.hero {
    padding-top: 150px;
    padding-bottom: 120px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    margin-top: 50px;
    background-image: url('../img/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.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-content h2 {
    font-size: clamp(3rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.badge {
    background: var(--glass);
    border: 1px solid var(--stroke);
    padding: 6px 16px;
    border-radius: 5px;
    font-size: 0.8rem;
    color: var(--muted);
}

.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);
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-visual .orb-container {
    display: none;
}

.highlights-section {
    padding-top: 50px;
    padding-bottom: 80px;
}

.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;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.highlight-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: left;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: var(--transition);
}

.icon-box svg {
    width: 30px;
    height: 30px;
    transition: transform 0.5s ease;
}

.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);
}

.color-4 {
    background: rgba(236, 72, 153, 0.15);
    fill: var(--magenta);
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.highlight-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.highlight-card:hover .card-glow {
    opacity: 1;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: 15px;
    width: 100%;
}

.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;
} 

.promos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.promo-card {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    transition: var(--transition);
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.popular-border {
    border: 1px solid var(--cyan) !important;
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.1);
}

.promo-card:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.05);
}

.promo-header h2 {
    font-size: 2rem;
    margin: 15px 0;
    color: #fff;
}

.promo-pill {
    display: inline-block;
    background: var(--magenta);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.promo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promo-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--muted);
}

.promo-list li::before {
    content: '✓';
    color: var(--cyan);
}

.promo-list li span {
    color: var(--cyan);
    font-weight: bold;
}

.promo-footer small {
    display: block;
    margin-top: 15px;
    opacity: 0.5;
    font-size: 0.75rem;
    text-align: center;
}

.stats-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    flex: 1;
    z-index: 2;
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #fff, var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.3));
}

.stat-item p {
    color: var(--muted);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--stroke), transparent);
}

.table-section {
    margin-bottom: 120px;
}

.table-controls {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.search-wrapper {
    position: relative;
    flex: 2;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

.search-input {
    width: 100%;
    padding-left: 50px !important;
    background: var(--glass);
    border: 1px solid var(--stroke);
    padding: 12px 20px;
    border-radius: 12px;
    color: white;
    outline: none;
}

.type-select {
    flex: 1;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background: var(--glass);
    border: 1px solid var(--stroke);
    padding: 12px 20px;
    border-radius: 12px;
    color: var(--text);
    font-weight: 600;
    outline: none;
    transition: var(--transition);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2322d3ee' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
}

.type-select:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
}

.type-select option {
    background-color: var(--bg2);
    color: var(--text);
    padding: 10px;
}

.table-container {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
    min-width: 800px;
}

th {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    font-size: 0.85rem;
    color: var(--muted);
    text-transform: uppercase;
    border-bottom: 2px solid var(--stroke);
    letter-spacing: 1px;
    font-weight: 700;
}

td {
    padding: 20px;
    border-bottom: 1px solid var(--stroke);
    font-size: 0.95rem;
    vertical-align: middle;
    transition: background 0.3s ease;
}

tbody tr:hover {
    background: rgba(139, 92, 246, 0.05);
}

.site-logo {
    max-height: 50px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s ease;
    cursor: pointer;
}

#tableBody td div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

#updateTable th:nth-child(2),
#updateTable td:nth-child(2) {
    text-align: center;
}

#tableBody td a {
    text-shadow: 0 0 5px rgba(34, 211, 238, 0.3);
}

#tableBody td a:hover {
    color: #fff !important;
    text-shadow: 0 0 12px var(--cyan), 0 0 20px var(--violet);
    transform: scale(1.05);
}

.winrate-cell {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--cyan);
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.4);
}

.btn-book {
    background: linear-gradient(135deg, var(--violet), var(--magenta));
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 800;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-book:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.btn::after,
.btn-book::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,
.btn-book:hover::after,
.site-btn:hover::after {
    animation: none;
    opacity: 0;
}

.highlight-row {
    background: rgba(139, 92, 246, 0.08) !important;
    border-left: 2px solid var(--cyan);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 120px;
    align-items: center;
}

.tier-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tier-card {
    padding: 30px;
    border-left: 4px solid var(--stroke);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tier-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.tier-badge {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    letter-spacing: 1px;
}

.tier-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
}

.tier-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.tier-card:hover {
    transform: translateX(10px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
}

.tier-1:hover {
    border-left-color: var(--violet);
}

.tier-2:hover {
    border-left-color: var(--cyan);
    box-shadow: -10px 0 20px rgba(34, 211, 238, 0.05);
}

.tier-3:hover {
    border-left-color: var(--gold);
    box-shadow: -10px 0 20px rgba(246, 211, 101, 0.05);
}

.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-trigger-minimal[aria-expanded="true"] .faq-chevron {
    transform: rotate(-135deg);
    border-color: var(--cyan);
}

.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;
}

.featured-logo {
    max-height: 45px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.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-full-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--stroke);
    text-align: justify;
}

.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;
}

.article-block p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--muted);
}

.article-hr {
    border: none;
    border-top: 1px solid var(--stroke);
    margin: 40px 0;
}

.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;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--cyan) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    padding: 5px 12px;
    border-radius: 6px;
}

.social-links a:hover {
    background: rgba(34, 211, 238, 0.1);
}

.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;
}

.back-to-top.show {
    opacity: 1;
}

@media (max-width: 1024px) {
    .dest-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    #main-header {
        top: 45px !important;
    }
    .mobile-menu-btn {
        display: flex;
    }
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg2);
        backdrop-filter: blur(20px);
        display: none;
        padding: 20px;
        border-bottom: 1px solid var(--stroke);
    }
    nav.show {
        display: block;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 80px;
    }
    .hero-btns,
    .hero-badges {
        justify-content: center;
    }
    .hero-visual {
        display: none;
    }
    .promos,
    .split-section {
        grid-template-columns: 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;
    }
    .card-hemat {
        order: 1 !important;
        border: 2px solid var(--cyan);
        background: rgba(34, 211, 238, 0.1);
    }
    .card-jurus {
        order: 2 !important;
    }
    .card-menu {
        order: 3 !important;
    }
}

@media (max-width: 768px) {
    #tableBody td a {
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        letter-spacing: 0px !important;
        display: block;
        width: 100%;
        text-align: center;
    }
    #tableBody td:nth-child(2) {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .highlights-intro {
        margin-bottom: 40px;
    }
    .p-highlight {
        font-size: 1rem;
    }
    .table-controls {
        gap: 8px !important;
        margin-bottom: 15px !important;
    }
    .search-input,
    .type-select {
        padding: 8px 10px !important;
        font-size: 0.7rem !important;
        border-radius: 8px !important;
    }
    #updateTable th:nth-child(1),
    #updateTable td:nth-child(1),
    #updateTable th:nth-child(4),
    #updateTable td:nth-child(4) {
        display: none;
    }
    #updateTable th,
    #updateTable td {
        padding: 8px 5px !important;
        font-size: 0.65rem !important;
    }
    .site-logo {
        max-height: 18px !important;
    }
    .btn-book {
        padding: 5px 8px !important;
        font-size: 0.6rem !important;
    }
    .table-container {
        overflow-x: hidden !important;
        border-radius: 10px !important;
    }
    table {
        min-width: 100% !important;
    }
    .stats-wrapper {
        padding: 15px 5px !important;
        gap: 2px !important;
    }
    .stat-item h3 {
        font-size: 1.2rem !important;
    }
    .stat-item p {
        font-size: 0.55rem !important;
        white-space: nowrap;
    }
    .stat-icon {
        font-size: 1rem !important;
    }
    .stat-divider {
        height: 25px !important;
    }
    .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) {
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .top-marquee { height: 30px; }
    .marquee-content span { font-size: 0.65rem; padding: 0 20px; }
    #main-header { top: 30px !important; }
    .header-inner { padding: 10px 15px; }
    .logo { font-size: 1.2rem; }
    .logo img { height: 24px; }
    .hero { padding-top: 60px; padding-bottom: 40px; margin-top: 30px; }
    .hero-content h2 { font-size: 2.2rem !important; }
    .hero-content p { font-size: 0.9rem; margin-bottom: 25px; }
    .hero-btns { flex-direction: column; width: 100%; gap: 10px; }
    .btn { width: 100%; justify-content: center; padding: 10px; font-size: 0.85rem; }
    .hero-badges { flex-wrap: wrap; gap: 10px; }
    .jackpot-section { margin-top: -60px; }
    .jackpot-amount h2 { font-size: 1.8rem !important; }
    .jackpot-badge { font-size: 0.6rem; padding: 4px 12px; }
    .table-controls { flex-direction: column; align-items: stretch; }
    .search-wrapper, .type-select { width: 100%; }
    #tableBody td a { font-size: 0.6rem !important; }
    .winrate-cell { font-size: 0.8rem; }
    .stats-wrapper { border-radius: 15px; }
    .stat-item h3 { font-size: 1.1rem !important; }
}

@media (max-width: 360px) {
    :root {
        --radius: 12px;
    }
    .container { padding: 0 8px; }
    .section-title { font-size: 1.4rem !important; margin-bottom: 30px; }
    #tableBody td a {
        font-size: 0.7rem !important;
        padding: 4px 2px !important;
    }
    .winrate-cell {
        font-size: 0.85rem !important;
    }
    .site-logo {
        max-height: 15px !important;
    }
    .highlight-card { padding: 20px 15px; }
    .icon-box { width: 45px; height: 45px; }
    .icon-box svg { width: 22px; height: 22px; }
    .footer-grid { grid-template-columns: 1fr !important; }
    .footer-col.main-col, .footer-col:last-child { grid-column: span 1; }
    .payment-badge { font-size: 0.6rem; padding: 3px 6px; }
    .promo-card { padding: 25px 15px; }
    .promo-header h2 { font-size: 1.4rem; }
    .promo-list li { font-size: 0.8rem; }
    #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:nth-child(2), 
    #updateTable td:nth-child(2) {
        width: auto !important;
    }
}

@media (max-width: 320px) {
    .hero-content h2 { font-size: 1.8rem !important; }
    .jackpot-amount h2 { font-size: 1.5rem !important; }
    .stat-item p { font-size: 0.5rem !important; letter-spacing: 0.5px; }
    .btn-book { padding: 4px 6px !important; font-size: 0.55rem !important; }
}

@media (prefers-reduced-motion) {
    * {
        animation: none !important;
        transition: none !important;
    }
    .smoke-blob {
        display: none;
    }
}