/* Professional Casino Layout CSS - Clean and Organized */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
}

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

/* Affiliate Disclosure */
.affiliate-disclosure {
    background: #fff3cd;
    border-bottom: 1px solid #ffeaa7;
    padding: 12px 0;
    font-size: 14px;
    margin-top: 70px; /* Account for fixed header */
}

.affiliate-disclosure p {
    margin: 0;
    color: #856404;
    text-align: center;
}

.affiliate-disclosure a {
    color: #856404;
    text-decoration: underline;
    font-weight: 600;
}

.affiliate-disclosure a:hover {
    color: #533f03;
}

/* Transparency Notice */
.transparency-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.transparency-notice p {
    color: #856404;
    margin: 0;
    font-size: 14px;
}

/* Risk Warning */
.risk-warning {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 15px;
    margin: 25px 0;
    text-align: center;
}

.risk-warning p {
    color: #721c24;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #d4af37;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
}

/* Navigation */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d4af37;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
}

.cta-button,
.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: #1a2332;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

.cta-text {
    font-size: 14px;
}

.cta-bonus {
    font-size: 11px;
    opacity: 0.9;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #d4af37;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(212,175,55,0.1);
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #f4e4bc;
    margin-bottom: 40px;
    font-weight: 300;
}

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

.hero-feature {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 12px;
    padding: 25px 20px;
    transition: transform 0.3s, background 0.3s;
}

.hero-feature:hover {
    transform: translateY(-5px);
    background: rgba(212,175,55,0.1);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-description {
    color: #b8c6db;
    font-size: 14px;
}

.hero-cta {
    margin-top: 40px;
}

/* Sections */
.section {
    padding: 80px 0;
    background: #ffffff;
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
}

/* Content Blocks */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.content-block-image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.content-block-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.content-block-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 20px;
}

.content-block-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.content-block-text strong {
    color: #2c3e50;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.grid-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.grid-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.grid-item-content {
    padding: 25px;
}

.grid-item-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 12px;
}

.grid-item-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 15px;
}

/* Cards */
.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.card-content {
    padding: 0;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 15px;
}

.card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.security-features .card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.security-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.security-info {
    flex: 1;
}

.security-info strong {
    display: block;
    font-size: 16px;
    color: #1a2332;
    margin-bottom: 4px;
}

.security-info span {
    font-size: 14px;
    color: #6c757d;
}

/* Tables */
table, .luxury-table {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin: 20px 0;
}

table thead, .luxury-table thead {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
}

table th, .luxury-table th {
    padding: 15px 20px;
    color: #ffffff;
    font-weight: 600;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table td, .luxury-table td {
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
    color: #4a5568;
    font-size: 14px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary {
    background: #2c3e50;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #1a2332;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a2332 0%, #0f1823 100%);
    color: #b8c6db;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-section h4 {
    color: #d4af37;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: #b8c6db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(212,175,55,0.2);
    text-align: center;
    font-size: 14px;
}

/* Content Grid and Cards */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.content-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.content-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.content-card .card-header h3 {
    color: #1a2332;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.content-card .card-content {
    color: #4a5568;
    line-height: 1.8;
}

.content-card .card-content h4 {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.content-card .card-content ul {
    list-style: none;
    padding-left: 0;
}

.content-card .card-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.content-card .card-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Info Box */
.info-box {
    background: #f8f9fa;
    border-left: 4px solid #d4af37;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.info-box h3 {
    color: #1a2332;
    font-size: 20px;
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box ul li {
    padding: 8px 0;
    color: #4a5568;
}

/* Alert Boxes */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.alert-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

.alert-info {
    background: #d1ecf1;
    border: 1px solid #17a2b8;
    color: #0c5460;
}

.alert-danger {
    background: #f8d7da;
    border: 1px solid #dc3545;
    color: #721c24;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: #d4af37;
    color: #1a2332;
}

.badge-success {
    background: #28a745;
    color: #ffffff;
}

.badge-warning {
    background: #ffc107;
    color: #212529;
}

.badge-danger {
    background: #dc3545;
    color: #ffffff;
}

.badge-info {
    background: #17a2b8;
    color: #ffffff;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.feature-card h4 {
    color: #1a2332;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #1a2332;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 25px 25px;
    font-size: 15px;
    line-height: 1.8;
    color: #6c757d;
}

/* Author Cards */
.author-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.author-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.author-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid #d4af37;
}

.author-name {
    font-size: 22px;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 8px;
}

.author-role {
    font-size: 14px;
    color: #d4af37;
    margin-bottom: 15px;
}

.author-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .content-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section {
        padding: 40px 0;
    }
}

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pt-4 { padding-top: 40px; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }
.pb-4 { padding-bottom: 40px; }

/* Fix for nested grids */
.content-grid .content-grid {
    display: block;
    margin-top: 0;
}

.content-grid .grid-item .content-grid {
    padding: 25px;
}

/* Ensure images don't break layout */
img {
    max-width: 100%;
    height: auto;
}

/* Expert Profile Styles */
.expert-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.expert-profile.reverse {
    grid-template-columns: 1fr 300px;
}

.expert-image {
    text-align: center;
}

.expert-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d4af37;
    margin-bottom: 20px;
}

.expert-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.expert-name {
    color: #1a2332;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.expert-title {
    color: #d4af37;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.support-item {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.support-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
    color: #d4af37;
}

/* Contact Support */
.contact-support {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
}

.contact-support h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.category-tab {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 12px 25px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #4a5568;
}

.category-tab:hover {
    border-color: #d4af37;
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    border-color: #d4af37;
    color: #1a2332;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    padding: 80px 0;
    margin-top: 80px;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Search Box */
.search-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.search-input {
    width: 100%;
    padding: 15px 25px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #d4af37;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .expert-profile {
        grid-template-columns: 1fr;
    }
    
    .expert-profile.reverse {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        flex-direction: column;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
    }
}