/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    background-color: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-outline {
    background: transparent;
    color: #DAA520;
    border: 2px solid #DAA520;
}

.btn-outline:hover {
    background: #DAA520;
    color: #000000;
}

/* Header */
.header {
    background: #2c2c2c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #DAA520;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #f5f5f5;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2c2c2c;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-verification h2 {
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.age-verification p {
    margin-bottom: 2rem;
    color: #cccccc;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.age-disclaimer {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-top: 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: #000000;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Casino Showcase */
.casino-showcase {
    padding: 4rem 0;
    background: #2c2c2c;
}

.casino-showcase h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #f5f5f5;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.casino-card {
    background: #3c3c3c;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.casino-card.featured {
    border-color: #DAA520;
    background: linear-gradient(135deg, #4a4a4a 0%, #3c3c3c 100%);
}

.casino-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.casino-logo {
    text-align: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
}

.casino-info h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: #f5f5f5;
}

.casino-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 1.2rem;
}

.star.filled {
    color: #ffc107;
}

.rating-score {
    font-weight: 600;
    color: #f5f5f5;
}

.casino-bonus {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #4a4a4a 0%, #3c3c3c 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

.bonus-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #DAA520;
    margin-bottom: 0.25rem;
}

.bonus-text {
    font-size: 0.9rem;
    color: #cccccc;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    flex-shrink: 0;
}

.feature {
    background: #4a4a4a;
    color: #f5f5f5;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.casino-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.casino-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.casino-actions .btn {
    flex: 1;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #1a1a1a;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #f5f5f5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #2c2c2c;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #f5f5f5;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 3rem 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.responsible-content h2 {
    margin-bottom: 1rem;
}

.responsible-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.help-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #DAA520;
    text-decoration: none;
    padding: 1.5rem;
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    background: rgba(218, 165, 32, 0.05);
    min-width: 150px;
}

.help-link:hover {
    background: rgba(218, 165, 32, 0.15);
    border-color: rgba(218, 165, 32, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: #B8860B;
}

.help-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    transition: filter 0.3s ease;
}

.help-link:hover .help-logo {
    filter: brightness(0) saturate(100%) invert(60%) sepia(100%) saturate(2000%) hue-rotate(45deg) brightness(101%) contrast(101%) drop-shadow(0 0 10px rgba(184, 134, 11, 0.5));
}

.help-link span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #DAA520;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #DAA520;
}

/* Email links in footer */
.footer-section a[href^="mailto:"] {
    color: #DAA520;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a[href^="mailto:"]:hover {
    color: #B8860B;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #4a4a4a;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Reviews Page Styles */
.page-header {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: #000000;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.review-filters {
    background: #2c2c2c;
    padding: 2rem 0;
    border-bottom: 1px solid #4a4a4a;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #4a4a4a;
    background: #3c3c3c;
    color: #cccccc;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #DAA520;
    background: #DAA520;
    color: #000000;
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
}

.search-box input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #4a4a4a;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #3c3c3c;
    color: #f5f5f5;
}

.search-box input:focus {
    outline: none;
    border-color: #DAA520;
}

.reviews-section {
    padding: 3rem 0;
    background: #1a1a1a;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: #2c2c2c;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: #f5f5f5;
}

.reviewer-location {
    font-size: 0.9rem;
    color: #cccccc;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-content h3 {
    color: #DAA520;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-text {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #aaaaaa;
}

.review-verified {
    color: #28a745;
    font-weight: 500;
}

.load-more-section {
    text-align: center;
}

.submit-review {
    padding: 3rem 0;
    background: #2c2c2c;
}

.submit-review-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.submit-review h2 {
    margin-bottom: 1rem;
    color: #f5f5f5;
}

.submit-review p {
    margin-bottom: 2rem;
    color: #cccccc;
}

.review-form {
    text-align: left;
    background: #3c3c3c;
    padding: 2rem;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #f5f5f5;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #4a4a4a;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #2c2c2c;
    color: #f5f5f5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DAA520;
}

.rating-input {
    display: flex;
    gap: 0.5rem;
    justify-content: start;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-input input[type="radio"]:checked ~ label,
.rating-input label:hover {
    color: #ffc107;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #DAA520;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Tooltip Styles */
.tooltip {
    position: absolute;
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    z-index: 1000;
    pointer-events: none;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
}

/* Legal Pages Styles */
.legal-content {
    padding: 3rem 0;
    background: white;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.legal-text h3 {
    color: #667eea;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text p {
    margin-bottom: 1rem;
    color: #555;
}

.legal-text ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-text a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* GDPR Specific Styles */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.right-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.right-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.right-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.right-card p {
    margin-bottom: 0.75rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.contact-method h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.legal-basis {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #28a745;
}

.legal-basis h3 {
    color: #333;
    margin-bottom: 0.75rem;
}

.complaint-info {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.complaint-info h3 {
    color: #856404;
    margin-bottom: 1rem;
}

/* Company Info Styles */
.company-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.company-info h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.company-info p {
    margin-bottom: 0.75rem;
    color: #555;
}

.regulatory-info {
    background: #e8f5e8;
    border: 1px solid #c3e6c3;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.regulatory-info h3 {
    color: #155724;
    margin-bottom: 1rem;
}

.contact-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.contact-details h3 {
    color: #667eea;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.contact-details h3:first-child {
    margin-top: 0;
}

/* Cookie Policy Styles */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-type {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-type:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cookie-type h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cookie-type p {
    margin-bottom: 0.75rem;
}

.third-party-cookies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.third-party {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 8px;
}

.third-party h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.browser-instructions {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.browser-instructions h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.browser {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid #667eea;
}

.browser h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.browser p {
    margin: 0;
    color: #666;
    font-family: monospace;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 4px;
}

/* Responsible Gaming Styles */
.help-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.help-org {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #28a745;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-org:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.help-org h3 {
    color: #28a745;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.help-org p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.help-org a {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
}

.help-org a:hover {
    color: #1e7e34;
    text-decoration: underline;
}

.emergency-help {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
}

.emergency-help h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.emergency-help p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: white;
}

.emergency-help ul {
    margin-bottom: 0;
}

.emergency-help li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: white;
}

.emergency-help strong {
    color: #ffc107;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2c2c2c;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 1rem 0;
        border-top: 1px solid #fff;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .help-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .casino-showcase,
    .features {
        padding: 2rem 0;
    }
    
    .casino-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }

    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
