/* Base Styles & Theme */
:root {
    /* Color Palette - Dark Theme */
    --primary-color: #e5b744;
    --primary-hover: #ffd261;
    --secondary-color: #ff4757;
    --accent-color: #5352ed;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --card-bg: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #dddddd;
    --text-muted: #999999;
    --border-color: #333333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--primary-hover);
}

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

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

strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: #000;
    border: 2px solid var(--primary-color);
}

.cta-button.primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

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

.cta-button.secondary:hover {
    background-color: rgba(229, 183, 68, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="%23ffffff" opacity="0.03"/></svg>');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary-color), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.main-image {
    border-radius: 20px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    max-width: 500px;
    margin: 0 auto;
}

.main-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    border: 3px solid var(--dark-bg);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: rotate(15deg);
    animation: pulse 2s infinite;
    z-index: 5;
}

.bonus-text {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.bonus-amount {
    font-size: 2rem;
    line-height: 1;
}

.bonus-desc {
    font-size: 0.8rem;
}

@keyframes pulse {
    0% {
        transform: rotate(15deg) scale(1);
    }
    50% {
        transform: rotate(15deg) scale(1.05);
    }
    100% {
        transform: rotate(15deg) scale(1);
    }
}

/* Media Queries */
@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-text h1 {
        font-size: 2.3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .bonus-badge {
        right: 50%;
        transform: translateX(80px) rotate(15deg);
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 90px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .bonus-badge {
        width: 100px;
        height: 100px;
        transform: translateX(65px) rotate(15deg);
    }
    
    .bonus-amount {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.7rem;
    }
    
    .bonus-badge {
        width: 80px;
        height: 80px;
        transform: translateX(50px) rotate(15deg);
    }
    
    .bonus-text {
        font-size: 0.7rem;
    }
    
    .bonus-amount {
        font-size: 1.4rem;
    }
    
    .bonus-desc {
        font-size: 0.6rem;
    }
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Prompt', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text .highlight {
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin: 0 5px;
}

.nav-item a {
    display: block;
    padding: 8px 15px;
    color: var(--text-secondary);
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nav-item a:hover {
    color: var(--primary-color);
    background-color: rgba(229, 183, 68, 0.1);
}

.nav-item.active a {
    color: var(--primary-color);
}

.cta-item {
    margin-left: 10px;
}

.header-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.header-cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    color: var(--darker-bg);
}

.header-cta-button i {
    font-size: 1.1rem;
}

/* Mobile Controls */
.mobile-controls {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    padding: 8px 15px;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.mobile-cta-button i {
    font-size: 1rem;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Media Queries for Header */
@media (max-width: 991px) {
    .site-header {
        padding: 12px 0;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .nav-item a {
        padding: 8px 12px;
        font-size: 0.95rem;
    }
    
    .header-cta-button {
        padding: 8px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .mobile-controls {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--darker-bg);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        z-index: 9;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-item a {
        padding: 15px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .cta-item {
        margin: 20px 0 0;
    }
    
    /* Hide desktop CTA button on mobile */
    .header-cta-button {
        display: none;
    }
    
    /* Modal for mobile CTA */
    .mobile-cta-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-cta-modal.active {
        opacity: 1;
        visibility: visible;
    }
    
    .modal-content {
        background-color: var(--card-bg);
        border-radius: 15px;
        padding: 30px;
        width: 90%;
        max-width: 350px;
        text-align: center;
        position: relative;
        transform: translateY(-20px);
        transition: transform 0.3s ease;
    }
    
    .mobile-cta-modal.active .modal-content {
        transform: translateY(0);
    }
    
    .modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: transparent;
        border: none;
        color: var(--text-secondary);
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--primary-color);
    }
    
    .modal-description {
        margin-bottom: 20px;
        color: var(--text-secondary);
    }
    
    .modal-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--darker-bg);
        padding: 12px 25px;
        border-radius: 50px;
        font-family: 'Prompt', sans-serif;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.4rem;
    }
    
    .mobile-cta-button {
        font-size: 0.8rem;
        padding: 7px 12px;
    }
    
    .mobile-cta-button i {
        font-size: 0.9rem;
    }
}

/* Casino Introduction Section */
.casino-intro-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.casino-intro-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--darker-bg), transparent);
    z-index: 1;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.4rem;
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.divider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    position: relative;
}

.divider-icon::before,
.divider-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 2px;
    width: 50px;
    background: linear-gradient(to right, transparent, var(--primary-color));
}

.divider-icon::before {
    right: 40px;
}

.divider-icon::after {
    left: 40px;
    background: linear-gradient(to left, transparent, var(--primary-color));
}

.divider-icon i {
    font-size: 1.5rem;
}

.casino-intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.intro-image {
    flex: 1;
    position: relative;
}

.feature-image {
    border-radius: 15px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
    max-width: 100%;
}

.feature-image:hover {
    transform: translateY(-10px);
}

.feature-badge {
    position: absolute;
    top: -20px;
    right: -15px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.feature-badge i {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.intro-text {
    flex: 1;
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.features-list {
    background-color: rgba(83, 82, 237, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid var(--accent-color);
}

.features-list h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.features-list ul {
    list-style: none;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.cta-container {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(229, 183, 68, 0.1), rgba(83, 82, 237, 0.1));
    border-radius: 12px;
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Media Queries for Casino Intro Section */
@media (max-width: 991px) {
    .casino-intro-section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .casino-intro-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .intro-image {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .feature-image {
        max-width: 450px;
    }
    
    .intro-text {
        order: 2;
    }
}

@media (max-width: 767px) {
    .casino-intro-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .divider-icon::before,
    .divider-icon::after {
        width: 30px;
    }
    
    .divider-icon::before {
        right: 30px;
    }
    
    .divider-icon::after {
        left: 30px;
    }
    
    .feature-badge {
        width: 70px;
        height: 70px;
        font-size: 0.8rem;
    }
    
    .feature-badge i {
        font-size: 1.4rem;
    }
    
    .intro-text p {
        font-size: 1rem;
    }
    
    .features-list {
        padding: 20px;
    }
    
    .features-list h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .feature-badge {
        width: 60px;
        height: 60px;
        font-size: 0.7rem;
        top: -10px;
        right: -5px;
    }
    
    .feature-badge i {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }
    
    .features-list {
        padding: 15px;
    }
    
    .features-list li {
        font-size: 0.9rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
}

/* No Minimum Deposit Section */
.no-minimum-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
    /* background-image: linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.02) 75%, transparent 75%, transparent); */
    /* background-size: 60px 60px; */
}

.no-minimum-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="2" cy="2" r="1" fill="%23ffffff" opacity="0.03"/></svg>');
    z-index: 1;
}

.no-minimum-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.no-minimum-text {
    flex: 3;
}

.no-minimum-text > p:first-of-type {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.no-minimum-text > p { /* Applies to other paragraphs in no-minimum-text */
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.no-minimum-visual {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky; 
    top: 100px; 
}

.image-container {
    position: relative;
}

.main-feature-image {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    max-width: 100%;
    display: block;
    transform: perspective(1200px) rotateY(3deg);
    transition: all 0.5s ease-out;
}

.main-feature-image:hover {
    transform: perspective(1200px) rotateY(0deg) translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

.highlight-badge {
    position: absolute;
    background: var(--secondary-color);
    color: white;
    border-radius: 30px;
    padding: 10px 18px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 12px rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.highlight-badge.top {
    top: -20px;
    left: -20px;
    transform: rotate(-5deg);
}

.highlight-badge.bottom {
    bottom: -20px;
    right: -20px;
    background: var(--accent-color);
    transform: rotate(5deg);
}

.highlight-badge i {
    font-size: 1.1rem;
}

.deposit-display {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.deposit-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
}

.deposit-header i {
    font-size: 1.6rem;
}

.deposit-steps {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    gap: 10px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 10px;
    background-color: rgba(255,255,255,0.03);
    border-radius: 8px;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.step-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.step-arrow {
    color: var(--primary-color);
    font-size: 1.4rem;
    align-self: center;
}

.game-category {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.game-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.category-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.category-info p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.payment-methods {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--accent-color);
}

.payment-methods h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--accent-color);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.method-item:hover {
    background-color: rgba(255,255,255,0.1);
}

.method-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    width: 35px;
    text-align: center;
}

.method-item span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.call-to-action {
    margin-top: 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(229, 183, 68, 0.15), rgba(255, 71, 87, 0.15));
    border-radius: 15px;
    padding: 30px 20px;
    border-top: 3px solid var(--primary-color);
}

.highlighted-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Media Queries for No Minimum Deposit Section */
@media (max-width: 991px) {
    .no-minimum-section {
        padding: 80px 0;
    }
    
    .no-minimum-content {
        flex-direction: column-reverse; /* Visuals below text */
        gap: 40px;
    }

    .no-minimum-visual {
        position: static; /* Remove sticky on tablet and below */
        width: 100%; /* Take full width when stacked */
    }
    
    .image-container { /* Ensure image container doesn't cause overflow */
        max-width: 450px; /* Or 100% if preferred */
        margin: 0 auto; /* Center if max-width is set */
    }
    
    .methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjust minmax for tablet */
    }
}

@media (max-width: 767px) {
    .no-minimum-section {
        padding: 60px 0;
    }

    /* .no-minimum-content is already column from 991px */
    
    .no-minimum-visual {
        margin-top: 40px; /* Add space when visual part stacks below text */
    }

    .methods-grid {
        grid-template-columns: 1fr; /* Single column for methods on mobile */
    }
    
    .deposit-steps {
        flex-direction: column; /* Stack deposit steps vertically */
        gap: 15px;
    }
    
    .step-arrow {
        transform: rotate(90deg); /* Adjust arrow for vertical flow */
        margin: 10px 0; /* Add some margin for the arrow when stacked */
    }

    .game-category, .payment-methods, .deposit-display { /* Ensure cards take full width and have some breathing room */
        width: 100%;
    }
     .category-info h3, .payment-methods h3, .deposit-header {
        font-size: 1.2rem; /* Adjust heading sizes for mobile */
    }
}

@media (max-width: 480px) {
    .highlight-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .highlight-badge i {
        font-size: 0.9rem;
    }
    
    .deposit-header {
        font-size: 1.1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .category-info h3 {
        font-size: 1.1rem; /* Further adjust heading sizes */
    }
     .payment-methods h3 {
        font-size: 1.1rem;
    }
    
    .call-to-action {
        padding: 20px 15px;
    }
    
    .highlighted-text {
        font-size: 1.05rem;
    }
}

/* Slot Games Section */
.slot-games-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.slot-games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path d="M20 0 L40 20 L20 40 L0 20 Z" fill="%23ffffff" opacity="0.02"/></svg>');
    z-index: 1;
}

.slot-games-content {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.slot-image-container {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.slot-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.slot-image:hover {
    transform: translateY(-10px);
}

.jackpot-badge {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Prompt', sans-serif;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transform: rotate(15deg);
    animation: pulse-rotate 3s infinite;
}

@keyframes pulse-rotate {
    0% {
        transform: rotate(15deg) scale(1);
    }
    50% {
        transform: rotate(15deg) scale(1.1);
    }
    100% {
        transform: rotate(15deg) scale(1);
    }
}

.jackpot-label {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.jackpot-amount {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.slot-features {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.feature-item {
    background: var(--darker-bg);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.feature-item i {
    color: var(--primary-color);
}

.slot-details {
    flex: 1;
}

.slot-details p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

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

.slot-card {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.slot-card:hover {
    transform: translateY(-5px);
    background: rgba(83, 82, 237, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slot-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker-bg);
    font-size: 1.5rem;
}

.slot-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.slot-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.free-trial {
    background: linear-gradient(135deg, rgba(229, 183, 68, 0.1), rgba(83, 82, 237, 0.1));
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.trial-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--darker-bg);
}

.trial-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.trial-content p {
    font-size: 1rem;
    margin-bottom: 0;
}

.slot-cta {
    margin-top: 30px;
    text-align: center;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    padding: 25px;
}

.slot-cta p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Media Queries for Slot Games Section */
@media (max-width: 991px) {
    .slot-games-section {
        padding: 80px 0;
    }
    
    .slot-games-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .slot-image-container {
        margin: 0 auto;
    }
    
    .jackpot-badge {
        width: 100px;
        height: 100px;
        top: -20px;
        right: -20px;
    }
    
    .jackpot-label {
        font-size: 0.8rem;
    }
    
    .jackpot-amount {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .slot-games-section {
        padding: 60px 0;
    }
    
    .popular-slots {
        grid-template-columns: 1fr;
    }
    
    .free-trial {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .trial-icon {
        margin-bottom: 15px;
    }
    
    .slot-features {
        flex-wrap: wrap;
        justify-content: center;
        bottom: -30px;
    }
    
    .feature-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .jackpot-badge {
        width: 80px;
        height: 80px;
    }
    
    .jackpot-label {
        font-size: 0.7rem;
    }
    
    .jackpot-amount {
        font-size: 1.5rem;
    }
    
    .slot-card {
        padding: 15px;
    }
    
    .slot-icon {
        min-width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slot-info h4 {
        font-size: 1rem;
    }
    
    .slot-info p {
        font-size: 0.85rem;
    }
    
    .trial-content h3 {
        font-size: 1.2rem;
    }
    
    .trial-content p {
        font-size: 0.9rem;
    }
    
    .slot-cta p {
        font-size: 1.1rem;
    }
    
    .feature-item {
        margin-bottom: 5px;
    }
}

/* Login and Registration Section */
.login-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.03"/></svg>');
    z-index: 1;
}

.login-content {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.login-details {
    flex: 1;
}

.login-details p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.login-highlight {
    background: linear-gradient(135deg, rgba(229, 183, 68, 0.1), rgba(83, 82, 237, 0.1));
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
}

.login-highlight i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.highlight-text {
    flex: 1;
    font-size: 1rem;
}

.highlight-text strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
}

.registration-steps {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.registration-steps h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.steps-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(229, 183, 68, 0.2);
}

.steps-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--darker-bg);
    flex-shrink: 0;
}

.step-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.step-detail p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.steps-completion {
    font-size: 1rem;
    color: var(--text-primary);
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 0;
}

.access-options {
    margin: 30px 0;
}

.access-options h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.option-item:hover {
    transform: translateY(-5px);
    background: rgba(229, 183, 68, 0.1);
}

.option-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.option-item span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.special-feature {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(83, 82, 237, 0.1));
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    align-items: center;
}

.special-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.special-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.special-content p {
    font-size: 1rem;
    margin-bottom: 0;
}

.login-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.login-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-device {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.device-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.device-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.device-screen {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.form-mockup {
    width: 80%;
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.input-mockup {
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.input-mockup i {
    color: var(--text-secondary);
}

.button-mockup {
    height: 45px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker-bg);
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    margin: 20px 0;
}

.alt-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.alt-option {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alt-option i {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.device-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.feature-tag {
    background: var(--dark-bg);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
}

.feature-tag i {
    color: var(--primary-color);
}

/* Media Queries for Login Section */
@media (max-width: 991px) {
    .login-section {
        padding: 80px 0;
    }
    
    .login-content {
        flex-direction: column-reverse;
        gap: 60px;
    }
    
    .mockup-device {
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .login-section {
        padding: 60px 0;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .login-highlight {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }
    
    .special-feature {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .login-cta {
        flex-direction: column;
    }
    
    .steps-list li {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .step-detail h4 {
        font-size: 1rem;
    }
    
    .step-detail p {
        font-size: 0.85rem;
    }
    
    .option-item {
        padding: 12px;
    }
    
    .option-item i {
        font-size: 1.3rem;
    }
    
    .option-item span {
        font-size: 0.85rem;
    }
    
    .special-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .special-content h3 {
        font-size: 1.1rem;
    }
    
    .special-content p {
        font-size: 0.9rem;
    }
    
    .device-features {
        gap: 5px;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

/* Promotions and Financial System Section */
.promotions-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50"><path d="M25,2 L48,25 L25,48 L2,25 Z" fill="%23ffffff" opacity="0.02"/></svg>');
    z-index: 1;
}

.promotions-content {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.promotions-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.promotions-card {
    background: linear-gradient(145deg, #1e1e1e, #252525);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.promotions-card:hover {
    transform: translateY(-10px);
}

.card-header {
    background: var(--primary-color);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.card-header i {
    font-size: 2.5rem;
    color: var(--darker-bg);
    margin-bottom: 10px;
}

.card-header h3 {
    font-size: 1.6rem;
    color: var(--darker-bg);
    margin: 0;
}

.card-body {
    padding: 30px 20px;
    text-align: center;
}

.promo-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Prompt', sans-serif;
}

.promo-details {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.bonus-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.bonus-item span {
    color: var(--text-primary);
    font-size: 1rem;
}

.promo-button {
    display: block;
    background: var(--accent-color);
    color: white;
    padding: 15px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.promo-button:hover {
    background: #4746cf;
    color: white;
}

.payment-visual {
    position: relative;
    margin-top: 20px;
}

.payment-image {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    width: 100%;
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.5s ease;
}

.payment-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.payment-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transform: rotate(10deg);
}

.payment-badge i {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.financial-details {
    flex: 1;
}

.financial-details p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.payment-methods-list {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.payment-methods-list h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.5;
}

.payment-options {
    list-style: none;
}

.payment-options li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.payment-options li i {
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

.payment-options li span {
    color: var(--text-secondary);
    font-size: 1rem;
}

.trust-badges {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-item {
    display: flex;
    gap: 20px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.5), rgba(40, 40, 40, 0.5));
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.trust-item:hover {
    transform: translateX(10px);
}

.trust-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.trust-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.trust-content p {
    font-size: 1rem;
    margin-bottom: 0;
}

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

.promotions-list h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.promo-options {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promo-options li {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    padding: 15px;
    transition: transform 0.3s ease;
}

.promo-options li:hover {
    transform: translateX(10px);
    background: rgba(229, 183, 68, 0.1);
}

.promo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker-bg);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.promo-info {
    flex: 1;
}

.promo-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.promo-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.promotion-cta {
    margin-top: 30px;
    text-align: center;
    background: linear-gradient(145deg, rgba(229, 183, 68, 0.1), rgba(83, 82, 237, 0.1));
    border-radius: 15px;
    padding: 25px;
}

.promotion-cta p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

/* Media Queries for Promotions Section */
@media (max-width: 991px) {
    .promotions-section {
        padding: 80px 0;
    }
    
    .promotions-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .promotions-visual {
        order: 2;
    }
    
    .financial-details {
        order: 1;
    }
    
    .promo-amount {
        font-size: 3.5rem;
    }
    
    .promotions-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .payment-visual {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .promotions-section {
        padding: 60px 0;
    }
    
    .card-header h3 {
        font-size: 1.4rem;
    }
    
    .promo-amount {
        font-size: 3rem;
    }
    
    .promo-details {
        font-size: 1.1rem;
    }
    
    .payment-badge {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }
    
    .payment-badge i {
        font-size: 1.5rem;
    }
    
    .trust-item {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .card-header {
        padding: 15px;
    }
    
    .card-header i {
        font-size: 2rem;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .card-body {
        padding: 20px 15px;
    }
    
    .promo-amount {
        font-size: 2.5rem;
    }
    
    .promo-details {
        font-size: 1rem;
    }
    
    .bonus-item span {
        font-size: 0.9rem;
    }
    
    .promo-button {
        font-size: 1rem;
        padding: 12px;
    }
    
    .payment-methods-list {
        padding: 20px 15px;
    }
    
    .payment-methods-list h3 {
        font-size: 1.05rem;
    }
    
    .payment-options li {
        gap: 10px;
    }
    
    .payment-options li i {
        font-size: 1.2rem;
    }
    
    .payment-options li span {
        font-size: 0.9rem;
    }
    
    .trust-item {
        padding: 15px;
        gap: 15px;
    }
    
    .trust-item i {
        font-size: 1.7rem;
    }
    
    .trust-content h4 {
        font-size: 1.1rem;
    }
    
    .trust-content p {
        font-size: 0.9rem;
    }
    
    .promo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .promo-info h4 {
        font-size: 1rem;
    }
    
    .promo-info p {
        font-size: 0.85rem;
    }
    
    .promotion-cta {
        padding: 20px 15px;
    }
    
    .promotion-cta p {
        font-size: 1rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--darker-bg);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--secondary-color));
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-logo {
    flex: 1;
    min-width: 250px;
}
.logo-text {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 15px;
}
.tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}
.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-links-column {
    flex: 1;
    min-width: 150px;
}
.footer-links-column h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}
.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-column li {
    margin-bottom: 12px;
}
.footer-links-column a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-links-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--primary-color);
    color: var(--darker-bg);
    transform: translateY(-5px);
}
.footer-policy-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.footer-policy-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-policy-links a:hover {
    color: var(--primary-color);
}
.footer-disclaimer {
    text-align: center;
    margin-bottom: 20px;
}
.footer-disclaimer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}
.footer-copyright {
    text-align: center;
}
.footer-copyright p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}
/* Media Queries for Footer */
@media (max-width: 991px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    .footer-logo {
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}
@media (max-width: 767px) {
    .site-footer {
        padding: 50px 0 30px;
    }
    .footer-links {
        gap: 40px;
    }
    .footer-links-column {
        flex: 0 0 calc(50% - 20px);
    }
    .footer-policy-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}
@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    .logo-text {
        font-size: 1.8rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    .footer-links-column {
        flex: 1 0 100%;
    }
    .footer-social {
        gap: 12px;
    }
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Sticky Bottom Buttons */
.sticky-bottom-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.sticky-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    color: #fff;
    text-align: center;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sticky-button:hover {
    transform: translateY(-5px);
    color: #fff;
}

.sticky-button i {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.sticky-button.login {
    background-color: var(--accent-color);
}

.sticky-button.login:hover {
    background-color: #4746cf;
}

.sticky-button.register {
    background-color: var(--primary-color);
    color: #000;
}

.sticky-button.register:hover {
    background-color: var(--primary-hover);
}

.sticky-button.free-credit {
    background-color: var(--secondary-color);
}

.sticky-button.free-credit:hover {
    background-color: #ff3347;
}

/* Media Queries for Sticky Buttons */
@media (max-width: 767px) {
    .sticky-button {
        padding: 10px 5px;
        font-size: 0.8rem;
    }
    
    .sticky-button i {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }
}

@media (max-width: 480px) {
    .sticky-button {
        padding: 8px 5px;
        font-size: 0.75rem;
    }
    
    .sticky-button i {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }
}

/* Bottom padding for main content to prevent overlap with sticky buttons */
body {
    padding-bottom: 70px;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 65px;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 60px;
    }
}