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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://framerusercontent.com/images/sbq8wDrmwWLqG430AZnvUsFps.png') center/cover no-repeat fixed;
    min-height: 100vh;
}

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

/* Header */
.header {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    height: 50px;
    width: auto;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.6);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    color: #333;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(254, 202, 87, 0.4);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 202, 87, 0.6);
}

/* Navigation */
.navigation {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 15px 0;
    flex-wrap: wrap;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.content-section {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.content-section h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 2.2rem;
    border-bottom: 3px solid #ff6b6b;
    padding-bottom: 10px;
}

.content-section h3 {
    color: #34495e;
    margin: 25px 0 15px 0;
    font-size: 1.5rem;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Casino Info Table */
.casino-info {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.table-responsive {
    overflow-x: auto;
    margin-top: 20px;
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.casino-table th,
.casino-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.casino-table th {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.casino-table tr:hover {
    background: rgba(255, 107, 107, 0.05);
}

.casino-table td:first-child {
    font-weight: bold;
    color: #2c3e50;
}

/* Bonus Package */
.bonus-package {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.bonus-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.bonus-item h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Games Categories */
.games-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.game-category {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.game-category h4 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* FAQ Section */
.faq-container {
    margin-top: 30px;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff6b6b;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Section CTA */
.section-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(238, 90, 36, 0.4);
}

.section-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(238, 90, 36, 0.6);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 60px 0;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.final-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    color: #333;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(254, 202, 87, 0.5);
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(254, 202, 87, 0.7);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-content p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links li {
        margin: 5px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .bonus-package,
    .games-categories {
        grid-template-columns: 1fr;
    }
    
    .casino-table {
        font-size: 0.9rem;
    }
    
    .casino-table th,
    .casino-table td {
        padding: 10px;
    }
    
    .final-cta {
        padding: 40px 20px;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .casino-table th,
    .casino-table td {
        padding: 8px;
        font-size: 0.8rem;
    }
    
    .cta-button,
    .hero-cta,
    .section-cta,
    .final-cta-button {
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Selection Color */
::selection {
    background: rgba(255, 107, 107, 0.3);
    color: #2c3e50;
}

::-moz-selection {
    background: rgba(255, 107, 107, 0.3);
    color: #2c3e50;
}