/* Base Styles */
:root {
    --primary-color: #1e88e5;
    --secondary-color: #ff5722;
    --accent-color: #43a047;
    --dark-color: #212121;
    --light-color: #f5f5f5;
    --text-color: #333;
    --light-text: #f9f9f9;
    --border-color: #ddd;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --warning-color: #FFC107;
    --info-color: #2196F3;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-width: 1200px;
}

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

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

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

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

ul {
    list-style: none;
}

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

.custom-frame {
    border: 3px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 5px 5px 0 rgba(30, 136, 229, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-frame:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 rgba(30, 136, 229, 0.3);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: #1565c0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition);
    text-align: center;
}

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

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

/* Header & Navigation */
header {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--light-text);
    font-weight: 600;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

nav a.active {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 60px;
}

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

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Intro Story Section */
.intro-story {
    padding: 60px 20px;
    max-width: var(--container-width);
    margin: 0 auto 60px;
}

.intro-story h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.intro-story h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.story-image {
    flex: 1;
}

.story-text {
    flex: 2;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Featured Posts Section */
.featured-posts {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.featured-posts h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.featured-posts h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
}

.post-card p {
    padding: 0 20px 20px;
    color: #666;
}

.read-more {
    display: inline-block;
    margin: 0 20px 20px;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

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

/* Community Section */
.community {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--dark-color);
    color: var(--light-text);
}

.community h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.community p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 60px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

.footer-column p {
    margin-bottom: 15px;
    color: #bbb;
}

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

.footer-column ul li a {
    color: #bbb;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Blog Page Styles */
.blog-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/2.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.blog-header h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.blog-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.blog-posts {
    max-width: var(--container-width);
    margin: 60px auto;
    padding: 0 20px;
}

.blog-post {
    margin-bottom: 60px;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

.post-image {
    width: 100%;
}

.post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-content {
    padding: 40px;
}

.post-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #777;
    font-size: 14px;
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.post-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

/* Tournament Page Styles */
.tournament-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/7.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.tournament-header h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.tournament-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.tournament-main {
    background-color: #f5f5f5;
}

.featured-tournament {
    max-width: var(--container-width);
    margin: 60px auto;
    padding: 0 20px;
}

.tournament-banner {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.tournament-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px;
    color: white;
}

.banner-overlay h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.banner-overlay p {
    font-size: 18px;
    margin-bottom: 20px;
}

.tournament-finder {
    max-width: var(--container-width);
    margin: 60px auto;
    padding: 40px 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.finder-header {
    text-align: center;
    margin-bottom: 30px;
}

.finder-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.finder-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.filter-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background-color: white;
    font-size: 16px;
}

.search-btn {
    margin-top: 24px;
}

.tournament-list {
    max-width: var(--container-width);
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.tournament-image {
    flex: 1;
    min-width: 300px;
}

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

.tournament-details {
    flex: 2;
    padding: 30px;
}

.tournament-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.tournament-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.tournament-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.tournament-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.tournament-links {
    display: flex;
    gap: 15px;
}

.host-tournament {
    max-width: var(--container-width);
    margin: 60px auto;
    padding: 40px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 40px;
}

.host-content {
    flex: 1;
}

.host-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.host-content p {
    margin-bottom: 20px;
}

.host-content .btn {
    background-color: white;
    color: var(--primary-color);
}

.host-content .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.host-image {
    flex: 1;
}

/* About Page Styles */
.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/13.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.about-hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.our-story {
    padding: 80px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.story-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-content {
    flex: 3;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.story-image {
    flex: 2;
}

.our-mission {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.our-mission h2 {
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.our-mission h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.mission-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mission-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 80px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.team-section > p {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #666;
}

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

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

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card h3 {
    margin-top: 20px;
    font-size: 22px;
}

.team-card p {
    padding: 0 20px;
    margin-bottom: 15px;
}

.team-card p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.partners {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.partners h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.partners > p {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #666;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto 40px;
}

.partner-logo {
    width: 200px;
    height: 120px;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
}

.partner-cta {
    font-size: 18px;
}

.partner-cta a {
    font-weight: 600;
}

/* Contact Page Styles */
.contact-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/18.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.contact-header h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    max-width: var(--container-width);
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

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

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

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

.contact-form-container h2 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    color: #666;
    line-height: 1.5;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-connect {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.social-connect h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.social-connect p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    padding: 12px 25px;
    border-radius: 50px;
    color: var(--dark-color);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-link span {
    font-weight: 600;
}

/* Thank You Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
}

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

.thank-you-message {
    text-align: center;
}

.thank-you-message svg {
    margin-bottom: 20px;
}

.thank-you-message h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.thank-you-message p {
    margin-bottom: 30px;
    color: #666;
}

.close-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    background-color: #1565c0;
}

/* Cookie Consent */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 33, 33, 0.95);
    color: white;
    padding: 20px;
    z-index: 1000;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 20px;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-customize {
    background-color: var(--info-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-decline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accept:hover {
    background-color: #388e3c;
}

.btn-customize:hover {
    background-color: #1976d2;
}

.btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-more {
    font-size: 14px;
}

.cookie-more a {
    color: var(--info-color);
    text-decoration: underline;
}

.cookie-more a:hover {
    color: #64b5f6;
}

/* Icons */
.icon-location:before {
    content: "📍";
    margin-right: 5px;
}

.icon-phone:before {
    content: "📞";
    margin-right: 5px;
}

.icon-mail:before {
    content: "✉️";
    margin-right: 5px;
}

.icon-calendar:before {
    content: "📅";
    margin-right: 5px;
}

.icon-trophy:before {
    content: "🏆";
    margin-right: 5px;
}

.icon-dollar:before {
    content: "💰";
    margin-right: 5px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .story-content {
        flex-direction: column;
    }
    
    .story-image {
        margin-bottom: 30px;
    }
    
    .tournament-card {
        flex-direction: column;
    }
    
    .tournament-image {
        min-width: 100%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .story-container {
        flex-direction: column;
    }
    
    .story-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 20px;
    }
    
    .logo-container {
        margin-bottom: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .story-content {
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .our-story {
        padding: 40px 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
    
    .banner-overlay {
        padding: 20px;
    }
    
    .banner-overlay h2 {
        font-size: 24px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .host-tournament {
        flex-direction: column;
    }
    
    .team-card img {
        height: 250px;
    }
    
    .finder-controls {
        flex-direction: column;
    }
    
    .contact-form-container {
        padding: 20px;
    }
}
