/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: #0a0e17;
    color: #e0e6f0;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff6b35;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #00d4ff;
    color: #0a0e17;
}

.btn-primary:hover {
    background: #ff6b35;
    color: #fff;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #0a0e17;
    transform: scale(1.05);
}

.btn-brand {
    background: linear-gradient(135deg, #00d4ff, #0077be);
    color: #fff;
    width: 100%;
    padding: 12px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* ===== HEADER ===== */
.header {
    background: #0f1825;
    border-bottom: 1px solid #1a2a3a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav__list {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav__list a {
    color: #a0b4c8;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav__list a:hover,
.nav__list a.active {
    color: #00d4ff;
    border-bottom-color: #00d4ff;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    color: #e0e6f0;
    font-size: 28px;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #0a0e17 0%, #141e2b 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero__content {
    flex: 1;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 20px;
    color: #b0c8e0;
    margin-bottom: 30px;
}

.hero__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero__image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}

.hero__image img {
    width: 100%;
    height: auto;
}

/* ===== BRANDS ===== */
.brands {
    padding: 60px 0;
}

.brands h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.brands__sub {
    text-align: center;
    color: #b0c8e0;
    font-size: 18px;
    margin-bottom: 40px;
}

.brands__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.brand-card {
    background: #0f1825;
    border-radius: 16px;
    border: 1px solid #1a2a3a;
    overflow: hidden;
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-8px);
    border-color: #00d4ff;
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1);
}

.brand-card__header {
    padding: 20px 24px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1a2a3a;
}

.brand-card__header img {
    height: 40px;
    width: auto;
}

.badge {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background: #00d4ff22;
    color: #00d4ff;
    border: 1px solid #00d4ff44;
}

.brand-card__body {
    padding: 20px 24px 24px;
}

.brand-card__features {
    list-style: none;
    margin-bottom: 20px;
}

.brand-card__features li {
    padding: 6px 0;
    color: #c0d4e8;
    font-size: 15px;
}

.brand-card__terms {
    display: block;
    text-align: center;
    color: #6a7e92;
    font-size: 12px;
    margin-top: 10px;
}

/* ===== COMPARE TABLE ===== */
.compare {
    padding: 60px 0;
    background: #0f1825;
}

.compare h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.table-wrapper {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.compare-table th,
.compare-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid #1a2a3a;
}

.compare-table th {
    background: #141e2b;
    color: #00d4ff;
    font-weight: 700;
    font-size: 16px;
}

.compare-table td {
    color: #c0d4e8;
}

.compare-table tr:hover td {
    background: #141e2b;
}

.compare__note {
    margin-top: 25px;
    padding: 20px;
    background: #141e2b;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
    color: #b0c8e0;
}

/* ===== WHY ===== */
.why {
    padding: 60px 0;
}

.why h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why__item {
    background: #0f1825;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #1a2a3a;
    transition: all 0.3s ease;
}

.why__item:hover {
    border-color: #00d4ff;
    transform: translateY(-4px);
}

.why__item h3 {
    color: #00d4ff;
    font-size: 20px;
    margin-bottom: 12px;
}

.why__item p {
    color: #b0c8e0;
}

/* ===== FAQ ===== */
.faq {
    padding: 60px 0;
    background: #0f1825;
}

.faq h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: #141e2b;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #1a2a3a;
}

.faq__item summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    color: #e0e6f0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item summary::after {
    content: '+';
    font-size: 24px;
    color: #00d4ff;
}

.faq__item[open] summary::after {
    content: '−';
}

.faq__item p {
    padding: 0 24px 24px;
    color: #b0c8e0;
}

/* ===== FOOTER ===== */
.footer {
    background: #060a12;
    border-top: 1px solid #1a2a3a;
    padding: 40px 0 30px;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer__logo img {
    height: 40px;
    width: auto;
}

.footer__nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__nav a {
    color: #6a7e92;
    font-size: 14px;
}

.footer__nav a:hover {
    color: #00d4ff;
}

.footer__legal {
    text-align: center;
    color: #4a5e72;
    font-size: 13px;
}

.footer__legal p {
    margin: 4px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .brands__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .nav__list {
        display: none;
        flex-direction: column;
        background: #0f1825;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid #1a2a3a;
    }

    .nav__list.open {
        display: flex;
    }

    .nav__toggle {
        display: block;
    }

    .brands__grid {
        grid-template-columns: 1fr;
    }

    .why__grid {
        grid-template-columns: 1fr;
    }

    .compare-table {
        font-size: 14px;
    }

    .compare-table th,
    .compare-table td {
        padding: 10px 14px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero__subtitle {
        font-size: 17px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 22px;
    }

    .brands h2,
    .compare h2,
    .why h2,
    .faq h2 {
        font-size: 26px;
    }

    .footer__nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* ===== BONUS PAGE SPECIFIC ===== */

/* Hero small */
.hero--small .hero__content h1 {
    font-size: 36px;
}

.hero--small .hero__image {
    max-width: 500px;
}

/* Bonus table note */
.bonus-table__note {
    margin-top: 25px;
    padding: 20px;
    background: #141e2b;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
    color: #b0c8e0;
}

.bonus-table__cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Strategy section */
.strategy {
    padding: 60px 0;
    background: #0f1825;
}

.strategy h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.strategy__sub {
    text-align: center;
    color: #b0c8e0;
    font-size: 18px;
    margin-bottom: 40px;
}

.strategy__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.strategy__item {
    background: #141e2b;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #1a2a3a;
    transition: all 0.3s ease;
    text-align: center;
}

.strategy__item:hover {
    border-color: #00d4ff;
    transform: translateY(-4px);
}

.strategy__number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0077be);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.strategy__item h3 {
    color: #00d4ff;
    font-size: 20px;
    margin-bottom: 12px;
}

.strategy__item p {
    color: #b0c8e0;
}

/* Responsive */
@media (max-width: 992px) {
    .strategy__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .strategy__grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-table__cta {
        flex-direction: column;
        align-items: center;
    }
    
    .bonus-table__cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== PAYMENTS PAGE SPECIFIC ===== */

/* Payment table */
.payment-table {
    padding: 60px 0;
}

.payment-table h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.payment-table__sub {
    text-align: center;
    color: #b0c8e0;
    font-size: 18px;
    margin-bottom: 40px;
}

.payment-table__note {
    margin-top: 25px;
    padding: 20px;
    background: #141e2b;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
    color: #b0c8e0;
}

.payment-table__cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Steps section */
.steps {
    padding: 60px 0;
    background: #0f1825;
}

.steps h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.steps__sub {
    text-align: center;
    color: #b0c8e0;
    font-size: 18px;
    margin-bottom: 40px;
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.steps__item {
    background: #141e2b;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #1a2a3a;
    transition: all 0.3s ease;
    text-align: center;
}

.steps__item:hover {
    border-color: #00d4ff;
    transform: translateY(-4px);
}

.steps__number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #e05a2a);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.steps__item h3 {
    color: #00d4ff;
    font-size: 20px;
    margin-bottom: 12px;
}

.steps__item p {
    color: #b0c8e0;
}

/* Methods section */
.methods {
    padding: 60px 0;
}

.methods h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.methods__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.methods__item {
    background: #0f1825;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #1a2a3a;
    transition: all 0.3s ease;
    text-align: center;
}

.methods__item:hover {
    border-color: #00d4ff;
    transform: translateY(-4px);
}

.methods__icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.methods__item h3 {
    color: #00d4ff;
    font-size: 22px;
    margin-bottom: 12px;
}

.methods__item p {
    color: #b0c8e0;
    margin-bottom: 15px;
}

.methods__features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.methods__features li {
    padding: 6px 0;
    color: #c0d4e8;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .steps__grid,
    .methods__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .steps__grid,
    .methods__grid {
        grid-template-columns: 1fr;
    }
    
    .payment-table__cta {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-table__cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== MOBILE PAGE SPECIFIC ===== */

/* Mobile table */
.mobile-table {
    padding: 60px 0;
}

.mobile-table h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.mobile-table__sub {
    text-align: center;
    color: #b0c8e0;
    font-size: 18px;
    margin-bottom: 40px;
}

.mobile-table__note {
    margin-top: 25px;
    padding: 20px;
    background: #141e2b;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
    color: #b0c8e0;
}

.mobile-table__cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* App vs Web section */
.app-vs-web {
    padding: 60px 0;
    background: #0f1825;
}

.app-vs-web h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.app-vs-web__sub {
    text-align: center;
    color: #b0c8e0;
    font-size: 18px;
    margin-bottom: 40px;
}

.app-vs-web__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.app-vs-web__item {
    background: #141e2b;
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid #1a2a3a;
    transition: all 0.3s ease;
    text-align: center;
}

.app-vs-web__item:hover {
    border-color: #00d4ff;
    transform: translateY(-4px);
}

.app-vs-web__item--app {
    border-top: 4px solid #00d4ff;
}

.app-vs-web__item--web {
    border-top: 4px solid #ff6b35;
}

.app-vs-web__icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.app-vs-web__item h3 {
    color: #e0e6f0;
    font-size: 24px;
    margin-bottom: 20px;
}

.app-vs-web__features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.app-vs-web__features li {
    padding: 6px 0;
    color: #c0d4e8;
    font-size: 15px;
}

.app-vs-web__item--app .app-vs-web__features li:last-child {
    color: #ff6b35;
}

.app-vs-web__item--web .app-vs-web__features li:last-child {
    color: #ff6b35;
}

/* Tips section */
.tips {
    padding: 60px 0;
}

.tips h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.tips__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tips__item {
    background: #0f1825;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #1a2a3a;
    transition: all 0.3s ease;
    text-align: center;
}

.tips__item:hover {
    border-color: #00d4ff;
    transform: translateY(-4px);
}

.tips__icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.tips__item h3 {
    color: #00d4ff;
    font-size: 20px;
    margin-bottom: 12px;
}

.tips__item p {
    color: #b0c8e0;
}

/* Responsive */
@media (max-width: 992px) {
    .tips__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .app-vs-web__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .tips__grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-table__cta {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-table__cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== GAMES PAGE SPECIFIC ===== */

/* Games grid */
.games {
    padding: 60px 0;
}

.games h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.games__sub {
    text-align: center;
    color: #b0c8e0;
    font-size: 18px;
    margin-bottom: 40px;
}

.games__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Game card */
.game-card {
    background: #0f1825;
    border-radius: 16px;
    border: 1px solid #1a2a3a;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: #00d4ff;
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1);
}

.game-card--featured {
    border-color: #ff6b35;
}

.game-card--featured:hover {
    border-color: #ff6b35;
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.game-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.game-card__image {
    position: relative;
    overflow: hidden;
    background: #060a12;
}

.game-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-card__image img {
    transform: scale(1.05);
}

.game-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #00d4ff, #0077be);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-card--featured .game-card__badge {
    background: linear-gradient(135deg, #ff6b35, #e05a2a);
}

.game-card__body {
    padding: 16px 18px 18px;
}

.game-card__body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #e0e6f0;
    margin-bottom: 8px;
}

.game-card__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
}

.game-card__rtp {
    color: #00d4ff;
    font-weight: 600;
}

.game-card__volatility {
    color: #b0c8e0;
}

.game-card__platforms {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.platform-tag {
    background: #141e2b;
    border: 1px solid #1a2a3a;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    color: #6a7e92;
}

.game-card__cta {
    display: inline-block;
    color: #00d4ff;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.game-card:hover .game-card__cta {
    color: #ff6b35;
    transform: translateX(4px);
}

/* RTP Guide */
.rtp-guide {
    padding: 60px 0;
    background: #0f1825;
}

.rtp-guide h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.rtp-guide__sub {
    text-align: center;
    color: #b0c8e0;
    font-size: 18px;
    margin-bottom: 40px;
}

.rtp-guide__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rtp-guide__item {
    background: #141e2b;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #1a2a3a;
    transition: all 0.3s ease;
}

.rtp-guide__item:hover {
    border-color: #00d4ff;
    transform: translateY(-4px);
}

.rtp-guide__icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.rtp-guide__item h3 {
    color: #00d4ff;
    font-size: 20px;
    margin-bottom: 12px;
}

.rtp-guide__item p {
    color: #b0c8e0;
    margin-bottom: 15px;
}

.rtp-guide__list {
    list-style: none;
}

.rtp-guide__list li {
    padding: 6px 0;
    color: #c0d4e8;
    font-size: 14px;
    border-bottom: 1px solid #1a2a3a;
}

.rtp-guide__list li:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .games__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .games__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rtp-guide__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .games__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .rtp-guide__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== LOYALTY PAGE SPECIFIC ===== */

/* Loyalty table */
.loyalty-table {
    padding: 60px 0;
}

.loyalty-table h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.loyalty-table__sub {
    text-align: center;
    color: #b0c8e0;
    font-size: 18px;
    margin-bottom: 40px;
}

.loyalty-table__note {
    margin-top: 25px;
    padding: 20px;
    background: #141e2b;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
    color: #b0c8e0;
}

.loyalty-table__cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* VIP section */
.vip {
    padding: 60px 0;
    background: #0f1825;
}

.vip h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.vip__sub {
    text-align: center;
    color: #b0c8e0;
    font-size: 18px;
    margin-bottom: 40px;
}

.vip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vip__item {
    background: #141e2b;
    border-radius: 16px;
    border: 1px solid #1a2a3a;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vip__item:hover {
    transform: translateY(-8px);
}

.vip__item--guazubet:hover {
    border-color: #00d4ff;
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1);
}

.vip__item--20bet:hover {
    border-color: #ff6b35;
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.1);
}

.vip__item--22bet:hover {
    border-color: #ffd700;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.1);
}

.vip__header {
    padding: 20px 24px;
    border-bottom: 1px solid #1a2a3a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vip__header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #e0e6f0;
}

.vip__badge {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    background: #00d4ff22;
    color: #00d4ff;
    border: 1px solid #00d4ff44;
}

.vip__item--20bet .vip__badge {
    background: #ff6b3522;
    color: #ff6b35;
    border-color: #ff6b3544;
}

.vip__item--22bet .vip__badge {
    background: #ffd70022;
    color: #ffd700;
    border-color: #ffd70044;
}

.vip__body {
    padding: 20px 24px 24px;
}

.vip__features {
    list-style: none;
}

.vip__features li {
    padding: 8px 0;
    color: #c0d4e8;
    font-size: 15px;
    border-bottom: 1px solid #1a2a3a;
}

.vip__features li:last-child {
    border-bottom: none;
}

/* Calculator section */
.calculator {
    padding: 60px 0;
}

.calculator h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.calculator__sub {
    text-align: center;
    color: #b0c8e0;
    font-size: 18px;
    margin-bottom: 40px;
}

.calculator__box {
    max-width: 700px;
    margin: 0 auto;
    background: #0f1825;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #1a2a3a;
}

.calculator__input {
    margin-bottom: 30px;
}

.calculator__input label {
    display: block;
    color: #e0e6f0;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.calculator__input input {
    width: 100%;
    padding: 14px 18px;
    background: #141e2b;
    border: 1px solid #1a2a3a;
    border-radius: 8px;
    color: #e0e6f0;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.calculator__input input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.calculator__input input::placeholder {
    color: #4a5e72;
    font-weight: 400;
}

.calculator__results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.calculator__result {
    background: #141e2b;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #1a2a3a;
}

.calculator__result:first-child {
    border-color: #00d4ff44;
}

.calculator__result:first-child .calculator__value {
    color: #00d4ff;
}

.calculator__result:nth-child(2) .calculator__value {
    color: #ff6b35;
}

.calculator__result:last-child .calculator__value {
    color: #ffd700;
}

.calculator__label {
    display: block;
    color: #6a7e92;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
}

.calculator__value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #e0e6f0;
}

.calculator__cta {
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .vip__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator__results {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vip__grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .calculator__results {
        grid-template-columns: 1fr;
    }
    
    .calculator__box {
        padding: 25px 20px;
    }
    
    .loyalty-table__cta {
        flex-direction: column;
        align-items: center;
    }
    
    .loyalty-table__cta .btn {
        width: 100%;
        max-width: 300px;
    }
}