/* Emil - Big Bass Splash Styles */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a252f;
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    margin-bottom: 3rem;
}

.hero-lead {
    font-size: 1.3rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-casino,
.bx-cta {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary,
.bx-cta {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover,
.bx-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.btn-casino {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
}

.btn-casino:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

/* Info Cards */
.info-card,
.highlight-box,
.trend-box,
.tips-box,
.warning-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid #3498db;
}

.highlight-box {
    border-left-color: #e74c3c;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(231, 76, 60, 0.1));
}

.trend-box {
    border-left-color: #f39c12;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.05), rgba(243, 156, 18, 0.1));
}

.tips-box {
    border-left-color: #27ae60;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.05), rgba(39, 174, 96, 0.1));
}

.warning-box {
    border-left-color: #e74c3c;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(231, 76, 60, 0.1));
    border: 2px solid #e74c3c;
}

/* Tables */
.comparison-table,
.tech-details table,
.changes-table table,
.refs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.tech-details th,
.changes-table th,
.refs-table th {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
}

.comparison-table td,
.tech-details td,
.changes-table td,
.refs-table td {
    padding: 1rem;
    border-bottom: 1px solid #ecf0f1;
}

.comparison-table tbody tr:hover,
.tech-details tbody tr:hover,
.changes-table tbody tr:hover {
    background: #f8f9fa;
}

/* Casino Grid */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.casino-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.casino-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.casino-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

/* FAQ */
.faq-container {
    margin: 2rem 0;
}

.faq-item {
    background: white;
    border: 1px solid #ecf0f1;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
    padding: 1.5rem;
    margin: 0;
    color: #2c3e50;
    border-bottom: 1px solid #ecf0f1;
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    color: #5a6c7d;
}

/* Steps & Timeline */
.setup-steps,
.checklist-container {
    margin: 2rem 0;
}

.step-item,
.checklist-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content,
.checklist-item div {
    flex: 1;
}

.step-content h3,
.checklist-item h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

/* Author Section */
.author-section {
    background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.author-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1rem;
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.author-info p {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

.author-social {
    display: flex;
    gap: 1rem;
}

.author-social a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.author-social a:hover {
    color: #764ba2;
}

.update-date {
    font-style: italic;
    color: #7f8c8d;
    margin: 0;
}

/* Bonus Box */
.bx-bonus {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.bx-bonus h2 {
    color: white;
    border: none;
    margin-bottom: 1rem;
}

.bx-facts {
    list-style: none;
    margin: 1.5rem 0;
}

.bx-facts li {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bx-facts em {
    font-style: italic;
    opacity: 0.9;
}

/* References */
.refs-section {
    margin: 2rem 0;
    border: 1px solid #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
}

.refs-section summary {
    background: #f8f9fa;
    padding: 1rem;
    cursor: pointer;
    font-weight: 700;
    color: #2c3e50;
}

.refs-section summary:hover {
    background: #ecf0f1;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    main {
        margin: 1rem;
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step-item,
    .checklist-item {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-table,
    .tech-details table,
    .changes-table table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td,
    .tech-details th,
    .tech-details td,
    .changes-table th,
    .changes-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .casino-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-casino,
    .bx-cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.table-update {
    font-style: italic;
    color: #7f8c8d;
    text-align: right;
    margin-top: 1rem;
}

.table-legend {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.table-legend p {
    margin: 0;
    font-size: 0.9rem;
    color: #5a6c7d;
}

/* Specific Page Elements */
.casino-rating {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.feature {
    font-size: 0.9rem;
    color: #5a6c7d;
}

.casino-highlight {
    color: #667eea;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial {
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #667eea;
    margin: 1rem 0;
    border-radius: 0 10px 10px 0;
}

.testimonial p {
    margin-bottom: 0.5rem;
    font-style: italic;
}

.testimonial cite {
    color: #7f8c8d;
    font-size: 0.9rem;
}

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

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

/* Print Styles */
@media print {
    header,
    footer,
    .hero-cta,
    .btn-primary,
    .btn-secondary,
    .btn-casino,
    .bx-cta {
        display: none;
    }
    
    main {
        margin: 0;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }
    
    .content-section {
        page-break-inside: avoid;
    }
}