/* 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(135deg, #1a0033 0%, #330066 50%, #660099 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffdd44;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons */
.cta-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ffdd44, #ff9900);
    color: #333;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 221, 68, 0.4);
    margin: 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 221, 68, 0.6);
    background: linear-gradient(45deg, #ff9900, #ffdd44);
}

/* Main Content */
.main-content {
    background: #fff;
    padding: 3rem 0;
}

.intro-section {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Casino Info Table */
.casino-info-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.casino-info-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.casino-info-table th {
    background: linear-gradient(45deg, #330066, #660099);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: bold;
    width: 30%;
}

.casino-info-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.casino-info-table tr:last-child td {
    border-bottom: none;
}

/* Content Images */
.content-image {
    text-align: center;
    margin: 3rem 0;
}

.content-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Sections */
.quick-facts-section,
.signup-section,
.bonus-section,
.faq-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.quick-facts-section h2,
.signup-section h2,
.bonus-section h2,
.faq-section h2 {
    color: #330066;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quick-facts-section h3,
.signup-section h3,
.bonus-section h3 {
    color: #660099;
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
}

.quick-facts-section p,
.signup-section p,
.bonus-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* FAQ Styles */
.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid #ffdd44;
}

.faq-item h3 {
    color: #330066;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #1a0033;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #ffdd44;
    font-weight: bold;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .casino-info-table th {
        width: auto;
        display: block;
        text-align: center;
    }
    
    .casino-info-table td {
        display: block;
        text-align: center;
        border-left: none;
    }
    
    .quick-facts-section h2,
    .signup-section h2,
    .bonus-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .casino-info-table {
        font-size: 0.9rem;
    }
    
    .casino-info-table th,
    .casino-info-table td {
        padding: 10px;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
.author-bio {
    background-color: #f9f9f9;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    margin-top: 40px;
}

.author-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.author-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ccc;
}

.author-text {
    flex: 1;
    min-width: 250px;
}

.author-text h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: #222;
}

.author-text p {
    margin-top: 10px;
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}