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

:root {
    --primary-color: #1a5f3f;
    --secondary-color: #2e8b57;
    --accent-color: #ffd700;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --gradient-primary: linear-gradient(135deg, #1a5f3f 0%, #2e8b57 100%);
    --gradient-accent: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand a:hover .sun-logo {
    transform: rotate(180deg);
}

.sun-logo {
    transition: transform 0.5s ease;
    font-size: 1.3rem;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-main {
    text-align: left;
}

.hero-toc {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    min-width: 400px;
}

.toc-title {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}

.toc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.toc-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 15px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    text-align: left;
    min-height: 50px;
    gap: 8px;
    line-height: 1.3;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.toc-link:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-accent);
    color: var(--text-dark);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-button::after {
    content: '→';
    font-size: 1.2rem;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.cta-button:hover::after {
    transform: translateX(5px);
}

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

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    color: white;
    padding: 30px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Table of Contents */
.toc-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.toc-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.toc-card h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.toc-list {
    padding-left: 20px;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.toc-list a:hover {
    color: var(--primary-color);
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section.alt-bg {
    background-color: var(--bg-light);
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.section-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 0;
    font-weight: 500;
}

/* Conversion Buttons */
.conversion-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.conversion-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.conversion-btn.primary {
    background: var(--primary-color);
    color: white;
}

.conversion-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.conversion-btn.secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.conversion-btn.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .conversion-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .conversion-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.section-intro p:last-child {
    margin-bottom: 0;
}

.info-card, .checklist-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.info-card.enhanced {
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(26, 95, 63, 0.1);
}

.info-header {
    background: var(--gradient-primary);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.info-content {
    padding: 30px;
}

.info-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.license-types {
    margin: 2rem 0;
    display: grid;
    gap: 20px;
}

.license-item {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.license-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.license-flag {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.license-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.license-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.warning-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.warning-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.warning-box strong {
    color: #856404;
    display: block;
    margin-bottom: 5px;
}

.warning-box p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.checklist li:last-child {
    border-bottom: none;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.casino-table, .payment-table, .review-table, .bonus-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.payment-table {
    min-width: 500px;
}

.casino-table th, .payment-table th, .bonus-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.casino-table td, .payment-table td, .bonus-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.casino-table tr:last-child td {
    border-bottom: none;
}

.casino-table tr:hover {
    background-color: var(--bg-light);
}

/* Table Casino Logo Styles */
.table-casino-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.table-casino-logo {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
    min-width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-logo-img {
    max-width: 35px;
    max-height: 28px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

/* Table Button Styles */
.table-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.table-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 2px 8px rgba(26, 95, 63, 0.3);
}

.table-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 95, 63, 0.4);
}

/* Casino Interface Screenshots */
.casino-interface {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

/* Pros and Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 2rem;
}

.pros-card, .cons-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.pros-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cons-card h3 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.pros-card ul, .cons-card ul {
    list-style: none;
    padding: 0;
}

.pros-card li, .cons-card li {
    padding: 8px 0;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 2rem;
}

.game-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.game-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.game-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.game-card li:last-child {
    border-bottom: none;
}

/* Casino Reviews */
.casino-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.casino-detailed-review {
    padding: 20px 25px;
    background: var(--bg-light);
    margin: 0 0 15px 0;
}

.casino-detailed-review h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.casino-detailed-review > p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.review-sections {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.review-section {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.review-section h5 {
    color: var(--primary-color);
    margin: 0 0 8px 0;
    font-size: 0.95rem;
}

.review-section p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
}

.pros-cons-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.pros-detailed, .cons-detailed {
    background: white;
    padding: 15px;
    border-radius: 8px;
}

.pros-detailed {
    border-left: 3px solid #28a745;
}

.cons-detailed {
    border-left: 3px solid #dc3545;
}

.pros-detailed h5, .cons-detailed h5 {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
}

.pros-detailed h5 {
    color: #28a745;
}

.cons-detailed h5 {
    color: #dc3545;
}

.pros-detailed ul, .cons-detailed ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-detailed li, .cons-detailed li {
    font-size: 0.8rem;
    line-height: 1.4;
    padding: 3px 0;
    padding-left: 15px;
    position: relative;
}

.pros-detailed li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.cons-detailed li:before {
    content: "−";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.final-verdict {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.final-verdict h5 {
    color: #856404;
    margin: 0 0 10px 0;
    font-size: 0.95rem;
}

.final-verdict p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #856404;
    margin: 5px 0;
}

.final-verdict strong {
    color: #721c24;
}

.casino-review-card {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.casino-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.casino-review-card.premium {
    background: linear-gradient(145deg, #fff9e6 0%, #ffffff 100%);
    border: 2px solid var(--accent-color);
}

.casino-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px 25px 15px;
    position: relative;
}

.casino-logo {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
    padding: 8px;
}

.casino-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 2px;
}

.casino-info {
    flex: 1;
}

.casino-info h3 {
    margin: 0 0 8px 0;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-number {
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.casino-badge {
    position: absolute;
    top: -5px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(46, 139, 87, 0.3);
}

.premium-badge {
    background: var(--gradient-accent);
    color: var(--text-dark);
}

.mega-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.casino-highlight {
    background: rgba(26, 95, 63, 0.05);
    padding: 20px 25px;
    margin: 0 0 20px 0;
}

.highlight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-label {
    font-weight: 600;
    color: var(--text-light);
}

.highlight-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.casino-features {
    padding: 0 25px 20px;
}

.casino-features h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.1rem;
}

.casino-providers {
    padding: 0 25px 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.casino-actions {
    display: flex;
    gap: 10px;
    padding: 0 25px 25px;
}

.casino-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.casino-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 95, 63, 0.3);
}

.casino-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26, 95, 63, 0.4);
}

.casino-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.casino-btn.secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Mobile and Bonuses */
.mobile-section, .bonus-section {
    margin-bottom: 3rem;
}

.mobile-section h3, .bonus-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.6;
}

/* Summary */
.summary-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.summary-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tip-box {
    background-color: #fff9e6;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    border-radius: 8px;
}

.tip-box h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 40px 0 20px;
    margin-top: 80px;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #aaa;
}

/* Recognition Section Styles */
.recognition-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-top: 2rem;
}

.card-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: -30px -30px 20px -30px;
}

.card-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detailed-guide h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.guide-step {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.guide-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-content p {
    line-height: 1.7;
    color: var(--text-dark);
}

.warning-section {
    margin-top: 3rem;
}

.warning-card {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.warning-emoji {
    font-size: 2rem;
}

.warning-header h4 {
    color: #856404;
    margin: 0;
    font-size: 1.3rem;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.warning-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 4px solid #dc3545;
}

.warning-icon {
    font-size: 1.2rem;
    color: #dc3545;
}

.warning-item strong {
    display: block;
    color: #721c24;
    margin-bottom: 5px;
}

.warning-item p {
    margin: 0;
    color: #721c24;
    font-size: 0.9rem;
}

/* Games Section Styles */
.games-intro {
    margin-bottom: 3rem;
}

.providers-section {
    margin-bottom: 3rem;
}

.providers-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.provider-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.provider-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.provider-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.provider-logo {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-header h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.provider-specialty {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.provider-content p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.provider-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.provider-stats .stat {
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.game-types-section {
    margin-bottom: 3rem;
}

.game-types-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.game-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-type-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.game-type-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.game-type-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.game-type-icon {
    font-size: 1.8rem;
}

.game-type-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

.game-type-content {
    padding: 25px;
}

.game-type-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.subcategories {
    margin: 20px 0;
}

.subcat {
    background: var(--bg-light);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 3px solid var(--secondary-color);
}

.subcat strong {
    color: var(--primary-color);
}

.game-tips {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid #28a745;
}

.game-tips strong {
    color: #155724;
}

.mobile-gaming-section {
    margin-top: 3rem;
}

.mobile-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
}

.mobile-option {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
}

.mobile-option h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mobile-option ul {
    list-style: none;
    padding: 0;
}

.mobile-option li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.mobile-option li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.mobile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.mobile-stat {
    text-align: center;
    padding: 20px;
    background: rgba(26, 95, 63, 0.05);
    border-radius: 12px;
}

.mobile-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.mobile-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsible Gaming Section Styles */
.responsible-intro {
    margin-bottom: 3rem;
}

.responsible-content {
    margin-bottom: 3rem;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.responsible-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
}

.responsible-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.responsible-card.warning {
    border-left-color: #dc3545;
}

.responsible-card.warning .responsible-header {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.responsible-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.responsible-icon {
    font-size: 1.8rem;
}

.responsible-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.responsible-body {
    padding: 25px;
}

.responsible-body h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.responsible-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.responsible-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid var(--bg-light);
}

.responsible-list li:last-child {
    border-bottom: none;
}

.responsible-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.tip-box.small {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 3px solid #28a745;
    margin-top: 15px;
}

.tip-box.small strong {
    color: #155724;
}

.alert-box {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 1px solid #f5c6cb;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
}

.alert-box strong {
    color: #721c24;
}

.help-section {
    margin-bottom: 3rem;
}

.help-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.4rem;
    text-align: center;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.help-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

.help-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.help-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.help-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.help-header h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.help-content p {
    margin: 5px 0;
    line-height: 1.4;
}

.help-content strong {
    color: var(--text-dark);
}

.family-section {
    margin-top: 3rem;
}

.family-tips {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.family-tip {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--secondary-color);
}

.family-tip strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.warning-box.family {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.warning-box.family .warning-icon {
    font-size: 1.5rem;
    color: #856404;
    min-width: 30px;
}

.warning-box.family strong {
    color: #856404;
    display: block;
    margin-bottom: 8px;
}

.warning-box.family p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

/* Enhanced FAQ Styles */
.faq-categories {
    display: grid;
    gap: 40px;
    margin-top: 2rem;
}

.faq-category {
    background: white;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.category-title {
    background: var(--gradient-primary);
    color: white;
    padding: 20px 30px;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.faq-items {
    padding: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background-color: var(--bg-light);
}

.faq-question {
    padding: 25px 30px;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    line-height: 1.4;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-question.active:after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 30px 25px 30px;
    display: none;
    color: var(--text-dark);
    line-height: 1.7;
}

.faq-answer.active {
    display: block;
    animation: fadeInDown 0.3s ease-out;
}

.faq-answer p {
    margin: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-main {
        text-align: center;
    }
    
    .hero-toc {
        min-width: auto;
        padding: 20px;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .toc-link {
        font-size: 0.85rem;
        padding: 12px 16px;
        min-height: 45px;
        gap: 6px;
        justify-content: flex-start;
        text-align: left;
    }
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .pros-cons-grid,
    .games-grid,
    .review-grid,
    .recognition-grid,
    .mobile-options {
        grid-template-columns: 1fr;
    }
    
    .casino-table, .payment-table {
        font-size: 0.9rem;
    }
    
    .casino-table th,
    .casino-table td,
    .payment-table th,
    .payment-table td {
        padding: 10px 5px;
        font-size: 0.85rem;
    }
    
    .payment-table th,
    .payment-table td {
        white-space: nowrap;
    }
    
    .table-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .casino-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .providers-grid,
    .game-types-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .responsible-grid {
        grid-template-columns: 1fr;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .family-tips {
        gap: 10px;
    }
    
    .faq-question {
        padding: 20px 25px;
        font-size: 1rem;
    }
    
    .faq-question:after {
        right: 25px;
    }
    
    .faq-answer {
        padding: 0 25px 20px 25px;
    }
    
    .category-title {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
}