/* CSS Variables for Colors */
:root {
    --primary-color: #40E0D0; /* Aquamarine */
    --secondary-color: #FFD700; /* Gold */
    --accent-color: #20B2AA; /* Light Sea Green */
    --dark-bg: #0F172A; /* Dark Navy */
    --light-bg: #F8FAFC; /* Light Gray */
    --text-dark: #1E293B;
    --text-light: #64748B;
    --white: #FFFFFF;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

p:last-child {
    margin-bottom: 0;
}

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

/* Navigation */
.main-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-brand svg {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0F172A 0%, #40E0D0 50%, #20B2AA 100%);
    color: #FFFFFF;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-sidebar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-sidebar h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.top-casino-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.top-casino-card:hover {
    transform: translateX(5px);
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.top-casino-card:last-child {
    margin-bottom: 0;
}

.top-casino-logo {
    width: 60px;
    height: 60px;
    background: var(--dark-bg);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    flex-shrink: 0;
}

.top-casino-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.top-casino-info {
    flex: 1;
}

.top-casino-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.top-casino-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.benefit-tag {
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    white-space: nowrap;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--dark-bg);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
    background: #FFED4A;
}

/* Table of Contents */
.toc {
    padding: 4rem 0;
    background: var(--light-bg);
}

.toc h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.toc-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.toc-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.toc-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.toc-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.toc-item p {
    color: var(--text-light);
}

/* Section Styling */
section {
    padding: 4rem 0;
}

body > section:nth-child(even):not(.hero) {
    background: var(--light-bg);
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

/* Comparison Table */
.comparison {
    padding: 4rem 0;
}

.comparison p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.table-wrapper {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 2rem 0;
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.casino-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.casino-table td {
    padding: 1rem;
    border-bottom: 1px solid #E2E8F0;
    vertical-align: middle;
}

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

.casino-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 150px;
}

.casino-logo {
    width: 60px;
    height: 60px;
    background: var(--dark-bg);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    flex-shrink: 0;
}

.casino-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Metric Badges */
.metric-badge, .bonus-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.metric-badge.deposit {
    background: #DBEAFE;
    color: #1E40AF;
}

.metric-badge.speed {
    background: #D1FAE5;
    color: #047857;
}

.metric-badge.rtp {
    background: #FEF3C7;
    color: #92400E;
}

.metric-badge.games {
    background: #F3E8FF;
    color: #7C2D12;
}

.metric-badge.support {
    background: #FCE7F3;
    color: #BE185D;
}

.metric-badge.bonus {
    background: #ECFDF5;
    color: #047857;
}

.bonus-badge.success {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
}

.table-cta-btn {
    background: var(--secondary-color);
    color: var(--dark-bg);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.table-cta-btn:hover {
    background: #FFED4A;
    transform: translateY(-2px);
}

.comparison-summary {
    margin-top: 2rem;
}

.comparison-summary p {
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.visa-benefits {
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.benefits-list h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.styled-list {
    list-style: none;
    margin-bottom: 2rem;
}

.styled-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: var(--text-light);
}

.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.125rem;
}

/* Security Section */
.security {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.security-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 3px solid var(--secondary-color);
}

.security-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.security-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Deposit Guide */
.deposit-guide {
    padding: 4rem 0;
}

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

.guide-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.guide-features {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin: 2rem 0;
}

.guide-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.guide-list {
    list-style: none;
}

.guide-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: var(--text-light);
}

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

.guide-troubleshooting {
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.guide-troubleshooting h3 {
    color: #DC2626;
    margin-bottom: 1rem;
}

/* Games and Bonuses */
.games-bonuses {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.games-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.games-features {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    margin: 2rem 0;
}

.games-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.games-list {
    list-style: none;
    margin-bottom: 2rem;
}

.games-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: var(--text-light);
}

.games-list li::before {
    content: '🎯';
    position: absolute;
    left: 0;
}

.tip-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.tip-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 4rem 0;
    background: var(--light-bg);
}

.responsible-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.responsible-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-top: 4px solid #DC2626;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.responsible-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.card-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.responsible-card:hover .card-shape {
    opacity: 0.2;
    transform: rotate(10deg);
}

.card-shape.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #3B82F6;
}

.card-shape.triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 80px solid #EF4444;
}

.card-shape.square {
    width: 80px;
    height: 80px;
    background: #10B981;
    transform: rotate(45deg);
}

.card-shape.diamond {
    width: 80px;
    height: 80px;
    background: #F59E0B;
    transform: rotate(45deg);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.limit-card {
    border-left: 4px solid #3B82F6;
}

.warning-card {
    border-left: 4px solid #EF4444;
}

.tools-card {
    border-left: 4px solid #10B981;
}

.help-card {
    border-left: 4px solid #F59E0B;
}

.responsible-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.responsible-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.responsible-list {
    list-style: none;
    position: relative;
    z-index: 1;
}

.responsible-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: var(--text-light);
    border-bottom: 1px solid #F1F5F9;
}

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

.responsible-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.responsible-footer {
    background: #FEF2F2;
    border: 2px solid #FCA5A5;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
}

.responsible-footer h3 {
    color: #DC2626;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.responsible-footer p {
    color: #7F1D1D;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Casino Reviews */
.casino-reviews {
    padding: 4rem 0;
}

.reviews-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.reviews-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
}

.casino-review {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 3rem 0;
    overflow: hidden;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light-bg);
    border-bottom: 3px solid var(--primary-color);
}

.review-header .casino-logo {
    width: 80px;
    height: 80px;
    background: var(--dark-bg);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.casino-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.rating {
    font-size: 1.25rem;
}

.casino-screenshot {
    width: 100%;
    overflow: hidden;
}

.casino-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.review-content {
    padding: 2rem;
}

.review-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.casino-details {
    margin: 2rem 0;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.details-table th,
.details-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
}

.details-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--text-dark);
}

.highlights {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.highlights h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.highlights ul {
    list-style: none;
}

.highlights li {
    position: relative;
    padding: 0.25rem 0 0.25rem 1.5rem;
    color: var(--text-light);
}

.highlights li::before {
    content: '⭐';
    position: absolute;
    left: 0;
}

.review-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.review-cta:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Legal Section */
.legal {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.legal-warning {
    background: #FEF2F2;
    border: 2px solid #FCA5A5;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.legal-warning h3 {
    color: #DC2626;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.legal-warning p {
    color: #7F1D1D;
    line-height: 1.7;
}

.legal-info p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    color: #CBD5E1;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

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

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9CA3AF;
}

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

.disclaimer {
    font-size: 0.875rem;
    color: #6B7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-sidebar {
        order: -1;
        padding: 1.5rem;
    }

    .hero-sidebar h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .top-casino-card {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .top-casino-logo {
        width: 50px;
        height: 50px;
    }

    .top-casino-info h4 {
        font-size: 1rem;
    }

    .benefit-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .toc-grid {
        grid-template-columns: 1fr;
    }

    .table-wrapper {
        margin: 1rem -1rem;
        border-radius: 0;
    }

    .casino-table {
        font-size: 0.8rem;
    }

    .casino-table th,
    .casino-table td {
        padding: 0.5rem;
    }

    .casino-cell {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        min-width: auto;
    }

    .casino-logo {
        width: 50px;
        height: 50px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .security-features {
        grid-template-columns: 1fr;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    section {
        padding: 2rem 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .review-content {
        padding: 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }
}

/* Contact Page Styles */
.nav-menu .active {
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
}

.contact-form-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

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

.contact-icon {
    margin-bottom: 1rem;
}

.icon-shape {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.icon-shape.email {
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
}

.icon-shape.support {
    background: linear-gradient(135deg, #10B981, #047857);
}

.icon-shape.partnership {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.response-time {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.office-info {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
}

.office-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.office-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.office-hours h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.office-hours p {
    margin-bottom: 0;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E2E8F0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-lg);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-faq {
    padding: 4rem 0;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Privacy and Terms Sections */
.privacy-section,
.terms-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

/* Form and Privacy Page Styles */
.privacy-content,
.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.privacy-content h2,
.terms-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.privacy-content h3,
.terms-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.privacy-content ul,
.terms-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.privacy-content li,
.terms-content li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.privacy-content li::before,
.terms-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.legal-notice {
    background: #FEF2F2;
    border: 2px solid #FCA5A5;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin: 2rem 0;
}

.legal-notice h3 {
    color: #DC2626;
    margin-top: 0;
}

.legal-notice p {
    color: #7F1D1D;
    margin-bottom: 0;
}

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

/* Focus States for Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}