/* 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: url('https://framerusercontent.com/images/sbq8wDrmwWLqG430AZnvUsFps.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

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

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

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

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

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ffd700;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.cta-button.large {
    padding: 25px 50px;
    font-size: 1.5rem;
}

.bonus-highlights {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.highlight {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight h3 {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.highlight p {
    font-size: 1.1rem;
    color: #fff;
}

/* Main Content */
.main-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 40px 20px;
    border-radius: 20px;
    padding: 60px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.content-section {
    margin-bottom: 50px;
    padding: 0 40px;
}

.content-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 15px;
}

.content-section h3 {
    font-size: 1.8rem;
    color: #34495e;
    margin: 30px 0 20px;
}

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

.content-section strong {
    color: #e74c3c;
    font-weight: bold;
}

.registration-steps ol,
.bonus-breakdown ul,
.login-features ul,
.mirror-info ul {
    margin: 20px 0;
    padding-left: 30px;
}

.registration-steps li,
.bonus-breakdown li,
.login-features li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Casino Table */
.casino-table-section {
    margin: 50px 0;
    padding: 0 40px;
}

.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.casino-table thead {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: #fff;
}

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

.casino-table th {
    font-weight: bold;
    font-size: 1.2rem;
}

.casino-table td {
    font-size: 1.1rem;
}

.casino-table tbody tr:hover {
    background: #f8f9fa;
}

.casino-table tbody tr:nth-child(even) {
    background: #f1f2f6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    margin: 50px 40px;
    border-radius: 20px;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    border: none;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

/* FAQ Section */
.faq-section {
    padding: 0 40px;
    margin-bottom: 50px;
}

.faq-item {
    background: #f8f9fa;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: #fff;
    padding: 20px;
    margin: 0;
    font-size: 1.3rem;
}

.faq-item p {
    padding: 20px;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 50px 0 30px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .bonus-highlights {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .content-section {
        padding: 0 20px;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .casino-table th,
    .casino-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .cta-section {
        margin: 50px 20px;
        padding: 40px 20px;
    }
    
    .main-content {
        margin: 40px 10px;
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .cta-button.large {
        padding: 20px 35px;
        font-size: 1.3rem;
    }
    
    .highlight {
        padding: 20px;
    }
    
    .highlight h3 {
        font-size: 2rem;
    }
    
    .casino-table th,
    .casino-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
}

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

/* Animation for elements */
.content-section {
    animation: fadeInUp 0.8s ease-out;
}

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