:root {
    --primary: #ffd700;
    --primary-dark: #b8860b;
    --accent: #2a99ff;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --card-bg: rgba(30, 41, 59, 0.7);
    --glass-bg: rgba(15, 23, 42, 0.8);
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Topbar */
.gb-topbar {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 0.85rem;
}

.gb-topbar__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.gb-pill {
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.gb-pill--login {
    background: transparent;
    border: 1px solid var(--border);
}

.gb-pill--register {
    background: var(--primary);
    color: var(--bg-darker);
}

/* Header */
.gb-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.gb-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gb-logo img {
    height: 50px;
    width: auto;
}

.gb-nav {
    display: flex;
    gap: 30px;
}

.gb-nav__link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.gb-nav__link--active, .gb-nav__link:hover {
    color: var(--primary);
}

/* Hero Slider */
.gb-hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
}

.gb-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gb-slide.active {
    opacity: 1;
}

.gb-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gb-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.gb-dots i {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.gb-dots i.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* Games Section */
.gb-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.gb-section-title i {
    color: var(--primary);
    font-size: 1.5rem;
}

.gb-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.gb-game-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.gb-game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(255, 215, 0, 0.2);
}

.gb-game-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.gb-game-info {
    padding: 15px;
    text-align: center;
}

.gb-game-name {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.gb-play-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: var(--bg-darker);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Jackpot */
.gb-jackpot-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--bg-darker);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.gb-jackpot-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.gb-jackpot-amount {
    font-size: 3rem;
    font-weight: 900;
    font-family: monospace;
}

/* Article Section */
.gb-article-section {
    background: var(--card-bg);
    padding: 60px;
    border-radius: 24px;
    border: 1px solid var(--border);
    margin-bottom: 60px;
}

.gb-article-content section {
    margin-bottom: 2rem;
}

.gb-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.gb-data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: var(--bg-dark);
}

.gb-data-table th, .gb-data-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border);
}

.gb-data-table th {
    background: rgba(255, 215, 0, 0.05);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.gb-data-table td {
    color: var(--text-light);
    font-size: 0.9rem;
}

.gb-article-content h2 {
    color: var(--primary);
    margin-top: 2rem;
}

.gb-affiliate-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.gb-article-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* FAQ */
.gb-faq-item {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}

.gb-faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.gb-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-muted);
}

.gb-faq-item.active .gb-faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.gb-faq-item.active .gb-faq-icon {
    transform: rotate(45deg);
}

/* Footer */
.gb-footer {
    background: var(--bg-darker);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.gb-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.gb-footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.gb-footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.gb-footer-links h4 {
    color: var(--primary);
    margin-bottom: 20px;
}

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

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

.gb-footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.gb-footer-links a:hover {
    color: var(--primary);
}

.gb-copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .gb-nav { display: none; }
    .gb-hero { height: 250px; }
    .gb-jackpot-amount { font-size: 2rem; }
    .gb-article-section { padding: 30px; }
    .gb-games-grid { grid-template-columns: repeat(2, 1fr); }
}
