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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0b0b0c;
    overflow-x: hidden;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

a {
    color: #4ecdc4;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #45b7d1;
}

/* Buttons */
.btn-primary, .btn-enter, .btn-play {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover, .btn-enter:hover, .btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-primary::before, .btn-enter::before, .btn-play::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before, .btn-enter:hover::before, .btn-play:hover::before {
    left: 100%;
}

.btn-exit {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-exit:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-modal-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 16px;
    max-width: 500px;
    margin: 1rem;
    text-align: center;
    border: 2px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.age-modal-header h2 {
    color: #ff6b6b;
    font-size: 2rem;
    margin: 0;
}

.age-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.affiliate-disclaimer {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #cccccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 1rem;
    z-index: 9999;
    border-top: 2px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hidden {
    display: none;
}

/* Header */
.header {
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
}

.main-nav a:hover {
    color: #4facfe;
    background: rgba(79, 172, 254, 0.1);
    transform: translateY(-1px);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav a:hover::after {
    width: 80%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.header-badge {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.header-text {
    font-size: 0.7rem;
    color: #cccccc;
    margin: 0;
    max-width: 400px;
}

.age-indicator {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.hero-content {
    max-width: 1100px;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Trust Indicators Section */
.trust-indicators {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.3), rgba(22, 33, 62, 0.3));
}

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

.trust-item {
    position: relative;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.trust-badge:hover::before {
    left: 100%;
}

.trust-badge:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(79, 172, 254, 0.4);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.2);
}

.trust-flag,
.trust-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.trust-badge.uk-licensed .trust-flag {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.trust-badge.fast-payouts .trust-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.trust-badge.secure .trust-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.trust-badge.expert-reviews .trust-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.trust-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: #4facfe;
}

.trust-text p {
    margin: 0;
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Featured Casinos Section */
.featured-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab.active,
.filter-tab:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
}

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

.casino-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.casino-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}

.casino-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.5);
}

.casino-card:hover::before {
    opacity: 1;
}

.casino-card:focus-within {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.rank-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(79, 172, 254, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.casino-logo {
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.casino-logo img {
    max-width: 180px;
    height: 80px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 8px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.casino-card h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #4facfe;
}

.bonus-text {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;

}


.bonus-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
    transition: left 0.8s ease;
}

.casino-card:hover .bonus-text::after {
    left: 100%;
}

.bonus-text p {
    font-size: 1.6rem;
    font-weight: 600;
    color: #4facfe;
    margin: 0;
    line-height: 1.4;
}

.casino-meta {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-meta .affiliate-note {
    font-size: 0.8rem;
    color: #666;
    margin: 0 0 0.5rem 0;
    font-style: italic;
}

.casino-meta .license-info {
    font-size: 0.75rem;
    color: #4facfe;
    margin: 0;
    font-weight: 500;
}

.btn-play {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.casino-disclaimer {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-disclaimer .terms {
    font-size: 0.6rem;
    color: #999;
    margin: 0;
    line-height: 1.4;
}

/* Trusted Section */
.trusted-section {
    padding: 4rem 0;
    background: rgba(26, 26, 46, 0.3);
}

.trusted-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #4facfe;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.trust-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.trust-logo img {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.2), rgba(22, 33, 62, 0.2));
}

.why-choose-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.why-choose-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2, #4facfe);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-6px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.25);
}

.card-header {
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #4facfe;
    font-weight: 600;
}

.card-content {
    padding: 0 2rem 2rem;
}

.card-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    color: #4facfe;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

/* Responsible Gambling Section */
.responsible-gambling {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.1));
    border-top: 2px solid rgba(255, 193, 7, 0.3);
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
}

.responsible-content h2 {
    text-align: center;
    color: #ffc107;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.help-item {
    background: rgba(255, 193, 7, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    text-align: center;
}

.help-item h3 {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.need-help-widget {
    text-align: center;
    background: rgba(255, 193, 7, 0.15);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.help-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.help-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    color: #000;
}

/* Footer */
.footer {
    background: #000;
}

.responsible-footer {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(160, 82, 45, 0.2));
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 193, 7, 0.3);
}

.footer-disclaimer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-disclaimer h3 {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.main-footer {
    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 {
    color: #4facfe;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: #cccccc;
    transition: color 0.3s ease;
}

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

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.age-badge-footer {
    height: 30px;
    width: auto;
    filter: brightness(1.2);
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    min-height: 70vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h1 {
    color: #4facfe;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.legal-content h2 {
    color: #667eea;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-content h3 {
    color: #4facfe;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.responsible-notice {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    margin-top: 3rem;
    text-align: center;
}

.responsible-notice h2 {
    color: #ffc107;
    margin-bottom: 1rem;
}

.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

.table-responsive table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.table-responsive th,
.table-responsive td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-responsive th {
    background: rgba(102, 126, 234, 0.2);
    color: #4facfe;
    font-weight: 600;
}

.cookie-controls {
    text-align: center;
    margin: 2rem 0;
}

.cookie-summary {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(118, 75, 162, 0.5);
    }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .logo-section {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .logo {
        font-size: 1.5rem;
    }

    .header-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }

    .main-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        margin-top: 0.5rem;
    }

    .main-nav a {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-info {
        flex-direction: column;
        gap: 0.55rem;
        align-items: center;
        margin-top: 1rem;
    }

    .header-text {
        font-size: 0.8rem;
        text-align: center;
        max-width: 100%;
        line-height: 1.4;
    }

    .age-indicator {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 30vh;
        padding: -2rem 0;
        text-align: center;

    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.5rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-cta {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
        width: auto;
        max-width: 280px;
    }

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

    .trust-badge {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .footer-badges {
        flex-direction: column;
        gap: 0.5rem;
    }

    html {
        font-size: 14px;
    }

    .hero-title {
        font-size: 2.5rem;
    }


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

    .age-modal-content {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    .age-modal-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-enter, .btn-exit {
        width: 100%;
        padding: 1rem;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .header-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .legal-content {
        padding: 2rem 1rem;
    }

    .trusted-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

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

    .filter-tabs {
        flex-direction: column;
        align-items: center;
    }
}

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

    .header {
        padding: 0.5rem 0;
    }

    .logo {
        font-size: 1.3rem;
    }

    .main-nav {
        gap: 0.25rem;
    }

    .main-nav a {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .header-text {
        font-size: 0.5rem;
    }

    .hero {
        min-height: 70vh;
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .hero-cta {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        max-width: 250px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .casino-card {
        padding: 1.5rem;
    }

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

    .bonus-text p {
        font-size: 1rem;
    }

    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trust-logo {
        padding: 1rem;
    }

    .trust-logo img {
        max-width: 80px;
        max-height: 50px;
    }

    .main-nav {
        gap: 0.5rem;
    }

    .main-nav a {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Focus and Accessibility */
button:focus,
a:focus,
input:focus {
    outline: 2px solid #4facfe;
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    body {
        background-color: #000;
        color: #fff;
    }

    .casino-card {
        border: 2px solid #fff;
    }

    .btn-primary,
    .btn-play {
        background: #fff;
        color: #000;
        border: 2px solid #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-title {
        animation: none;
    }

    .hero-cta {
        animation: none;
    }
}

/* Print styles */
@media print {
    .age-modal,
    .cookie-banner,
    .hero-background,
    .btn-primary,
    .btn-play {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .casino-card {
        border: 1px solid #000;
        box-shadow: none;
    }
}