/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121421;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1d2e 0%, #121421 100%);
    border-right: 1px solid #2a2d3e;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.logo {
    padding: 0 20px 30px;
    border-bottom: 1px solid #2a2d3e;
    margin-bottom: 30px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
}

.vox {
    color: #f7931e;
    text-shadow: 0 0 20px rgba(247, 147, 30, 0.5);
}

.casino {
    color: #ffffff;
    margin-left: 5px;
}

.nav-menu {
    list-style: none;
    flex: 1;
    padding: 0 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #b8bcc8;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    color: #ffffff;
    transform: translateX(5px);
}

.nav-link.active {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
}

.nav-link i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.auth-buttons {
    padding: 20px;
    border-top: 1px solid #2a2d3e;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-login, .btn-register {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-login {
    background: transparent;
    color: #f7931e;
    border: 2px solid #f7931e;
}

.btn-login:hover {
    background: #f7931e;
    color: #ffffff;
}

.btn-register {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    color: #ffffff;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.4);
}

/* Main Content */
.main-content {
    margin-left: 280px;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1d2e 0%, #2a2d3e 50%, #121421 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.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="50" cy="50" r="1" fill="%23f7931e" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(247, 147, 30, 0.5);
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #b8bcc8;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: #e0e4ed;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(247, 147, 30, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #f7931e;
    border: 2px solid #f7931e;
}

.btn-secondary:hover {
    background: #f7931e;
    color: #ffffff;
}

.btn-primary.large, .btn-secondary.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.fortune-wheel {
    position: relative;
    width: 300px;
    height: 300px;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        #f7931e 0deg 60deg,
        #ff6b35 60deg 120deg,
        #ffd700 120deg 180deg,
        #f7931e 180deg 240deg,
        #ff6b35 240deg 300deg,
        #ffd700 300deg 360deg
    );
    position: relative;
    animation: spin 10s linear infinite;
    box-shadow: 0 0 50px rgba(247, 147, 30, 0.5);
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #121421;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #f7931e;
}

.wheel-center i {
    font-size: 2rem;
    color: #f7931e;
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #f7931e;
    z-index: 10;
}

.mascot {
    position: absolute;
    bottom: -50px;
    right: -50px;
}

.dog-character {
    font-size: 4rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b8bcc8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background: #1a1d2e;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    color: #e0e4ed;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.2);
    border-color: #f7931e;
}

.feature-card i {
    font-size: 2.5rem;
    color: #f7931e;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-card p {
    color: #b8bcc8;
    font-size: 0.95rem;
}

/* Games Section */
.games-section {
    background: #121421;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.game-card {
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #3a3d4e;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(247, 147, 30, 0.3);
    border-color: #f7931e;
}

.game-image {
    height: 200px;
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-placeholder {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.game-info p {
    color: #b8bcc8;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.game-type {
    background: #f7931e;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Live Casino Section */
.live-casino-section {
    background: #1a1d2e;
}

.live-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.live-feature {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
}

.live-feature:hover {
    transform: translateY(-5px);
    border-color: #f7931e;
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.2);
}

.live-feature i {
    font-size: 3rem;
    color: #f7931e;
    margin-bottom: 20px;
}

.live-feature h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.live-feature p {
    color: #b8bcc8;
    line-height: 1.6;
}

/* Bonuses Section */
.bonuses-section {
    background: #121421;
}

.bonus-cards {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.bonus-card {
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(247, 147, 30, 0.2);
}

.bonus-card.main-bonus {
    border-color: #f7931e;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
}

.bonus-card.main-bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

.bonus-header {
    margin-bottom: 20px;
}

.bonus-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #f7931e;
    text-shadow: 0 0 20px rgba(247, 147, 30, 0.5);
}

.bonus-details {
    margin-bottom: 25px;
}

.bonus-details p {
    color: #b8bcc8;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.bonus-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.bonus-card p {
    color: #b8bcc8;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Payment Methods */
.payment-section {
    background: #1a1d2e;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
    min-width: 120px;
}

.payment-method:hover {
    transform: translateY(-5px);
    border-color: #f7931e;
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.2);
}

.payment-method i {
    font-size: 2.5rem;
    color: #f7931e;
    margin-bottom: 10px;
}

.payment-method span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobile Section */
.mobile-section {
    background: #121421;
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mobile-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.mobile-text p {
    color: #b8bcc8;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.mobile-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.mobile-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mobile-feature i {
    font-size: 2rem;
    color: #f7931e;
    margin-bottom: 10px;
}

.mobile-feature span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.download-buttons {
    display: flex;
    gap: 15px;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    color: #ffffff;
    border: 1px solid #3a3d4e;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-download:hover {
    border-color: #f7931e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.2);
}

.btn-download i {
    font-size: 1.2rem;
}

.phone-mockup {
    width: 250px;
    height: 500px;
    background: #2a2d3e;
    border-radius: 30px;
    padding: 20px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #121421;
    border-radius: 20px;
    overflow: hidden;
}

.app-interface {
    padding: 20px;
    height: 100%;
}

.app-header {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #f7931e;
    margin-bottom: 30px;
}

.app-games {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-game {
    height: 60px;
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    border-radius: 10px;
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    background: #1a1d2e;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #3a3d4e;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #f7931e;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(247, 147, 30, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-question i {
    color: #f7931e;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 25px;
    color: #b8bcc8;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1d2e 0%, #2a2d3e 50%, #121421 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.2rem;
    color: #b8bcc8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #0a0d1a;
    padding: 50px 0 20px;
    border-top: 1px solid #2a2d3e;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f7931e;
    margin-bottom: 15px;
}

.footer-section p {
    color: #b8bcc8;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2a2d3e;
}

.footer-bottom p {
    color: #8a8d9a;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .bonus-cards {
        grid-template-columns: 1fr;
    }
    
    .mobile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .live-features {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .mobile-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .fortune-wheel {
        width: 200px;
        height: 200px;
    }
    
    .wheel-center {
        width: 60px;
        height: 60px;
    }
    
    .wheel-center i {
        font-size: 1.5rem;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: #f7931e;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1d2e;
}

::-webkit-scrollbar-thumb {
    background: #f7931e;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6b35;
}

/* Additional styles for all pages */

/* Page Header */
.page-header {
    text-align: center;
    padding: 60px 0;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.3rem;
    color: #b8bcc8;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Story */
.company-story {
    background: #1a1d2e;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    color: #e0e4ed;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #3a3d4e;
}

.image-placeholder i {
    font-size: 3rem;
    color: #f7931e;
    margin-bottom: 15px;
}

.image-placeholder p {
    color: #b8bcc8;
    font-weight: 600;
}

/* Mission & Vision */
.mission-vision {
    background: #121421;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card {
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: #f7931e;
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.2);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.mission-card p {
    color: #b8bcc8;
    line-height: 1.6;
}

/* License Section */
.license-section {
    background: #1a1d2e;
}

.license-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.license-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.license-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    border: 1px solid #3a3d4e;
}

.license-item i {
    font-size: 2.5rem;
    color: #f7931e;
    margin-top: 5px;
}

.license-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.license-item p {
    color: #b8bcc8;
    margin-bottom: 5px;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    border: 1px solid #3a3d4e;
}

.badge i {
    font-size: 2rem;
    color: #4CAF50;
}

.badge span {
    font-weight: 600;
    color: #ffffff;
}

/* Team Section */
.team-section {
    background: #121421;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #f7931e;
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.2);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.member-photo i {
    font-size: 2.5rem;
    color: #ffffff;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.team-member p {
    color: #b8bcc8;
    line-height: 1.6;
}

/* Technology Section */
.technology-section {
    background: #1a1d2e;
}

.tech-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.tech-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.tech-text p {
    color: #b8bcc8;
    margin-bottom: 25px;
    line-height: 1.8;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
}

.tech-feature:hover {
    transform: translateY(-3px);
    border-color: #f7931e;
}

.tech-feature i {
    font-size: 2.5rem;
    color: #f7931e;
    margin-bottom: 10px;
}

.tech-feature span {
    color: #ffffff;
    font-weight: 600;
}

/* Statistics Section */
.stats-section {
    background: #121421;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #f7931e;
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f7931e;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(247, 147, 30, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    color: #b8bcc8;
    font-weight: 600;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #1a1d2e 0%, #2a2d3e 50%, #121421 100%);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-cta p {
    font-size: 1.2rem;
    color: #b8bcc8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Cashback specific styles */
.cashback-overview {
    background: #1a1d2e;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.overview-text p {
    font-size: 1.1rem;
    color: #b8bcc8;
    margin-bottom: 30px;
    line-height: 1.8;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.benefit-item span {
    color: #e0e4ed;
    font-weight: 500;
}

.overview-visual {
    display: flex;
    justify-content: center;
}

.cashback-wheel {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(
        #f7931e 0deg 120deg,
        #ff6b35 120deg 240deg,
        #ffd700 240deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: spin 10s linear infinite;
}

.wheel-center {
    width: 120px;
    height: 120px;
    background: #121421;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid #f7931e;
}

.percentage {
    font-size: 2rem;
    font-weight: 800;
    color: #f7931e;
}

.label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
}

/* Cashback Levels */
.cashback-levels {
    background: #121421;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.level-card {
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
    position: relative;
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(247, 147, 30, 0.2);
}

.level-card.premium {
    border-color: #f7931e;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
}

.level-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    border-radius: 15px 15px 0 0;
}

.level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.level-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.level-percentage {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f7931e;
    text-shadow: 0 0 20px rgba(247, 147, 30, 0.5);
}

.level-requirements {
    margin-bottom: 25px;
}

.level-requirements p {
    color: #b8bcc8;
    font-weight: 500;
}

.level-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit i {
    color: #4CAF50;
    font-size: 1rem;
}

.benefit span {
    color: #e0e4ed;
    font-size: 0.9rem;
}

/* How It Works */
.how-it-works {
    background: #1a1d2e;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.step-content p {
    color: #b8bcc8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-arrow {
    color: #f7931e;
    font-size: 1.5rem;
}

/* Calculator Section */
.calculator-section {
    background: #121421;
}

.calculator {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid #3a3d4e;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
}

.input-group input,
.input-group select {
    padding: 12px 15px;
    border: 1px solid #3a3d4e;
    border-radius: 8px;
    background: #121421;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #f7931e;
    box-shadow: 0 0 0 2px rgba(247, 147, 30, 0.2);
}

.calculator-result {
    text-align: center;
}

.result-card {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    border-radius: 15px;
    padding: 30px;
    color: #ffffff;
}

.result-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.result-amount {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.result-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Terms Section */
.terms-section {
    background: #1a1d2e;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.term-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
}

.term-item:hover {
    transform: translateY(-5px);
    border-color: #f7931e;
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.2);
}

.term-item i {
    font-size: 2.5rem;
    color: #f7931e;
    margin-bottom: 20px;
}

.term-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.term-item p {
    color: #b8bcc8;
    line-height: 1.6;
}

/* Additional styles for other pages */
.privacy-intro {
    background: #1a1d2e;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.intro-content p {
    font-size: 1.1rem;
    color: #b8bcc8;
    margin-bottom: 30px;
    line-height: 1.8;
}

.last-updated {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 10px;
    border: 1px solid #3a3d4e;
    max-width: 300px;
}

.last-updated i {
    color: #f7931e;
    font-size: 1.2rem;
}

.last-updated span {
    color: #b8bcc8;
    font-weight: 500;
}

/* Data Controller */
.data-controller {
    background: #121421;
}

.controller-info {
    max-width: 600px;
    margin: 0 auto;
}

.info-card {
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #3a3d4e;
}

.info-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f7931e;
}

.info-details p {
    color: #b8bcc8;
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-details strong {
    color: #ffffff;
    font-weight: 600;
}

/* Data Collection */
.data-collection {
    background: #1a1d2e;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.collection-category {
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
}

.collection-category:hover {
    transform: translateY(-5px);
    border-color: #f7931e;
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-header i {
    font-size: 2rem;
    color: #f7931e;
}

.category-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.data-list {
    list-style: none;
    padding: 0;
}

.data-list li {
    color: #b8bcc8;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.data-list li::before {
    content: '•';
    color: #f7931e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Data Usage */
.data-usage {
    background: #121421;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.usage-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-5px);
    border-color: #f7931e;
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.2);
}

.usage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.usage-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.usage-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.usage-item p {
    color: #b8bcc8;
    line-height: 1.6;
}

/* Legal Basis */
.legal-basis {
    background: #1a1d2e;
}

.basis-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.basis-item {
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
}

.basis-item:hover {
    transform: translateY(-5px);
    border-color: #f7931e;
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.2);
}

.basis-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f7931e;
}

.basis-item p {
    color: #b8bcc8;
    line-height: 1.6;
}

/* Data Sharing */
.data-sharing {
    background: #121421;
}

.sharing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sharing-category {
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
}

.sharing-category:hover {
    transform: translateY(-5px);
    border-color: #f7931e;
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.2);
}

.sharing-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.sharing-category p {
    color: #b8bcc8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sharing-category ul {
    list-style: none;
    padding: 0;
}

.sharing-category li {
    color: #b8bcc8;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.sharing-category li::before {
    content: '•';
    color: #f7931e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Data Security */
.data-security {
    background: #1a1d2e;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.security-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    border-color: #f7931e;
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.2);
}

.security-item i {
    font-size: 2.5rem;
    color: #f7931e;
    margin-bottom: 20px;
}

.security-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.security-item p {
    color: #b8bcc8;
    line-height: 1.6;
}

/* Your Rights */
.your-rights {
    background: #121421;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.right-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
}

.right-item:hover {
    transform: translateY(-5px);
    border-color: #f7931e;
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.2);
}

.right-item i {
    font-size: 2rem;
    color: #f7931e;
    margin-top: 5px;
}

.right-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.right-item p {
    color: #b8bcc8;
    line-height: 1.6;
}

.rights-contact {
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #3a3d4e;
}

.rights-contact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f7931e;
}

.rights-contact p {
    color: #b8bcc8;
    margin-bottom: 15px;
    line-height: 1.6;
}

.rights-contact ul {
    list-style: none;
    padding: 0;
}

.rights-contact li {
    color: #b8bcc8;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.rights-contact li::before {
    content: '•';
    color: #f7931e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Cookies Section */
.cookies-section {
    background: #1a1d2e;
}

.cookies-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.cookies-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.cookies-info p {
    color: #b8bcc8;
    line-height: 1.8;
}

.cookies-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-type {
    padding: 20px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 10px;
    border: 1px solid #3a3d4e;
}

.cookie-type h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #f7931e;
}

.cookie-type p {
    color: #b8bcc8;
    line-height: 1.6;
}

/* Data Retention */
.data-retention {
    background: #121421;
}

.retention-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.retention-item {
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
}

.retention-item:hover {
    transform: translateY(-5px);
    border-color: #f7931e;
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.2);
}

.retention-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f7931e;
}

.retention-item p {
    color: #b8bcc8;
    line-height: 1.6;
}

/* Privacy Contact */
.privacy-contact {
    background: #1a1d2e;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1a1d2e 100%);
    border-radius: 15px;
    border: 1px solid #3a3d4e;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: #f7931e;
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.2);
}

.contact-item i {
    font-size: 2.5rem;
    color: #f7931e;
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-item p {
    color: #b8bcc8;
    line-height: 1.6;
}

/* Policy Changes */
.policy-changes {
    background: #121421;
}

.policy-changes h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.policy-changes p {
    color: #b8bcc8;
    margin-bottom: 20px;
    line-height: 1.8;
}

.policy-changes ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.policy-changes li {
    color: #b8bcc8;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.policy-changes li::before {
    content: '•';
    color: #f7931e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Image styles for new layout */
.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.game-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.live-casino-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    margin: 0 auto 40px;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mobile-app-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Bonus page styles */
.welcome-bonus {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
}

.bonus-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.bonus-amount {
    font-size: 4rem;
    font-weight: 800;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 20px;
}

.bonus-amount .plus {
    font-size: 2rem;
    color: #fff;
    margin-left: 10px;
}

.bonus-details h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.bonus-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.bonus-features li {
    padding: 10px 0;
    color: #ccc;
    display: flex;
    align-items: center;
}

.bonus-features i {
    color: #ff6b35;
    margin-right: 10px;
}

.bonus-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: #1a1a2e;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.package-header h3 {
    color: #fff;
    margin-bottom: 10px;
}

.package-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
}

.package-details ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.package-details li {
    padding: 5px 0;
    color: #ccc;
}

.weekly-bonuses {
    background: #16213e;
    padding: 80px 0;
}

.weekly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.weekly-card {
    background: #1a1a2e;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.weekly-day {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #ff6b35;
    color: #fff;
    padding: 10px;
    font-weight: 600;
}

.weekly-card h3 {
    color: #fff;
    margin: 40px 0 10px;
}

.weekly-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
}

.vip-program {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
}

.vip-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.vip-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.vip-features li {
    padding: 10px 0;
    color: #ccc;
    display: flex;
    align-items: center;
}

.vip-features i {
    color: #ff6b35;
    margin-right: 10px;
}

.bonus-terms {
    background: #16213e;
    padding: 80px 0;
}

.terms-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.terms-section h3 {
    color: #fff;
    margin-bottom: 20px;
}

.terms-section ul {
    list-style: none;
    padding: 0;
}

.terms-section li {
    padding: 8px 0;
    color: #ccc;
    border-bottom: 1px solid #333;
}

/* Games page styles */
.game-categories {
    background: #16213e;
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: #1a1a2e;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.category-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.category-card p {
    color: #ccc;
    margin-bottom: 25px;
}

.featured-slots {
    background: #1a1a2e;
    padding: 80px 0;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.slot-card {
    background: #16213e;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.slot-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.slot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slot-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
}

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.slot-card:hover .slot-overlay {
    opacity: 1;
}

.btn-play {
    background: #ff6b35;
    color: #fff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background: #ff8c42;
    transform: scale(1.05);
}

.slot-info {
    padding: 20px;
}

.slot-info h3 {
    color: #fff;
    margin-bottom: 10px;
}

.slot-info p {
    color: #ccc;
    margin-bottom: 15px;
}

.slot-features {
    display: flex;
    gap: 15px;
}

.rtp, .volatility {
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.live-casino-games {
    background: #16213e;
    padding: 80px 0;
}

.live-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.live-game-card {
    background: #1a1a2e;
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.live-game-image {
    position: relative;
    height: 200px;
}

.live-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
}

.live-game-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.live-game-info h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.live-game-info p {
    color: #ccc;
    margin-bottom: 20px;
}

.live-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.min-bet, .max-bet {
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.game-providers {
    background: #1a1a2e;
    padding: 80px 0;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.provider-card {
    background: #16213e;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.provider-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.provider-logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.provider-card p {
    color: #ccc;
    margin-bottom: 20px;
}

.game-stats {
    background: #16213e;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: #1a1a2e;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #ff6b35;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stat-label {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .story-content,
    .overview-content,
    .tech-content,
    .cookies-content {
        grid-template-columns: 1fr;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .hero-main-image {
        max-width: 100%;
    }
    
    .live-casino-img {
        max-width: 100%;
    }
    
    .mobile-app-img {
        max-width: 100%;
    }
    
    .bonus-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .vip-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .live-game-card {
        grid-template-columns: 1fr;
    }
    
    .live-game-image {
        height: 150px;
    }
}
