/* Dark British Game Theme */
:root {
    /* British Themed Dark Colors */
    --dark-bg: #0a0a1a;
    --darker-bg: #050510;
    --card-bg: #12122a;
    --border-color: #2a2a4a;
    --accent-red: #c62828; /* British red */
    --accent-blue: #1565c0; /* British blue */
    --accent-gold: #d4af37; /* Gold for luxury */
    --accent-teal: #008080; /* Tea color */
    --text-light: #f0f0f0;
    --text-medium: #cccccc;
    --text-dark: #aaaaaa;
    
    /* Shadows and Transitions */
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vollkorn SC', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: var(--text-light);
    font-family: 'Vollkorn SC', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--accent-gold);
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-medium);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: 'Vollkorn SC', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-red), var(--accent-blue));
    color: white;
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.4);
    border: 2px solid var(--accent-gold);
    transform: translateZ(10px);
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(198, 40, 40, 0.6);
    transform: translateY(-5px) translateZ(20px);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.btn-large {
    padding: 20px 45px;
    font-size: 1.3rem;
}

.btn-small {
    padding: 12px 24px;
    font-size: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.logo a {
    text-decoration: none;
}

.logo h2 {
    font-size: 2rem;
    margin-bottom: 0;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo span {
    color: var(--accent-blue);
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    font-family: 'Vollkorn SC', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nav ul li a:hover {
    color: var(--accent-gold);
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
    transition: var(--transition);
}

.nav ul li a:hover::after {
    width: 100%;
}

.cta-button .btn {
    padding: 12px 25px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--accent-gold);
    background: transparent;
    border: none;
    z-index: 1001;
    position: relative;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--darker-bg);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 80px 0 30px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.mobile-menu-header h2 {
    font-size: 1.8rem;
    margin: 0;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--accent-gold);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    padding: 0 20px;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    display: block;
    padding: 15px 0;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-menu ul li a:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

.mobile-menu ul li a::before {
    content: '→';
    margin-right: 10px;
    color: var(--accent-red);
}

/* Hero Section */
.hero {
    padding: 200px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 850px;
    display: flex;
    align-items: center;
    background: url('../images/hero.png') no-repeat center center;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.3);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.goldenthames-your-premier-free-entertainment-destination-section-2 {
    flex: 1;
    max-width: 800px;
}

.goldenthames-your-premier-free-entertainment-destination-section-2 h1 {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.goldenthames-your-premier-free-entertainment-destination-text {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.goldenthames-your-premier-free-entertainment-destination-section-3 {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.goldenthames-your-premier-free-entertainment-destination-section {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.goldenthames-your-premier-free-entertainment-destination-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.goldenthames-your-premier-free-entertainment-destination-section i {
    color: var(--accent-red);
    font-size: 1.2rem;
}

.hero-visual {
    display: none;
}

.slot-visual {
    width: 100%;
    max-width: 550px;
    height: 500px;
    background: linear-gradient(145deg, var(--card-bg), var(--darker-bg));
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(198, 40, 40, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.slot-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        rgba(198, 40, 40, 0.2), 
        transparent, 
        rgba(212, 175, 55, 0.2), 
        transparent
    );
    animation: rotate 4s linear infinite;
}

.slot-visual::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--card-bg);
    border-radius: 23px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.slot-visual img {
    max-width: 90%;
    position: relative;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(198, 40, 40, 0.4);
    }
    50% {
        box-shadow: 0 5px 25px rgba(198, 40, 40, 0.6);
    }
    100% {
        box-shadow: 0 5px 15px rgba(198, 40, 40, 0.4);
    }
}

/* Why Choose Us */
.why-choose-2 {
    padding: 120px 0;
    background: var(--darker-bg);
    position: relative;
}

.why-players-choose-goldenthames-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
}

.feature-card:hover {
    transform: translateY(-15px) translateZ(20px);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-blue));
    color: white;
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.4);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
    border: 2px solid var(--accent-gold);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent, 
        rgba(255, 255, 255, 0.3)
    );
    animation: rotate 4s linear infinite;
    z-index: 1;
}

.feature-icon i {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.feature-card p {
    color: var(--text-medium);
}

/* Activities Gallery */
.games {
    padding: 120px 0;
    background: var(--dark-bg);
}

.spotlight-activity-section {
    text-align: center;
    margin-bottom: 50px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-btn {
    padding: 12px 25px;
    background: var(--card-bg);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow);
    color: var(--text-medium);
    border: 1px solid var(--border-color);
    font-family: 'Vollkorn SC', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(90deg, var(--accent-red), var(--accent-blue));
    color: white;
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.4);
    border: 1px solid var(--accent-gold);
}

.spotlight-activity-section-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 40px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.game-card:hover {
    transform: translateY(-15px) translateZ(20px);
    box-shadow: var(--shadow-hover);
}

.jokers-6-section-2 {
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 30px;
    height: 500px;
}

.jokers-6-section-6 {
    flex: 1;
    padding-right: 20px;
}

.jokers-6-section-6 h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.game-description {
    margin-bottom: 25px;
    color: var(--text-medium);
    line-height: 1.7;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.tag {
    background: rgba(18, 18, 42, 0.7);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-gold);
    border: 1px solid var(--border-color);
}

.jokers-6-section-6 .btn {
    width: auto;
    padding: 14px 28px;
}

.game-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid var(--border-color);
}

.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(198, 40, 40, 0.1), rgba(212, 175, 55, 0.1));
    z-index: 1;
}

.game-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.game-card:hover .game-image img {
    transform: scale(1.08);
}

/* How It Works */
.how-it-works-2 {
    padding: 120px 0;
    background: var(--darker-bg);
}

.begin-your-goldenthames-journey-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 40px 30px;
    position: relative;
    background: var(--card-bg);
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.step:hover {
    transform: translateY(-15px) translateZ(20px);
    box-shadow: var(--shadow-hover);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step h3 {
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.step p {
    color: var(--text-medium);
}

.cta-section {
    text-align: center;
    margin-bottom: 50px;
}

/* Social Proof */
.social-proof {
    padding: 120px 0;
    background: var(--dark-bg);
}

.media-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 70px;
}

.logo-item {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.5rem;
    transition: var(--transition);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-item:hover {
    color: var(--accent-gold);
}

.testimonials {
    margin-bottom: 70px;
}

.testimonials h2 {
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(198, 40, 40, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    color: var(--text-light);
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--accent-gold);
}

.author-role {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.kpi-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.kpi-item {
    text-align: center;
}

.kpi-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.kpi-label {
    font-weight: 600;
    color: var(--text-medium);
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: var(--darker-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(18, 18, 42, 0.7);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
}

.faq-question i {
    transition: var(--transition);
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-medium);
}

.faq-item.open .faq-answer {
    padding: 0 30px 30px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-2 {
    padding: 120px 0;
    background: var(--dark-bg);
}

.contact-us-section-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-us-section-4 h2,
.contact-us-section-4 p {
    color: var(--text-light);
}

.contact-us-section {
    margin-top: 40px;
}

.contact-us-section-5 {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-us-section-5 i {
    font-size: 1.8rem;
    color: var(--accent-gold);
    min-width: 40px;
    text-align: center;
}

.contact-us-section-5 h4 {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.contact-us-section-5 p {
    color: var(--text-medium);
    margin: 0;
    font-size: 1.1rem;
}

.contact-us-section-2 .contact-us-section-6 {
    margin-bottom: 25px;
}

.contact-us-section-2 input,
.contact-us-section-2 textarea {
    width: 100%;
    padding: 18px 20px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-light);
    font-family: 'Vollkorn SC', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-us-section-2 input::placeholder,
.contact-us-section-2 textarea::placeholder {
    color: var(--text-dark);
}

.contact-us-section-2 input:focus,
.contact-us-section-2 textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Legal Sections */
.terms-of-service-section,
.content-section {
    padding: 100px 0;
    background: var(--darker-bg);
    color: var(--text-light);
}

.terms-of-service-section h1,
.content-section h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.legal-section p {
    margin-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.8;
}

.legal-section a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition);
}

.legal-section a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.div-block-2 {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
}

.div-block {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 20px;
    display: inline-block;
    padding: 10px 20px;
    border: 3px solid var(--accent-red);
    border-radius: 10px;
}

.body-text {
    margin-bottom: 25px;
    color: var(--text-medium);
    line-height: 1.8;
}


/* Footer */
.goldenthames-footer {
    background: var(--darker-bg);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: var(--text-medium);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-red);
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
    padding-left: 20px;
}

.goldenthames-text {
    color: var(--text-medium);
    margin-top: 20px;
    line-height: 1.8;
}

.responsible-activities-logos {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.responsible-activities-logos img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--transition);
}

.responsible-activities-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Cookie Consent */
.cookieconsent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
}

.cookieconsent.show {
    transform: translateY(0);
    opacity: 1;
}

.we-value-your-privacy-section-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.we-value-your-privacy-section-3 h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.we-value-your-privacy-section-3 p {
    color: var(--text-medium);
    margin: 0;
}

.cookie-policy-link {
    color: var(--accent-blue);
    text-decoration: none;
}

.cookie-policy-link:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.we-value-your-privacy-section {
    display: flex;
    gap: 15px;
}

.acceptcookies-2 {
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Vollkorn SC', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.acceptcookies {
    background: var(--accent-red);
    color: white;
}

.acceptcookies:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.declinecookies {
    background: transparent;
    color: var(--text-medium);
    border: 1px solid var(--border-color);
}

.declinecookies:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .begin-your-goldenthames-journey-section {
        flex-direction: column;
    }
    
    .contact-us-section-3 {
        grid-template-columns: 1fr;
    }
    
    .hero {
        background-position: center top;
        min-height: 80vh;
    }
    
    .hero::before {
        background: rgba(10, 10, 26, 0.2);
    }
}

@media (max-width: 768px) {
    .nav ul {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 150px 0 80px;
        background-position: center top;
        min-height: 70vh;
    }
    
    .hero::before {
        background: rgba(10, 10, 26, 0.25);
    }
    
    .goldenthames-your-premier-free-entertainment-destination-section-3 {
        flex-direction: column;
        align-items: center;
    }
    
    .goldenthames-your-premier-free-entertainment-destination-section-2 h1 {
        font-size: 2.5rem;
    }
    
    .goldenthames-your-premier-free-entertainment-destination-text {
        font-size: 1.1rem;
    }
    
    .jokers-6-section-2 {
        flex-direction: column;
        height: auto;
    }
    
    .jokers-6-section-6 {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .spotlight-activity-section-2 {
        grid-template-columns: 1fr;
    }
    
    .we-value-your-privacy-section-2 {
        flex-direction: column;
        text-align: center;
    }
    
    .why-choose-2,
    .games,
    .how-it-works-2,
    .social-proof,
    .faq,
    .contact-2 {
        padding: 80px 0;
    }
    
    .why-players-choose-goldenthames-section {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .slot-visual {
        height: 400px;
    }
    
    .media-logos {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .logo-item {
        font-size: 1.3rem;
    }
    
    .kpi-stats {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 14px 25px;
    }
    
    .btn-large {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .feature-card,
    .step,
    .testimonial {
        padding: 30px 20px;
    }
    
    .hero {
        padding: 120px 0 60px;
        min-height: 60vh;
    }
    
    .hero::before {
        background: rgba(10, 10, 26, 0.3);
    }
    
    .goldenthames-your-premier-free-entertainment-destination-section-2 h1 {
        font-size: 2rem;
    }
    
    .goldenthames-your-premier-free-entertainment-destination-text {
        font-size: 1rem;
    }
    
    .goldenthames-your-premier-free-entertainment-destination-section {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .goldenthames-your-premier-free-entertainment-destination-section i {
        font-size: 1rem;
    }
    
    .slot-visual {
        height: 300px;
    }
    
    .kpi-number {
        font-size: 2rem;
    }
    
    .kpi-label {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    .contact-us-section-2 input,
    .contact-us-section-2 textarea {
        padding: 12px 15px;
    }
    
    .contact-us-section-5 {
        gap: 12px;
    }
    
    .contact-us-section-5 i {
        font-size: 1.2rem;
    }
    
    .contact-us-section-5 h4 {
        font-size: 1rem;
    }
    
    .contact-us-section-5 p {
        font-size: 0.9rem;
    }
    
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
}