/* --- Cookie Policy Styles --- */
.cookie-content {
    background-color: white;
    padding-bottom: 60px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background-color: var(--primary-color);
    color: white;
}

.cookie-table tr:nth-child(even) {
    background-color: var(--light-color);
}

.cookie-table tr:hover {
    background-color: rgba(0, 110, 81, 0.05);
}

.cookie-controls {
    margin: 30px 0;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 20px;
}

.cookie-control-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.cookie-control-item:last-child {
    border-bottom: none;
}

.control-label {
    flex: 1;
}

.control-label h4 {
    margin-bottom: 5px;
}

.control-label p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.control-toggle {
    display: flex;
    align-items: center;
}

.control-toggle input[type="checkbox"] {
    display: none;
}

.control-toggle label {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    background-color: #ccc;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.control-toggle label::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: white;
    top: 3px;
    left: 3px;
    transition: var(--transition);
}

.control-toggle input[type="checkbox"]:checked + label {
    background-color: var(--primary-color);
}

.control-toggle input[type="checkbox"]:checked + label::after {
    left: 33px;
}

.control-toggle input[type="checkbox"]:disabled + label {
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    color: var(--secondary-color);
}

/* --- Thank You Page Styles --- */
.thankyou-section {
    background-color: white;
    padding: 100px 0 60px;
    margin-top: 70px;
}

.thankyou-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.thankyou-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.message {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.response-time {
    color: var(--gray-color);
    margin-bottom: 30px;
}

.next-steps {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.next-steps h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.next-steps ul {
    list-style-type: none;
    padding: 0;
}

.next-steps ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.next-steps ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.events-preview {
    background-color: var(--light-color);
    padding: 60px 0;
}

.view-all-link {
    text-align: center;
    margin-top: 30px;
}

.view-all-link a {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.view-all-link a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.view-all-link a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.stay-connected {
    background-color: white;
    text-align: center;
    padding: 60px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    min-width: 120px;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-10px);
    background-color: var(--primary-color);
    color: white;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: var(--transition);
}

.social-link:hover .social-icon {
    background-color: white;
    color: var(--primary-color);
}

.social-name {
    font-weight: 600;
}

/* --- Membership Section Styles --- */
.membership {
    background-color: var(--light-color);
    padding: 80px 0;
    position: relative;
}

.membership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/pattern.webp');
    background-size: 300px;
    opacity: 0.05;
    z-index: 0;
}

.membership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.membership-info {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.membership-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefits-list {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    margin-top: 5px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-text h4 {
    margin-bottom: 5px;
}

.benefit-text p {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.membership-form {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.membership-form h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.membership-form p {
    margin-bottom: 25px;
}

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

.membership-form select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23006e51' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.form-check input[type="checkbox"] {
    margin-right: 10px;
}

.form-check label {
    font-size: 0.9rem;
}

/* --- Media Queries --- *//*
   Monopoly Masters Club - Main Stylesheet
   Author: Claude
   Version: 1.0
*/

/* --- Global Styles --- */
:root {
    --primary-color: #006e51; /* Monopoly green */
    --secondary-color: #ed1b24; /* Monopoly red */
    --accent-color: #ffcb05; /* Monopoly yellow/gold */
    --dark-color: #121212;
    --light-color: #f5f5f5;
    --gray-color: #6c757d;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 0;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* --- Header Styles --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--box-shadow);
    z-index: 1000;
    padding: 15px 0;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary-color);
}

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

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

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

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* --- About Game Section --- */
.about-game-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-game-img {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transform: perspective(1000px) rotateY(5deg);
    transition: var(--transition);
}

.about-game-img:hover {
    transform: perspective(1000px) rotateY(0);
}

/* --- Features Section --- */
.features {
    background-color: var(--primary-color);
    color: white;
}

.features h2::after {
    background-color: white;
}

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

.feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--accent-color);
}

/* --- About Club Section --- */
.about-club-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-club-img {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

.about-club-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: var(--border-radius);
    top: 15px;
    left: 15px;
    z-index: -1;
}

/* --- Events Section --- */
.events {
    background-color: var(--light-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    display: flex;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.event-date {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.event-details {
    padding: 20px;
    flex-grow: 1;
}

.event-time {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.clock-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    background-color: var(--gray-color);
    border-radius: 50%;
    display: inline-block;
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 200px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- Ratings Section --- */
.ratings {
    background-color: var(--light-color);
    position: relative;
}

.ratings::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../img/pattern.webp');
    background-size: 200px;
    opacity: 0.05;
    top: 0;
    left: 0;
}

.ratings-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.rating-score {
    text-align: center;
    border-right: 1px solid #eee;
    padding-right: 30px;
}

.score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stars {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.star {
    width: 20px;
    height: 20px;
    margin: 0 2px;
    position: relative;
}

.star::before {
    content: '★';
    color: #ddd;
    font-size: 20px;
}

.star.filled::before {
    color: var(--accent-color);
}

.star.half-filled::before {
    color: var(--accent-color);
}

.star.half-filled::after {
    content: '★';
    color: #ddd;
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    overflow: hidden;
}

.review-count {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-label {
    width: 60px;
}

.bar-container {
    flex-grow: 1;
    height: 10px;
    background-color: #eee;
    border-radius: 5px;
    margin: 0 10px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background-color: var(--primary-color);
}

.rating-percent {
    width: 40px;
    text-align: right;
    font-size: 0.9rem;
}

.popularity-rank {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    text-align: center;
}

.popularity-rank h3 {
    color: var(--primary-color);
}

/* --- Testimonials Section --- */
.testimonials {
    background-color: var(--primary-color);
    color: white;
}

.testimonials h2::after {
    background-color: var(--accent-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--accent-color);
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--accent-color);
}

/* --- Contact Section --- */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    color: var(--primary-color);
}

.map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-top: 20px;
}

.contact-form {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* --- Footer --- */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

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

.footer-logo h3 {
    color: var(--accent-color);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
}

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

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1001;
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    color: var(--accent-color);
}

.btn-dark {
    background-color: var(--accent-color);
    color: var(--dark-color);
    border-color: var(--accent-color);
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.text-white {
    color: white;
    text-decoration: underline;
}

/* --- About Page Specific Styles --- */
.page-banner {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 100px 0 50px;
    margin-top: 70px;
}

.page-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Our Story Section */
.our-story {
    background-color: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.story-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin: 20px 0;
    background-color: rgba(0, 110, 81, 0.05);
    font-style: italic;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    font-style: normal;
}

/* Mission & Values Section */
.mission-values {
    background-color: white;
}

.mission-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: var(--light-color);
}

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

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

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

/* Team Section */
.team {
    background-color: var(--light-color);
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Milestones Section */
.milestones {
    background-color: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 4px;
    background-color: var(--primary-color);
    left: 0;
    top: 0;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    left: -38px;
    top: 5px;
    border: 4px solid var(--primary-color);
}

.timeline-date {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.timeline-content h3 {
    margin-bottom: 10px;
}

/* Club Facts Section */
.club-facts {
    background-color: var(--primary-color);
    color: white;
}

.club-facts h2::after {
    background-color: var(--accent-color);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.fact-card {
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.fact-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.fact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.fact-text {
    font-size: 1.2rem;
}

/* Join CTA Section */
.join-cta {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/cta.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.join-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.join-cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.join-cta .btn {
    background-color: var(--accent-color);
    color: var(--dark-color);
    border-color: var(--accent-color);
}

.join-cta .btn:hover {
    background-color: transparent;
    color: var(--accent-color);
}

/* --- Privacy Policy Styles --- */
.privacy-content {
    background-color: white;
    padding-bottom: 60px;
}

.policy-content {
    max-width: 850px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.last-updated {
    margin-bottom: 30px;
    color: var(--gray-color);
    font-style: italic;
    text-align: right;
}

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

.policy-section h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.policy-section h4 {
    margin: 25px 0 15px;
    color: var(--dark-color);
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-section ul li {
    margin-bottom: 10px;
}

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

.policy-section a:hover {
    color: var(--secondary-color);
}

/* --- Media Queries --- */
@media screen and (max-width: 991px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .about-game-content,
    .about-club-content,
    .contact-content,
    .membership-content {
        grid-template-columns: 1fr;
    }

    .about-club-img::before {
        display: none;
    }

    .ratings-overview {
        grid-template-columns: 1fr;
    }

    .rating-score {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

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

    .cookie-table {
        display: none;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

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

    .nav-links li {
        margin: 15px 0;
    }

    .hero {
        height: 70vh;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .feature-item:hover {
        transform: none;
    }

    .contact-content {
        gap: 30px;
    }

    .cookie-banner {
        flex-direction: column;
        padding: 15px;
    }

    .cookie-banner div:last-child {
        margin-top: 15px;
    }
}

@media screen and (max-width: 576px) {
    h2 {
        font-size: 1.5rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        padding: 10px 15px;
    }

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

    .gallery-item {
        height: 250px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .footer-content {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}