/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FFFFFF;
    color: #1F1F1F;
    line-height: 1.6;
    overflow-x: hidden;
}

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



/* Header */
.header {
    background: linear-gradient(135deg, #630178 0%, #f03f0a 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(99, 1, 120, 0.3);
}

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

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    transition: all 0.3s ease;
}



.header-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-primary {
    background: #ff6b00;
    color: #FFFFFF;
}

.btn-secondary {
    background: #ff6b00;
    color: #FFFFFF;
}

.btn-ghost {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-md {
    padding: 14px 28px;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #630178 0%, #f03f0a 100%);
    padding: 40px 0 40px 0;
    position: relative;
    overflow: hidden;
    min-height: 30vh;
    display: flex;
    align-items: flex-start;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FFC107" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FFC107" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23FFC107" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    height: 100%;
    min-height: 300px;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-self: flex-start;
    margin-bottom: auto;
    padding-top: 0;
    align-self: flex-start;
    margin-top: 0;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    padding: 0;
    align-self: flex-end;
    margin-top: auto;
    align-self: flex-end;
    align-self: flex-end;
    margin-bottom: 0;
    align-self: flex-end;
}

.desktop-device-img {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    align-self: flex-end;
    margin: 0;
    padding: 0;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}





.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #FFC107;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-cta {
    margin-top: 2rem;
}



/* Main Content */
.main-content {
    padding: 40px 0 0 0;
    background: transparent;
}

.content-block {
    margin-bottom: 80px;
}

.content-block:last-of-type {
    margin-bottom: 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #1F1F1F;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #f03f0a 0%, #630178 100%);
    border-radius: 2px;
}

.text-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.text-content p {
    font-size: 1.2rem;
    color: #6B7280;
    line-height: 1.8;
}

/* Table Styles */
.table-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.benefits-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.benefits-table th {
    background: #ff6b00;
    color: #FFFFFF;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.benefits-table td {
    padding: 20px;
    border-bottom: 1px solid #E5E7EB;
    color: #1F1F1F;
}

.benefits-table tr:hover {
    background: #F9FAFB;
}

.benefits-table i {
    margin-right: 8px;
    color: #ff6b00;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-success {
    background: #ff6b00;
    color: #FFFFFF;
}

.table-note {
    text-align: center;
    margin-top: 1rem;
    color: #6B7280;
    font-style: italic;
}

/* List Styles */
.list-container {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 16px 0;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #1F1F1F;
}

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

.feature-list i {
    margin-right: 16px;
    color: #ff6b00;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #FF6600 0%, #A020F0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-5px);
}

.image-caption {
    color: #6B7280;
    font-weight: 500;
}

/* Slider */
.slider-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #630178 0%, #f03f0a 100%);
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 16px;
}



.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1F1F1F;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff6b00;
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1F1F1F 0%, #374151 100%);
    padding: 60px 0 30px;
    color: #FFFFFF;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

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

.footer-section h3 {
    color: #FFC107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #D1D5DB;
    margin-bottom: 0.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    max-width: 150px;
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

.payment-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-icon {
    font-size: 2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4B5563;
    color: #9CA3AF;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom p:nth-child(2) {
    font-weight: 600;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .hero {
        padding: 60px 0 40px;
        text-align: center;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        max-width: 100%;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-image {
        order: -1;
        padding-top: 20px;
    }
    
    .desktop-device-img {
        max-height: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    

    
    .section-title {
        font-size: 2rem;
    }
    
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .slider {
        height: 300px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .footer-logo-image {
        height: 35px;
        max-width: 120px;
    }
    
    .footer-section p {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
    }
    
    .hero {
        padding: 50px 0 30px;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-image {
        padding-top: 15px;
    }
    
    .desktop-device-img {
        max-height: 250px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-logo-image {
        height: 30px;
        max-width: 100px;
    }
    
    .footer-section p {
        white-space: normal;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .slider {
        height: 250px;
    }
    
    .slide-image {
        width: 85%;
        height: 85%;
        object-fit: contain;
        border-radius: 12px;
    }
    

}

/* Accessibility */
.btn:focus,
.slider-arrow:focus,
.dot:focus {
    outline: 2px solid #ff6b00;
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for content blocks */
.content-block {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.content-block:nth-child(2) {
    animation-delay: 0.2s;
}

.content-block:nth-child(3) {
    animation-delay: 0.4s;
}

.content-block:nth-child(4) {
    animation-delay: 0.6s;
}

.content-block:nth-child(5) {
    animation-delay: 0.8s;
}

.content-block:nth-child(6) {
    animation-delay: 1s;
}

.content-block:nth-child(7) {
    animation-delay: 1.2s;
}

.content-block:nth-child(8) {
    animation-delay: 1.4s;
}

.content-block:nth-child(9) {
    animation-delay: 1.6s;
}

.content-block:nth-child(10) {
    animation-delay: 1.8s;
}

.content-block:nth-child(11) {
    animation-delay: 2s;
}

.content-block:nth-child(12) {
    animation-delay: 2.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* New Content Styles */
.lead-text {
    font-size: 1.4rem;
    color: #ff6b00;
    font-weight: 600;
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 1.8rem;
    color: #1F1F1F;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
    position: relative;
    padding-left: 2rem;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b00;
    font-weight: bold;
    font-size: 1.2rem;
}

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

/* Steps Container */
.steps-container {
    max-width: 1000px;
    margin: 2rem auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 12px;
    border-left: 4px solid #ff6b00;
}

.step-number {
    background: #ff6b00;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-item p {
    margin: 0;
    line-height: 1.6;
}

/* Games Section */
.games-list {
    list-style: none;
    margin: 1.5rem 0;
}

.games-list li {
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
    position: relative;
    padding-left: 2rem;
}

.games-list li:before {
    content: '🎮';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

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

.games-availability {
    background: #FEF3C7;
    border: 1px solid #F59E0B;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.games-availability p {
    margin: 0.5rem 0;
    color: #92400E;
}

/* Bonus Table */
.bonus-table {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bonus-row {
    display: flex;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    align-items: center;
}

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

.bonus-deposit {
    font-weight: 600;
    color: #1F1F1F;
    min-width: 200px;
    margin-right: 1rem;
}

.bonus-amount {
    color: #ff6b00;
    font-weight: 500;
}

.bonus-terms {
    background: #F3F4F6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.bonus-terms h4 {
    color: #1F1F1F;
    margin-bottom: 0.5rem;
}

.bonus-terms p {
    margin: 0;
    color: #6B7280;
}

/* Payment Methods Table */
.payment-methods-table {
    max-width: 1000px;
    margin: 2rem auto;
    overflow-x: auto;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 3px solid #ff6b00;
}

.payment-table th {
    background: #ff6b00;
    color: #FFFFFF;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.payment-table td {
    padding: 20px;
    border-bottom: 1px solid #E5E7EB;
    color: #1F1F1F;
}

.payment-table tr:hover {
    background: #F9FAFB;
}

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

/* Final CTA */
.final-cta {
    text-align: center;
    margin: 3rem 0 1rem 0;
}

.final-cta .text-content {
    text-align: center;
}

.final-cta .btn {
    font-size: 1.2rem;
    padding: 20px 40px;
}

/* Welcome Bonus Highlight */
.welcome-bonus-highlight {
    background: linear-gradient(135deg, #630178 0%, #f03f0a 100%);
    border: none;
    border-radius: 0;
    padding: 4rem 0;
    margin: 0 -20px;
    box-shadow: 0 8px 32px rgba(99, 1, 120, 0.3);
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.welcome-bonus-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23FFC107" opacity="0.4"/><circle cx="80" cy="40" r="0.8" fill="%23FFC107" opacity="0.4"/><circle cx="40" cy="80" r="1.2" fill="%23FFC107" opacity="0.4"/><circle cx="90" cy="90" r="0.6" fill="%23FFC107" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.welcome-bonus-highlight .subsection-title {
    color: #FFFFFF;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.welcome-bonus-highlight .bonus-table {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #ff6b00;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.welcome-bonus-highlight .container {
    position: relative;
    z-index: 2;
}

.welcome-bonus-highlight .bonus-amount {
    color: #ff6b00;
    font-weight: 600;
}

.welcome-bonus-highlight .bonus-terms {
    background: transparent;
    border: none;
    position: relative;
    z-index: 2;
}

.welcome-bonus-highlight .bonus-terms h4 {
    color: #8B4513;
}

/* Bonus Cards */
.bonus-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.bonus-card {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #ff6b00;
}

.bonus-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem auto;
    color: #ff6b00;
}

.bonus-card-icon svg {
    width: 100%;
    height: 100%;
}

.bonus-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1F1F1F;
    margin-bottom: 1rem;
}

.bonus-card-text {
    color: #6B7280;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.bonus-card .btn {
    margin-top: auto;
    align-self: center;
}

/* FAQ Section */
.faq-container {
    max-width: 1000px;
    margin: 2rem auto;
}

.faq-item {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff6b00;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.15);
}

.faq-question {
    width: 100%;
    background: #F9FAFB;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F1F1F;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #F3F4F6;
}

.faq-question[aria-expanded="true"] {
    background: #ff6b00;
    color: #FFFFFF;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    color: #6B7280;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Mobile Apps Download Section */
.mobile-apps-highlight {
    background: linear-gradient(135deg, #630178 0%, #f03f0a 100%);
    border: none;
    border-radius: 0;
    padding: 4rem 0;
    margin: 0 -20px;
    box-shadow: 0 8px 32px rgba(99, 1, 120, 0.3);
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    cursor: pointer;
    transition: all 0.3s ease;
}



.mobile-apps-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mobile-stars" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23FFC107" opacity="0.4"/><circle cx="80" cy="40" r="0.8" fill="%23FFC107" opacity="0.4"/><circle cx="40" cy="80" r="1.2" fill="%23FFC107" opacity="0.4"/><circle cx="90" cy="90" r="0.6" fill="%23FFC107" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23mobile-stars)"/></svg>');
    opacity: 0.3;
}

.mobile-apps-highlight .subsection-title {
    color: #FFFFFF;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.mobile-apps-highlight .mobile-apps-subtitle {
    color: #FFC107;
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-apps-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.mobile-app-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #ff6b00;
    border-radius: 50px;
    text-decoration: none;
    color: #1F1F1F;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-app-btn:hover {
    background: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: #FFFFFF;
}

.app-icon {
    width: 24px;
    height: 24px;
    color: #ff6b00;
}

.appstore-btn:hover .app-icon {
    color: #007AFF;
}

.android-btn:hover .app-icon {
    color: #3DDC84;
}

/* Responsive adjustments for new content */
@media (max-width: 768px) {
    .welcome-bonus-highlight {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 3rem 1.5rem;
    }
    
    .welcome-bonus-highlight .subsection-title {
        font-size: 2rem;
    }
    
    .bonus-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 0 1rem 0;
    }
    
    .bonus-row {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-deposit {
        min-width: auto;
        margin: 0 0 0.5rem 0;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    .lead-text {
        font-size: 1.2rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .faq-answer p {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }
    
    .mobile-apps-highlight {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 3rem 1.5rem;
    }
    
    .mobile-apps-highlight .subsection-title {
        font-size: 2rem;
    }
    
    .mobile-apps-highlight .mobile-apps-subtitle {
        font-size: 1.1rem;
    }
    
    .mobile-apps-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mobile-app-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
}
