/* Reset and Base Styles */
:root {
    /* Primary Colors */
    --primary-dark: #121212;
    --primary-darker: #0a0a0a;
    --primary-medium: #1e1e1e;
    --primary-light: #2d2d2d;
    
    /* Accent Colors */
    --accent-primary: #8e2de2;
    --accent-secondary: #4a00e0;
    --accent-gradient: linear-gradient(45deg, #8e2de2, #4a00e0);
    --accent-bright: #a259ff;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #a0a0a0;
    --text-dark: #707070;
    
    /* UI Colors */
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #F44336;
    --info: #2196F3;
    
    /* Casino Card Colors */
    --card-bg: #1e1e1e;
    --card-hover: #252525;
    --card-border: #333333;
    
    /* Animation Speeds */
    --transition-fast: 0.2s;
    --transition-medium: 0.4s;
    --transition-slow: 0.6s;
    
    /* Shadows */
    --shadow-small: 0 2px 5px rgba(0, 0, 0, 0.15);
    --shadow-medium: 0 4px 10px rgba(0, 0, 0, 0.25);
    --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.35);
    --shadow-accent: 0 5px 15px rgba(142, 45, 226, 0.4);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-dark);
    overflow-x: hidden;
}

a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-fast) ease;
}

a:hover {
    color: var(--accent-bright);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

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

button, .btn-cta {
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    transition: all var(--transition-fast) ease;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

p {
    margin-bottom: 1.5rem;
}

section {
    padding: 6rem 0;
}

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

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.3rem;
    background: var(--accent-gradient);
    border-radius: 2rem;
}

.section-header p {
    color: var(--text-gray);
    max-width: 70rem;
    margin: 0 auto;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 2rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.25);
    transform: translateY(100%);
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.cookie-buttons {
    display: flex;
    gap: 1.5rem;
}

.cookie-btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    transition: all var(--transition-fast) ease;
}

.cookie-btn.accept {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--shadow-accent);
}

.cookie-btn.accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(142, 45, 226, 0.6);
}

.cookie-btn.params {
    background-color: var(--primary-light);
    color: var(--text-white);
}

.cookie-btn.params:hover {
    background-color: var(--primary-medium);
}

.cookie-btn.refuse {
    background-color: transparent;
    color: var(--text-gray);
    border: 1px solid var(--text-gray);
}

.cookie-btn.refuse:hover {
    color: var(--text-white);
    border-color: var(--text-white);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--primary-medium);
    padding: 3rem;
    border-radius: 1rem;
    max-width: 50rem;
    width: 90%;
    box-shadow: var(--shadow-large);
    position: relative;
}

.close-modal {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2.4rem;
    cursor: pointer;
    color: var(--text-gray);
    transition: color var(--transition-fast) ease;
}

.close-modal:hover {
    color: var(--text-white);
}

.cookie-settings {
    margin: 2rem 0;
}

.cookie-option {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--primary-light);
    border-radius: 0.5rem;
}

.cookie-option label {
    flex: 1;
    padding-left: 1rem;
}

.required {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-left: 1rem;
}

.save-settings {
    padding: 1rem 2rem;
    background: var(--accent-gradient);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-accent);
    width: 100%;
    margin-top: 2rem;
    transition: all var(--transition-fast) ease;
}

.save-settings:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(142, 45, 226, 0.6);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-medium) ease;
}

.header.hidden {
    transform: translateY(-100%);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(10, 10, 10, 0.95);
    padding: 12px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-white);
    transition: all var(--transition-fast) ease;
}
.logo img{
    width: 70px;
}

.logo:hover {
    text-shadow: 0 0 10px rgba(142, 45, 226, 0.8);
}

.logo-text .accent {
    color: var(--accent-bright);
}

.main-nav {
    position: relative;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    border-radius: 0.5rem;
    transition: all var(--transition-fast) ease;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: all var(--transition-medium) ease;
    transform: translateX(-50%);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 70%;
}

.nav-links a.active {
    color: var(--accent-bright);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    width: 3rem;
    height: 2rem;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-white);
    border-radius: 10px;
    transition: all var(--transition-fast) ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 60rem;
    display: flex;
    align-items: center;
    background-image: url(../images/hero.png);
    background-size: cover;
    background-position: top;
    color: var(--text-white);
    margin-top: 6rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 73rem;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

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

.main-title {
    font-size: 4.2rem;
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 8rem;
    height: 0.4rem;
    background: var(--accent-gradient);
    border-radius: 2rem;
}

.hero-description {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    max-width: 60rem;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 0.8rem;
    border-left: 4px solid var(--accent-primary);
}

.age-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    border-radius: 50%;
    box-shadow: var(--shadow-accent);
}

.responsible-gaming {
    margin-bottom: 0;
    font-size: 1.4rem;
}

/* Casino Cards Section */
.casino-offers {
    background-color: var(--primary-darker);
    position: relative;
    overflow: hidden;
}

.casino-offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 10rem;
    opacity: 0.03;
    pointer-events: none;
}

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

.casino-card {
    background-color: var(--card-bg);
    border-radius: 1rem;
    overflow: hidden;
    transition: all var(--transition-medium) ease;
    box-shadow: var(--shadow-medium);
    position: relative;
    border: 1px solid var(--card-border);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: rgba(142, 45, 226, 0.3);
}

.casino-card:hover .btn-cta {
    background-position: right center;
}

.card-rank {
    position: absolute;
    top: 1.5rem;
    left: -1rem;
    background: var(--accent-gradient);
    color: white;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 2rem;
    box-shadow: var(--shadow-accent);
    z-index: 2;
}

.card-rank::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 0;
    width: 1rem;
    height: 1rem;
    background-color: #4a00e0;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.card-link {
    display: block;
    color: inherit;
    height: 100%;
}

.card-content {
    display: grid;
    grid-template-columns: 25rem 1fr 25rem;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

.casino-logo {
    background-color: var(--primary-dark);
    padding: 1.5rem;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-small);
    transition: transform var(--transition-fast) ease;
}

.casino-card:hover .casino-logo {
    transform: scale(1.05);
}

.casino-logo img {
    max-width: 100%;
    /* max-height: 6rem; */
}

.casino-details {
    text-align: left;
}

.casino-name {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: gold;
    font-size: 1.6rem;
}

.rating-score {
    font-weight: 600;
    color: var(--text-light);
}

.casino-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.advantage {
    font-size: 1.3rem;
    color: var(--text-gray);
}

.advantage i {
    color: var(--accent-bright);
    margin-right: 0.5rem;
}

.casino-cta {
    text-align: center;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    background-size: 200% auto;
    background-image: linear-gradient(to right, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-primary) 100%);
    border-radius: 3rem;
    box-shadow: var(--shadow-accent);
    transition: all var(--transition-medium) ease;
}

.btn-cta:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(142, 45, 226, 0.5);
    color: white;
}

/* FAQ Section */
.faq-section {
    background-color: var(--primary-dark);
}

.faq-container {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--card-border);
    border-radius: 0.8rem;
    overflow: hidden;
    transition: all var(--transition-medium) ease;
}

.faq-item:hover {
    border-color: rgba(142, 45, 226, 0.3);
    box-shadow: var(--shadow-small);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    background-color: var(--primary-medium);
    transition: background-color var(--transition-fast) ease;
}

.faq-question:hover {
    background-color: var(--card-hover);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
    line-height: 1.4;
    padding-right: 2rem;
}

.faq-toggle {
    font-size: 1.8rem;
    color: var(--accent-bright);
    transition: transform var(--transition-fast) ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-medium) ease;
    background-color: var(--card-hover);
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 20rem;
    opacity: 1;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-darker);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-size: 10rem;
    opacity: 0.03;
    pointer-events: none;
}

.contact-container {
    max-width: 60rem;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border-radius: 0.8rem;
    border: 1px solid var(--card-border);
    background-color: var(--primary-medium);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    transition: all var(--transition-fast) ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(142, 45, 226, 0.2);
}

.submit-btn {
    padding: 1.5rem;
    background: var(--accent-gradient);
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 0.8rem;
    box-shadow: var(--shadow-accent);
    transition: all var(--transition-fast) ease;
    cursor: pointer;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(142, 45, 226, 0.6);
}

/* SEO Content Section */
.seo-content {
    background-color: var(--primary-dark);
    padding-bottom: 8rem;
}

.seo-content article {
    max-width: 80rem;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 1.8;
}

.seo-content h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.seo-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 0.3rem;
    background: var(--accent-gradient);
    border-radius: 2rem;
}

.seo-content h3 {
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    color: var(--accent-bright);
}

.seo-content p {
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.seo-content ul {
    margin: 2rem 0;
    padding-left: 2rem;
}

.seo-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.seo-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 0.8rem;
    height: 0.8rem;
    background: var(--accent-gradient);
    border-radius: 50%;
}

/* Footer */
.footer {
    background-color: var(--primary-darker);
    color: var(--text-gray);
    padding: 6rem 0 3rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0, rgba(142, 45, 226, 0.05), transparent 70%);
    pointer-events: none;
}

.footer-content {

    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 1.4rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 0;
    width: 3rem;
    height: 0.2rem;
    background: var(--accent-gradient);
    border-radius: 2rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-column ul li a {
    color: var(--text-gray);
    transition: all var(--transition-fast) ease;
    font-size: 1.4rem;
}

.footer-column ul li a:hover {
    color: var(--accent-bright);
    padding-left: 0.5rem;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.contact-info li i {
    color: var(--accent-bright);
    font-size: 1.6rem;
    min-width: 2rem;
}

.footer-disclaimer {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--primary-light);
    border-radius: 0.8rem;
    border-left: 4px solid var(--accent-primary);
    font-weight: 600;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid var(--card-border);
}

.copyright {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.cookie-settings-btn {
    background-color: transparent;
    color: var(--text-gray);
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--card-border);
    border-radius: 0.5rem;
    transition: all var(--transition-fast) ease;
}

.cookie-settings-btn:hover {
    color: var(--text-white);
    border-color: var(--accent-bright);
}

.footer-help {
    margin: 3rem 0;
}

.help-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    gap: 2rem;
}

.help-item {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.help-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    transition: transform var(--transition-fast) ease;
    padding: 1rem;
    background-color: var(--primary-light);
}

.help-link:hover {
    transform: translateY(-3px);
    background-color: var(--primary-medium);
    box-shadow: var(--shadow-small);
}

.help-link img {
    max-height: 4rem;
    width: auto;
}

/* Animations and Effects */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Glow effect on hover */
.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(142, 45, 226, 0.6);
}

/* Thanks page animation */
.thanks-animation {
    animation: fadeIn 1s ease, float 6s ease-in-out infinite;
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal.active.reveal-left,
.reveal.active.reveal-right,
.reveal.active.reveal-up {
    transform: translateX(0) translateY(0);
}

body.loaded .reveal:not(.active) {
    opacity: 1;
    transform: none !important;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 1200px) {
    html {
        font-size: 56.25%; /* 9px */
    }

    .card-content {
        grid-template-columns: 25rem 1fr 25rem;
    }
}

@media screen and (max-width: 992px) {
    html {
        font-size: 50%; /* 8px */
    }

    .hero {
        min-height: 55rem;
    }

    .main-title {
        font-size: 3.8rem;
    }

    .card-content {
        grid-template-columns: 20rem 1fr 20rem;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .casino-logo {
        padding: 1rem;
    }

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

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 5rem 0;
    }

    .hero {
        height: auto;
        min-height: 50rem;
        margin-top:9em;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: -30rem;
        flex-direction: column;
        background-color: var(--primary-darker);
        padding: 2rem;
        border-radius: 1rem;
        box-shadow: var(--shadow-large);
        gap: 1rem;
        transition: right var(--transition-medium) ease;
        width: 25rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        display: block;
        padding: 1.5rem;
    }

    .nav-links a::before {
        display: none;
    }

    .nav-links a:hover {
        background-color: var(--primary-medium);
    }

    .card-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .casino-logo {
        margin: 0 auto;
        max-width: 30rem;
    }

    .casino-details {
        text-align: center;
    }

    .rating {
        justify-content: center;
    }

    .advantages {
        justify-content: center;
    }

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

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 43.75%; /* 7px */
    }

    .main-title {
        font-size: 3.2rem;
    }

    .hero-description {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 2.6rem;
    }

    .card-rank {
        top: 1rem;
        left: 1rem;
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.8rem;
    }

    .faq-question h3 {
        font-size: 1.6rem;
    }

    .contact-form {
        gap: 1.5rem;
    }

    .form-group input, 
    .form-group textarea {
        padding: 1.2rem;
    }

    .submit-btn {
        padding: 1.2rem;
    }

    .modal-content {
        padding: 2rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 1rem;
}

::-webkit-scrollbar-track {
    background-color: var(--primary-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 1rem;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--accent-secondary), var(--accent-primary));
}
