* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #FFD700;
    --gold-light: #FFA500;
    --purple: #1a0033;
    --purple-deep: #0d0015;
    --purple-medium: #2d0052;
    --red: #ff3366;
    --white: #ffffff;
    --gray: #cccccc;
    --dark-gray: #666666;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(to bottom, var(--purple-deep), var(--purple));
    color: var(--white);
    line-height: 1.6;
}

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

/* Top Bar */
.top-bar {
    background: var(--purple-deep);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.promo-text {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.top-links a:hover {
    color: var(--gold);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(13, 0, 21, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.15);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.logo-link img {
    height: 45px;
    width: auto;
}

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

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.main-nav a:hover {
    color: var(--gold);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 12px;
}

.header-btn {
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.login-btn {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.login-btn:hover {
    background: var(--gold);
    color: var(--purple);
}

.register-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--purple);
    border: 2px solid transparent;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 110px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 110px);
    background: rgba(13, 0, 21, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: left 0.3s;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding: 20px 0;
}

.mobile-link {
    display: block;
    padding: 15px 25px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    position: relative;
}

.mobile-link:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: var(--gold);
    padding-left: 35px;
}

.mobile-link::after {
    content: "\203A";
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-link:hover::after {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.7) 0%, rgba(13, 0, 21, 0.7) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 52px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.bonus-box {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.bonus-header {
    font-size: 16px;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 10px;
}

.bonus-main {
    font-size: 68px;
    font-weight: 900;
    color: var(--purple);
    line-height: 1;
    margin-bottom: 10px;
}

.bonus-footer {
    font-size: 16px;
    color: var(--purple);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.cta-button {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--purple);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.cta-button.secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cta-button.secondary:hover {
    background: var(--gold);
    color: var(--purple);
}

.hero-right {
    position: relative;
    height: 400px;
}

.hero-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    font-size: 70px;
    animation: float-anim 3s ease-in-out infinite;
}

.el-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.el-2 {
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
}

.el-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.el-4 {
    bottom: 10%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes float-anim {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Info Cards */
.info-cards {
    padding: 60px 0;
    background: rgba(26, 0, 51, 0.4);
}

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

.info-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.info-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.card-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 10px;
}

.info-card h3::after {
    content: "\2605";
    margin-left: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover h3::after {
    opacity: 1;
}

.info-card p {
    color: var(--gray);
    font-size: 14px;
}

/* Casino Table Section */
.casino-table-section {
    padding: 80px 0;
}

.main-heading {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.table-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
}

.casino-table tr {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.casino-table tr:last-child {
    border-bottom: none;
}

.table-label {
    padding: 18px;
    color: var(--gold);
    font-weight: 700;
    width: 40%;
    position: relative;
    padding-left: 28px;
}

.table-label::before {
    content: "\2022";
    position: absolute;
    left: 18px;
    font-size: 20px;
}

.table-value {
    padding: 18px;
    color: var(--white);
}

/* Games Showcase */
.games-showcase {
    padding: 80px 0;
    background: rgba(26, 0, 51, 0.4);
}

.games-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.game-box {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.game-box:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.game-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-details {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-details h3 {
    color: var(--gold);
    font-size: 18px;
}

.game-btn {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--purple);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.game-btn::before {
    content: "\25B6";
    margin-right: 6px;
    font-size: 10px;
}

.game-btn:hover {
    transform: scale(1.05);
}

.center-align {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid var(--gold);
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: var(--gold);
    color: var(--purple);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-box {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.faq-box:hover {
    border-color: var(--gold);
}

.faq-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 17px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-arrow {
    color: var(--gold);
    font-size: 26px;
    transition: transform 0.3s;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-arrow::before {
    content: "\002B";
    font-weight: 300;
}

.faq-box.active .faq-arrow::before {
    content: "\2212";
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-box.active .faq-body {
    max-height: 400px;
}

.faq-body p {
    padding: 0 20px 20px;
    color: var(--gray);
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: rgba(26, 0, 51, 0.4);
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 20px;
}

/* Provider Comparison Section */
.provider-comparison {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.provider-comparison .main-heading {
    text-align: center;
    margin-bottom: 15px;
}

.provider-comparison .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.provider-comparison .comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.provider-comparison .comparison-table thead {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-deep) 100%);
    color: #fff;
}

.provider-comparison .comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: bold;
    font-size: 1.1rem;
}

.provider-comparison .comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

.provider-comparison .comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.provider-comparison .comparison-table .highlight-row {
    background: linear-gradient(to right, rgba(255, 215, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
}

.provider-comparison .comparison-table .highlight-row:hover {
    background: linear-gradient(to right, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

/* Game Showcase Section */
.game-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-deep) 100%);
    position: relative;
    overflow: hidden;
}

.game-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.1), transparent);
}

.game-showcase .main-heading {
    text-align: center;
    color: var(--gold);
    margin-bottom: 15px;
}

.game-showcase .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-card {
    perspective: 1000px;
    height: 320px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.showcase-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-front {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.card-back {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--purple-deep);
    transform: rotateY(180deg);
}

.game-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.card-front h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.game-provider {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.card-back h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--purple-deep);
}

.card-back p {
    margin-bottom: 10px;
    color: var(--purple-dark);
}

.game-details {
    font-size: 0.9rem;
    font-weight: 600;
}

.play-btn {
    display: inline-block;
    background: var(--purple-deep);
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: var(--purple-dark);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .provider-comparison .comparison-table {
        font-size: 0.85rem;
    }
    
    .provider-comparison .comparison-table th,
    .provider-comparison .comparison-table td {
        padding: 12px 8px;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .showcase-card {
        height: 280px;
    }
    
    .game-icon {
        font-size: 4rem;
    }
    
    .card-front h3 {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    background: var(--purple-deep);
    padding: 60px 0 30px;
    border-top: 3px solid var(--gold);
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--gold);
}

.footer-payments {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-payments img {
    height: 40px;
    width: auto;
}

.footer-legal {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-legal p {
    color: var(--gray);
    margin-bottom: 10px;
}

.age-warning {
    color: var(--red);
    font-weight: 700;
}

/* Sticky Mobile Buttons */
.sticky-mobile-btns {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

.sticky-btn {
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
}

.sticky-login {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.sticky-register {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--purple);
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

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

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

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .header-buttons {
        display: none;
    }

    .sticky-mobile-btns {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .bonus-main {
        font-size: 56px;
    }

    .main-heading {
        font-size: 32px;
    }

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

    .games-display {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .table-label,
    .table-value {
        padding: 15px;
        font-size: 14px;
    }
}

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

    .bonus-main {
        font-size: 48px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Bonus Breakdown Section */
.bonus-breakdown {
    background: linear-gradient(135deg, var(--purple), var(--purple-medium));
    padding: 80px 0;
    text-align: center;
}

.bonus-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.bonus-tier {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 10px;
    object-fit: cover;
}

.tier-percentage {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    margin: 15px 0;
}

.tier-info h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

.bonus-terms {
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

/* Sportsbook Section */
.sportsbook-section {
    background: var(--purple-deep);
    padding: 80px 0;
}

.sportsbook-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sportsbook-content h2 {
    margin-bottom: 20px;
}

.sports-bonus {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--purple-deep);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.bonus-highlight {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.bonus-label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

.bonus-value {
    font-size: 2.2rem;
}

.sportsbook-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sportsbook-actions {
    margin-top: 30px;
}

/* Esports Section */
.esports-section {
    background: var(--purple);
    padding: 60px 0;
}

.esports-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.esports-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.esports-content h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.esports-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--gold);
}

/* Mobile App Section */
.mobile-app-section {
    background: linear-gradient(135deg, var(--purple-deep), var(--purple));
    padding: 80px 0;
}

.mobile-app-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mobile-features {
    margin: 40px 0;
}

.mobile-feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.mobile-feature .feature-icon {
    font-size: 2rem;
    margin-right: 20px;
    color: var(--gold);
}

.mobile-app-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-note {
    text-align: center;
    margin-top: 30px;
    color: var(--gray);
}

/* Installation Guide */
.installation-guide {
    background: var(--purple);
    padding: 60px 0;
    text-align: center;
}

.installation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--gold);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--purple-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h4 {
    color: var(--gold);
    margin-bottom: 10px;
}

.installation-image {
    margin-top: 40px;
}

.installation-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Providers Section */
.providers-section {
    background: var(--purple-deep);
    padding: 80px 0;
}

.providers-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.providers-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.providers-content h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.providers-list {
    margin: 30px 0;
}

.provider-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.provider-icon {
    font-size: 2rem;
    margin-right: 20px;
    color: var(--gold);
}

.provider-info h4 {
    color: var(--gold);
    margin-bottom: 5px;
}

/* Banking Section */
.banking-section {
    background: linear-gradient(135deg, var(--purple), var(--purple-medium));
    padding: 80px 0;
}

.banking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.banking-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 40px;
}

.banking-card h3 {
    color: var(--gold);
    margin-bottom: 25px;
    text-align: center;
}

.payment-options {
    margin-top: 30px;
}

.payment-group {
    margin-bottom: 30px;
}

.payment-group h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.payment-items {
    display: grid;
    gap: 15px;
}

.payment-item {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
}

.payment-icon {
    font-size: 1.3rem;
    margin-right: 15px;
}

.limits-description {
    margin-bottom: 30px;
}

.limits-grid {
    display: grid;
    gap: 20px;
}

.limit-item {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
}

.limit-icon {
    font-size: 2rem;
    margin-right: 20px;
    color: var(--gold);
}

.limit-info h4 {
    color: var(--gold);
    margin-bottom: 5px;
}

.limit-amount {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--gold);
}

.banking-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.banking-feature {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    flex-direction: column;
}

.banking-feature .feature-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.banking-feature h4 {
    color: var(--gold);
    margin-bottom: 8px;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .sportsbook-wrapper,
    .esports-wrapper,
    .mobile-app-wrapper,
    .providers-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bonus-tiers {
        grid-template-columns: 1fr;
    }
    
    .banking-grid {
        grid-template-columns: 1fr;
    }
    
    .installation-steps {
        grid-template-columns: 1fr;
    }
    
    .banking-features {
        grid-template-columns: 1fr;
    }
    
    .sports-bonus {
        padding: 20px;
    }
    
    .bonus-value {
        font-size: 1.8rem;
    }
}