:root {
    --nav-color: #0a0e17;
    --hero-bg: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
    --gold: #ffd700;
    --dark-bg: #0f1525;

    --nav-header-bg: #1a1a22;
    --page-bg: #0f0f14;
    --text-accent: #ffffff;
    --card-bg: #22222b;
    --card-border: #2f2f3a;
    --btn-primary: #ffc107;
    --btn-primary-hover: #e0a800;
    --text-muted-light: #b0b0b0;
}

body {
    background-color: var(--page-bg);
    color: var(--text-accent);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    color: #ffffff;
    font-weight: 700;
}

p {
    color: var(--text-muted-light);
    margin-bottom: 1rem;
}

a {
    color: var(--btn-primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #fff;
}

.navbar {
    background-color: var(--nav-header-bg);
    border-bottom: 1px solid var(--card-border);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--gold) !important;
}

.nav-link {
    color: #ccc !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--btn-primary) !important;
}

.btn-gold {
    background-color: var(--btn-primary);
    color: #000;
    font-weight: 600;
    border: none;
    padding: 10px 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--btn-primary-hover);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-outline-light {
    border-color: #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}

section {
    padding: 80px 0;
    border-bottom: 1px solid var(--card-border);
}

.custom-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: #444;
}

.hero-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1f1f2a 0%, var(--page-bg) 70%);
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-features ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2rem;
}

.hero-features li {
    font-size: 1.1rem;
}

.hero-features i {
    color: var(--btn-primary);
    margin-right: 8px;
}

ul.feature-list {
    list-style: none;
    padding-left: 0;
}

ul.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-muted-light);
}

ul.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--btn-primary);
    font-weight: bold;
}

.table-custom {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}

.table-custom th, .table-custom td {
    background-color: transparent;
    color: #fff;
    border-color: var(--card-border);
}

.accordion-item {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
}

.accordion-button {
    background-color: var(--card-bg);
    color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #2a2a35;
    color: var(--btn-primary);
}

.accordion-body {
    color: var(--text-muted-light);
}

.payment-icon {
    font-size: 2rem;
    margin-right: 15px;
    margin-bottom: 15px;
    color: #fff;
    opacity: 0.8;
}

footer {
    background-color: #000;
    padding: 50px 0 20px;
    border-top: 1px solid var(--card-border);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-links a {
    color: #888;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

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

.payment-tables__tabs {
    display: flex;
    border-bottom: 2px solid #333;
    margin-bottom: 20px;
}

.payment-tables__tab {
    background: none;
    border: none;
    color: #aaa;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-tables__tab.active {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
    margin-bottom: -2px;
}

.payment-list__text {
    color: #ddd;
    margin-bottom: 20px;
}

.payment-list__table {
    width: 100%;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.payment-list__table th {
    background: #2a2a2a;
    color: #ffd700;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.payment-list__table td {
    padding: 15px;
    border-top: 1px solid #333;
    vertical-align: middle;
}

.payment-list__payment-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-list__image-wrap {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-list__image-wrap img {
    max-width: 100%;
    max-height: 100%;
}

.payment-list__method {
    margin: 0;
    font-weight: 500;
}

.section-dark {
    background-color: #15151a;
}

.game-card {
    background: var(--dark);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,193,7,0.3);
}

.game-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}

.badge-exclusive {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    color: #000;
}

.badge-top {
    background: linear-gradient(45deg, #dc3545, #ff6b6b);
    color: white;
}

.badge-new {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.game-card__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-card__body {
    padding: 1rem;
}

.game-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: white;
}

.game-card__provider {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 0.8rem;
}

.game-card__details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
}

.game-card__rtp {
    color: #4cd964;
    font-weight: 600;
}

.game-card__volatility {
    color: #ff9500;
}

.game-card__desc {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Small Game Cards */
.game-card-sm {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.game-card-sm:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.03);
}

.game-card-sm__badge {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 2;
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
}

.game-card-sm__img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.game-card-sm__body {
    padding: 0.8rem;
}

.game-card-sm__title {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card-sm__provider {
    font-size: 0.75rem;
    color: #aaa;
    margin-bottom: 0.6rem;
}

/* Provider Cards */
.provider-card {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.provider-card:hover {
    border-color: rgba(255,193,7,0.3);
    background: rgba(255,255,255,0.05);
}

.provider-card__logo {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-card__logo img {
    max-height: 40px;
    max-width: 120px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.provider-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    text-align: left;
    font-size: 0.85rem;
}

.provider-features li {
    padding: 0.2rem 0;
    color: #ccc;
    position: relative;
    padding-left: 1.2rem;
}

.provider-features li:before {
    content: "✓";
    color: var(--warning);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .game-card__img {
        height: 150px;
    }
    
    .game-card-sm__img {
        height: 100px;
    }
    
    .game-card-sm__body {
        padding: 0.6rem;
    }
}