:root {
    --primary-color: #131f6b;
    --secondary-color: #e12323;
    --dark-color: #14151a;
    --light-color: #fff;
    --border-color: #e1e1e1;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
    border-bottom: 1px solid #eaeaea;
}

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

.logo img {
    height: 36px;
    display: block;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.search-bar form {
    display: flex;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #eaeaea;
    border-radius: 50px;
    font-size: 14px;
    background-color: #f8f8f8;
    outline: none;
    color: #555;
}

.search-bar input::placeholder {
    color: #888;
}

.search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    animation: pulse-primary 2s infinite;
}

.btn-primary:hover {
    background-color: #1a32b7;
    animation: none;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-color);
    animation: pulse-secondary 2s infinite;
}

.btn-secondary:hover {
    background-color: #e01328;
    animation: none;
}

@keyframes pulse-primary {
    0% {
        box-shadow: 0 0 0 0 rgba(19, 31, 107, 0.5);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(19, 31, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(19, 31, 107, 0);
    }
}

@keyframes pulse-secondary {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 35, 35, 0.5);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(225, 35, 35, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 35, 35, 0);
    }
}

.bankonbet-link {
    color: var(--secondary-color);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.bankonbet-link:hover {
    color: #1a32b7;
    text-decoration-color: #1a32b7;
    text-shadow: 0 0 2px rgba(26, 50, 183, 0.3);
}

.sticky-nav {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.burger-menu {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.burger-menu:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.burger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    transition: all 0.3s ease;
}

.burger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-icon span:nth-child(1) {
    top: 0;
}

.burger-icon span:nth-child(2) {
    top: 7px;
}

.burger-icon span:nth-child(3) {
    bottom: 0;
}

.burger-menu.active .burger-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 7px;
}

.burger-menu.active .burger-icon span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-icon span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 8px;
}

.nav-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 22px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 0 0 4px 0;
}

.nav-menu a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

@media (max-width: 768px) {
    .sticky-nav {
        bottom: 15px;
        right: 15px;
    }
    
    .burger-menu {
        width: 55px;
        height: 55px;
    }
    
    .nav-menu {
        min-width: 160px;
        bottom: 65px;
    }
}

.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url('assets/bankonbet-banner2.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 15px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 5%;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bonus-container {
    background-color: rgba(19, 31, 107, 0.8);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.bonus-label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.bonus-value {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--light-color);
}

.bonus-limit {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.btn-cta {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(225, 35, 35, 0.4);
    height: auto;
    animation: pulse-cta 2s infinite;
}

.btn-cta:hover {
    background-color: #e01328;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(225, 35, 35, 0.5);
    animation: none;
}

@keyframes pulse-cta {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 35, 35, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(225, 35, 35, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 35, 35, 0);
    }
}

/* Category Icons Section */
.category-icons {
    background-color: #1a1f36;
    padding: 15px 0;
}

.icons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light-color);
    transition: transform 0.2s ease;
    width: 80px;
    cursor: pointer;
}

.icon-item:hover {
    transform: translateY(-3px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(21, 33, 85, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    border: 2px solid rgba(40, 85, 174, 0.5);
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.3);
}

.icon-circle img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.icon-item span {
    font-size: 0.6rem;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Info Section Styles */
.info-section {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #eaeaea;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 40px;
    text-align: left;
    padding: 0 20px;
}

.info-table {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.info-row {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    flex: 0 0 35%;
    padding: 16px 20px;
    font-weight: 600;
    background-color: #030052;
    color: white;
}

.info-value {
    flex: 0 0 65%;
    padding: 16px 20px;
    color: #444;
}

.info-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #030052;
    margin-bottom: 25px;
    text-align: center;
}

.image-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.image-grid-item {
    flex: 1;
    min-width: 250px;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-container {
    margin-top: 15px;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}



.image-row {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.image-row img {
    max-width: 48%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.note-box {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    padding: 15px;
    border-left: 3px solid #e12323;
    background-color: rgba(225, 35, 35, 0.1);
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .hero-section {
        height: 450px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .info-description {
        font-size: 1rem;
        padding: 0 20px;
        text-align: left;
    }
    
    .icons-wrapper {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }
    
    .header-content {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo img {
        height: 24px;
    }
    
    .search-bar {
        display: none;
    }
    
    .auth-buttons {
        display: flex;
        width: auto;
        gap: 6px;
    }
    
    .btn {
        flex: 0 1 auto;
        padding: 0 10px;
        font-size: 11px;
        height: 32px;
        min-width: 75px;
    }
    
    .hero-section {
        height: 400px;
        background-position: 40% center;
    }
    
    .hero-content {
        margin-left: 0;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .category-icons {
        padding: 15px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .icons-wrapper {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 5px 10px;
        gap: 15px;
        width: auto;
        min-width: 100%;
    }
    
    .icon-item {
        width: 75px;
        flex-shrink: 0;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .icon-item span {
        font-size: 0.65rem;
    }
    
    .info-section {
        padding: 40px 0;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label, 
    .info-value {
        flex: 0 0 100%;
        text-align: center;
    }
    
    .info-label {
        padding: 12px 16px 8px 16px;
        background-color: #030052;
    }
    
    .info-value {
        padding: 8px 16px 12px 16px;
        background-color: #f8f9fa;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 8px 0;
    }
    
    .logo img {
        height: 22px;
    }
    
    .auth-buttons {
        gap: 5px;
    }
    
    .btn {
        padding: 0 8px;
        font-size: 10px;
        height: 30px;
        min-width: 70px;
    }
    
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .bonus-value {
        font-size: 1.4rem;
    }
    
    .bonus-limit {
        font-size: 1.1rem;
    }
    
    .btn-cta {
        padding: 10px 20px;
        font-size: 1rem;
        height: auto;
    }
    
    .hero-section {
        background-position: 85% center;
    }
    
    .category-icons {
        padding: 12px 0;
    }
    
    .icons-wrapper {
        gap: 12px;
    }
    
    .icon-item {
        width: 70px;
    }
    
    .icon-circle {
        width: 55px;
        height: 55px;
    }
    
    .info-description {
        font-size: 0.95rem;
        padding: 0 15px;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .info-label {
        padding: 10px 15px 6px 15px;
    }
    
    .info-value {
        padding: 6px 15px 10px 15px;
    }
    
    .icon-item span {
        font-size: 0.6rem;
    }
}

.promo-banner {
    width: 100%;
    height: 300px;
    background-image: url('assets/bankonbet-banner1.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(3, 0, 82, 0.7) 0%, rgba(3, 0, 82, 0.4) 70%, rgba(3, 0, 82, 0.3) 100%);
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.promo-content h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.promo-content span {
    display: block;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

@media (max-width: 768px) {
    .promo-banner {
        height: 250px;
    }
    
    .promo-content h3 {
        font-size: 1.6rem;
    }
    
    .promo-content span {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        height: 200px;
    }
    
    .promo-content h3 {
        font-size: 1.3rem;
    }
    
    .promo-content span {
        font-size: 1.3rem;
    }
}

.game-library-section {
    padding: 50px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.game-library-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 20%;
    background: linear-gradient(to left, rgba(3, 0, 82, 0.05), rgba(255, 255, 255, 0));
    z-index: 1;
    pointer-events: none;
}

.game-library-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20%;
    background: linear-gradient(to right, rgba(3, 0, 82, 0.05), rgba(255, 255, 255, 0));
    z-index: 1;
    pointer-events: none;
}

.game-library-content {
    position: relative;
    z-index: 2;
}

.game-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.game-type-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.game-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #030052;
}

.game-type-card h3 {
    color: #030052;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.game-type-card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.game-count {
    display: inline-block;
    background-color: #e12323;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.provider-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 25px 0;
}

.provider-tag {
    background-color: rgba(3, 0, 82, 0.08);
    color: #030052;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.provider-tag:hover {
    background-color: #030052;
    color: white;
}

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

@media (max-width: 768px) {
    .game-library-section {
        padding: 40px 0;
    }
    
    .game-type-card {
        padding: 20px 15px;
    }
    
    .provider-tags {
        gap: 6px;
    }
    
    .provider-tag {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .game-type-grid {
        grid-template-columns: 1fr;
    }
}

.game-library-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #030052;
    margin-bottom: 25px;
    text-align: center;
}

.slot-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.slot-game-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slot-game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.slot-game-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slot-game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(3, 0, 82, 0.9), rgba(3, 0, 82, 0.5) 70%, transparent);
    padding: 15px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.slot-game-item:hover .slot-game-overlay {
    transform: translateY(0);
}

.slot-game-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.slot-game-provider {
    font-size: 0.8rem;
    opacity: 0.8;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background-color: var(--secondary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.slot-game-item:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-button svg {
    width: 20px;
    height: 20px;
    fill: white;
}

@media (max-width: 992px) {
    .slot-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .game-library-heading {
        font-size: 1.8rem;
    }
    
    .slot-game-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .slot-game-item {
        max-height: 180px;
    }
    
    .slot-game-title {
        font-size: 0.9rem;
    }
    
    .slot-game-provider {
        font-size: 0.7rem;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
    }
    
    .play-button svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {
    .slot-game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .slot-game-item {
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .slot-game-overlay {
        padding: 10px;
    }
}

.game-type-title {
    display: block;
    color: #030052;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.bonus-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
}

.bonus-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.bonus-text {
    flex: 1;
}

.bonus-image {
    flex: 0 0 40%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(3, 0, 82, 0.15);
    position: relative;
}

.bonus-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.bonus-image:hover img {
    transform: scale(1.03);
}

.bonus-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(3, 0, 82, 0.6), transparent);
    pointer-events: none;
}

.bonus-details {
    margin-top: 30px;
    border: 1px solid rgba(3, 0, 82, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bonus-details-heading {
    background-color: #030052;
    color: white;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.bonus-details-item {
    display: flex;
    border-bottom: 1px solid rgba(3, 0, 82, 0.1);
}

.bonus-details-item:last-child {
    border-bottom: none;
}

.bonus-details-label {
    flex: 0 0 35%;
    background-color: rgba(3, 0, 82, 0.03);
    padding: 15px 20px;
    font-weight: 600;
    color: #030052;
}

.bonus-details-value {
    flex: 0 0 65%;
    padding: 15px 20px;
    color: #444;
}

.casino-bonus-list {
    margin-top: 20px;
    border-left: 4px solid #e12323;
    padding-left: 20px;
}

.casino-bonus-item {
    margin-bottom: 12px;
    position: relative;
    padding-left: 5px;
}

.casino-bonus-item::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #e12323;
    border-radius: 50%;
    left: -24px;
    top: 8px;
}

@media (max-width: 992px) {
    .bonus-content {
        flex-direction: column;
    }
    
    .bonus-image {
        flex: 0 0 100%;
        max-width: 100%;
        order: -1;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .bonus-section {
        padding: 40px 0;
    }
    
    .bonus-details-item {
        flex-direction: column;
    }
    
    .bonus-details-label, 
    .bonus-details-value {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .bonus-section {
        padding: 30px 0;
    }
    
    .bonus-details-heading {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .bonus-details-label, 
    .bonus-details-value {
        padding: 12px 15px;
    }
}

.sports-bonus-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.sports-bonus-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(3, 0, 82, 0.06) 0%, rgba(3, 0, 82, 0.03) 40%, rgba(3, 0, 82, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.sports-bonus-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(3, 0, 82, 0.06) 0%, rgba(3, 0, 82, 0.03) 40%, rgba(3, 0, 82, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.sports-bonus-content {
    position: relative;
    z-index: 1;
}

.sports-bonus-heading {
    color: #030052;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.sports-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.sports-details-card {
    border: 1px solid rgba(3, 0, 82, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sports-details-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(3, 0, 82, 0.08);
}

.sports-details-label {
    background-color: #030052;
    color: white;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 1rem;
}

.sports-details-value {
    padding: 15px;
    color: #444;
    background-color: #fff;
}

.sports-highlight {
    display: inline-block;
    color: #e12323;
    font-weight: 600;
}

.sports-divider {
    height: 2px;
    background: linear-gradient(to right, #030052, transparent);
    margin: 30px 0;
    width: 100%;
}

.sports-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
    justify-content: center;
}

.sports-feature-item {
    flex: 0 0 calc(50% - 15px);
    background-color: rgba(3, 0, 82, 0.03);
    padding: 15px;
    border-radius: 8px;
    position: relative;
    padding-left: 40px;
    color: #333333;
    font-weight: 500;
    border: 1px solid rgba(3, 0, 82, 0.1);
}

.sports-feature-item::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-weight: bold;
    background-color: #e12323;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

@media (max-width: 992px) {
    .sports-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sports-bonus-section {
        padding: 40px 0;
    }
    
    .sports-bonus-heading {
        font-size: 1.8rem;
    }
    
    .sports-feature-list {
        gap: 10px;
    }
    
    .sports-feature-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .sports-bonus-section {
        padding: 30px 0;
    }
    
    .sports-bonus-heading {
        font-size: 1.6rem;
    }
    
    .sports-details-label {
        padding: 10px 12px;
    }
    
    .sports-details-value {
        padding: 12px;
    }
}

.payment-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
}

.payment-heading {
    color: #030052;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.payment-card {
    background: linear-gradient(135deg, #fff 0%, #f8f8ff 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(3, 0, 82, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(3, 0, 82, 0.08);
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(3, 0, 82, 0.1);
}

.payment-card-header {
    padding: 20px;
    background-color: #030052;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.payment-card-header::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: -75px;
    right: -75px;
    border-radius: 50%;
}

.payment-card-body {
    padding: 20px;
}

.payment-card-value {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 5px;
}

.payment-card-description {
    font-size: 0.9rem;
    color: #777;
}

.payment-methods-box {
    background-color: rgba(3, 0, 82, 0.02);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #e12323;
}

.payment-methods-box strong {
    display: block;
    font-size: 1.1rem;
    color: #030052;
    margin-bottom: 10px;
    font-weight: 600;
}

.payment-methods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.payment-method-tag {
    background-color: white;
    color: #030052;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(3, 0, 82, 0.1);
    transition: all 0.2s ease;
}

.payment-method-tag:hover {
    background-color: #030052;
    color: white;
    box-shadow: 0 4px 8px rgba(3, 0, 82, 0.2);
}

.payment-info-table {
    border: 1px solid rgba(3, 0, 82, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
}

.payment-info-row {
    display: flex;
    border-bottom: 1px solid rgba(3, 0, 82, 0.1);
}

.payment-info-row:last-child {
    border-bottom: none;
}

.payment-info-label {
    flex: 0 0 30%;
    padding: 15px 20px;
    background-color: rgba(3, 0, 82, 0.03);
    font-weight: 600;
    color: #030052;
}

.payment-info-value {
    flex: 0 0 70%;
    padding: 15px 20px;
    color: #444;
}

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

@media (max-width: 768px) {
    .payment-section {
        padding: 40px 0;
    }
    
    .payment-heading {
        font-size: 1.8rem;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-info-row {
        flex-direction: column;
    }
    
    .payment-info-label, 
    .payment-info-value {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .payment-card-header {
        padding: 15px;
    }
    
    .payment-card-body {
        padding: 15px;
    }
    
    .payment-methods-box {
        padding: 20px;
    }
}

.mobile-app-section {
    padding: 70px 0;
    background-color: #fff;
    position: relative;
}

.mobile-app-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mobile-app-image {
    flex: 0 0 40%;
}

.mobile-app-image img {
    width: 100%;
    height: auto;
    border-radius: 65px;
    box-shadow: 0 15px 30px rgba(3, 0, 82, 0.15);
    transition: transform 0.5s ease;
}

.mobile-app-image img:hover {
    transform: translateY(-10px);
}

.mobile-app-text {
    flex: 0 0 60%;
}

.mobile-app-heading {
    color: #030052;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.try-button {
    display: inline-block;
    background: linear-gradient(135deg, #e12323 0%, #ff4646 100%);
    color: white;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    margin-top: 25px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(225, 35, 35, 0.3);
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.try-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(225, 35, 35, 0.4);
    background: linear-gradient(135deg, #d01515 0%, #e43535 100%);
}

.mobile-highlight {
    color: #e12323;
    font-weight: 600;
}

@media (max-width: 992px) {
    .mobile-app-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .mobile-app-image {
        flex: 0 0 100%;
        order: -1;
        max-width: 80%;
        margin: 0 auto;
    }
    
    .mobile-app-text {
        flex: 0 0 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mobile-app-section {
        padding: 50px 0;
    }
    
    .mobile-app-heading {
        font-size: 1.8rem;
    }
    
    .mobile-app-image {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .mobile-app-section {
        padding: 40px 0;
    }
    
    .mobile-app-heading {
        font-size: 1.6rem;
    }
    
    .mobile-app-image {
        max-width: 100%;
    }
    
    .try-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.faq-heading {
    color: #07004f;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background-color: #fff;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #07004f;
}

.faq-toggle {
    color: #07004f;
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
    border-top: 1px solid #eaeaea;
}

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

.faq-answer p {
    margin: 0 0 15px;
    color: #333;
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-heading {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #14151a;
    color: #fff;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-copyright p {
    font-size: 0.8rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 25px 0;
        margin-top: 40px;
    }
    
    .footer-disclaimer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 20px 0;
        margin-top: 30px;
    }
    
    .footer-disclaimer p {
        font-size: 0.8rem;
    }
    
    .footer-copyright p {
        font-size: 0.75rem;
    }
} 