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

:root {
    --primary: #1a5fb4; /* Thames blue */
    --primary-dark: #0d4a9e;
    --secondary: #e6ac00; /* Gold/Lucky color */
    --accent: #c13d00; /* Red accent */
    --dark: #0a2a4a; /* Deep blue */
    --darker: #051729; /* Navy */
    --light: #f8f9fa; /* Light cream */
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(10, 42, 74, 0.2);
    --transition: all 0.3s ease;
    --river-gradient: linear-gradient(135deg, #1a5fb4 0%, #2a9d8f 50%, #e9c46a 100%);
    --gold-gradient: linear-gradient(135deg, #e6ac00 0%, #f4d03f 100%);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #C8102E 0%, #FFFFFF 50%, #012169 100%);
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
    background-attachment: fixed;
    min-height: 100vh;
}

html {
    overflow-x: hidden;
}

.container {
    overflow-x: hidden;
}

section {
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #012169;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    color: #012169;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 15px;
    color: #333333;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--darker);
    box-shadow: 0 5px 15px rgba(230, 172, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 172, 0, 0.6);
    color: var(--darker);
}

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

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    margin-top: auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    overflow: visible;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
}

.logo h2 {
    font-size: 1.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    background: var(--river-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    height: 40px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: block;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1001;
    border-radius: 10px;
    top: 100%;
    left: 0;
    margin-top: 10px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
    pointer-events: none;
}

.dropdown-content a {
    color: var(--dark);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: #f0f7ff;
    color: var(--primary);
    padding-left: 25px;
}

.dropdown.hover .dropdown-content,
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown:hover .dropdown-content {
    transition-delay: 0s;
}

.dropdown:not(:hover) .dropdown-content {
    transition-delay: 0s;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropbtn i {
    transition: transform 0.5s ease;
}

.dropdown.hover .dropbtn i,
.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    margin-bottom: 20px;
    background: var(--river-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.lucky-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    margin: 0;
    font-weight: 600;
    color: var(--dark);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.hero-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    max-width: 300px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.hero-card p {
    margin-bottom: 20px;
    color: var(--gray);
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.7);
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
}

.thames-bridge {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.thames-bridge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lucky-crown {
    font-size: 4rem;
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(230, 172, 0, 0.5);
    animation: float 3s ease-in-out infinite;
}

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

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(10, 42, 74, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--darker);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    margin: 0;
}

/* Game Section */
.game-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
    min-height: 100vh;
}

.game-container {
    gap: 30px;
    align-items: flex-start;
}

.game-iframe-wrapper {
    flex: 3;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
    height: 600px;
}

.game-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-info-panel {
    flex: 1;
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    align-self: stretch;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.game-info-panel h3 {
    margin-bottom: 20px;
    color: var(--dark);
    text-align: center;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.game-info-panel h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.game-info-panel p {
    margin-bottom: 25px;
    color: var(--gray);
    font-size: 1rem;
    text-align: center;
}

.game-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: #f0f9ff;
    border-radius: 10px;
}

.stat-item h4 {
    margin-bottom: 10px;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stat-item h4 i {
    color: var(--primary);
}

.stat-item p {
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark);
}

/* Game Description */
.game-description {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.7);
}

.game-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.game-info {
    flex: 1;
}

.game-tagline {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.game-features {
    list-style: none;
    margin: 30px 0;
}

.game-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-features i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.game-image {
    flex: 1;
}

.thames-game-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.thames-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    color: var(--darker);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(230, 172, 0, 0.4);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.7);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-item {
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    max-width: 600px;
}

.faq-question {
    padding: 20px;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    border-bottom: 1px solid var(--light-gray);
}

.faq-question:hover {
    background: #f0f9ff;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark);
}

.faq-answer {
    padding: 20px;
    background: #f0f9ff;
    max-height: none;
}

.faq-answer.open {
    padding: 20px;
    max-height: none;
}

/* FAQ Swiper Styles */
.faq-swiper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-swiper-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.faq-swiper-slide {
    min-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.faq-swiper-slide .faq-item {
    margin: 0;
}

.faq-swiper-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.faq-swiper-button {
    background: var(--white);
    border: 1px solid var(--light-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray);
}

.faq-swiper-button:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.faq-swiper-pagination {
    display: flex;
    gap: 10px;
}

.faq-swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.faq-swiper-pagination-bullet.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.7);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    height: 350px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: var(--transition);
    transform: translateX(50px);
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.rating {
    margin-bottom: 20px;
}

.rating i {
    color: var(--secondary);
    font-size: 1.5rem;
    margin: 0 3px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    position: relative;
    overflow: hidden;
}

.author-avatar::after {
    content: 'U';
    color: var(--darker);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 1.5rem;
}

.testimonial-author h4 {
    margin: 0 0 5px 0;
    color: var(--dark);
}

.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--gray);
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.prev-btn, .next-btn {
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.7);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.2);
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 30px;
    color: var(--dark);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    min-width: 30px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--dark);
}

/* Policy Pages */
.policy-section {
    padding: 120px 0 80px;
    background: rgba(255, 255, 255, 0.7);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark);
}

.policy-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.policy-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.policy-content a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.policy-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Disclaimer */
.disclaimer {
    padding: 80px 0;
    background: linear-gradient(135deg, #012169 0%, #0a2a4a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.disclaimer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(200, 16, 46, 0.1);
    z-index: 0;
}

.disclaimer::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    z-index: 0;
}

.disclaimer-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.disclaimer-icon {
    font-size: 3rem;
    color: #C8102E;
    min-width: 80px;
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.disclaimer-text h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.disclaimer-text p {
    color: #e9ecef;
    margin-bottom: 15px;
    line-height: 1.7;
}

.disclaimer-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.disclaimer-links a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.disclaimer-links a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--darker);
    color: var(--light-gray);
    padding: 70px 0 0;
}

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

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-column p {
    color: var(--light-gray);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: var(--darker);
    transform: translateY(-3px);
}

.badge-section {
    padding: 32px 0;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
    margin: 48px 0 32px;
}

.badge-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.badge-link {
    display: block;
    transition: transform 0.2s ease;
}

.badge-link:hover {
    transform: scale(1.05);
}

.badge-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: var(--light-gray);
}

.newsletter-form button {
    background: var(--gold-gradient);
    color: var(--darker);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 172, 0, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--light-gray);
}

.responsible-gaming-badges {
    display: flex;
    gap: 15px;
}

.responsible-gaming-badges img {
    height: 40px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .lucky-stats {
        justify-content: center;
    }
    
    .about-content,
    .game-content,
    .contact-content {
        flex-direction: column;
    }
    
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-icon {
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .responsible-gaming-badges {
        justify-content: center;
    }
    
    .thames-bridge,
    .thames-game-image {
        height: 300px;
    }
    
    .river-animation {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-menu a {
        padding: 10px 20px;
        font-size: 1.1rem;
    }
    
    .dropbtn {
        padding: 10px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }
    
    .dropdown-content {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background: transparent;
        margin-top: 0;
        padding: 0;
        pointer-events: none;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    
    .dropdown.hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .dropdown-content a {
        padding: 8px 20px;
        text-align: center;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .header-buttons {
        display: none;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero::before {
        right: -20%;
        width: 400px;
        height: 400px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .lucky-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-content, .hero-image {
        flex: auto;
        max-width: 100%;
        text-align: center;
    }
    
    .hero .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .thames-bridge,
    .thames-game-image {
        height: 400px;
    }
    
    .river-animation {
        height: 300px;
    }
    
    .lucky-card {
        width: 220px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero, .about, .features, .game-description, .faq, .testimonials, .contact, .disclaimer {
        padding: 70px 0;
    }
    
    .hero::before {
        width: 300px;
        height: 300px;
    }
    
    .testimonials-slider {
        height: 450px;
    }
    
    .thames-bridge,
    .thames-game-image {
        height: 300px;
    }
    
    .river-animation {
        height: 250px;
    }
    
    .lucky-card {
        width: 180px;
    }
    
    .faq-swiper-slide .faq-item {
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 2px solid var(--primary);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    display: block;
    visibility: visible;
}

.cookie-banner.show {
    transform: translateY(0) !important;
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-content {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 5px;
    color: #E8E8E8;
}

.cookie-banner-text a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.cookie-banner-text a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.cookie-btn-accept {
    background: var(--gold-gradient);
    color: var(--darker);
    box-shadow: 0 3px 10px rgba(230, 172, 0, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 172, 0, 0.5);
}

.cookie-btn-decline {
    background: transparent;
    color: #B8B8B8;
    border: 1.5px solid #4A4A5A;
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: #6A6A7A;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-content {
        min-width: unset;
        width: 100%;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}