/* Base Styles */
:root {
    --primary-color: #5c2de2;
    --secondary-color: #06d8d7;
    --tertiary-color: #ff6b4a;
    --dark-color: #1a1a2e;
    --light-color: #f7f7f7;
    --gray-color: #6c757d;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f5f5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

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

.btn, .btn-sm {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn:hover, .btn-sm:hover {
    background-color: var(--tertiary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

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

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

section {
    padding: 5rem 0;
}

/* Header */
header {
    background-color: var(--dark-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    flex: 0 0 180px;
}

.logo img {
    max-height: 50px;
    width: auto;
}

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

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: white;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

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

nav ul li a.active {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.9)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 7rem 0;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Featured Content Section */
.featured-content {
    background-color: white;
}

.featured-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.card-content p {
    color: var(--gray-color);
    margin-bottom: 1.25rem;
}

/* Editor's Word Section */
.editors-word {
    background-color: var(--light-color);
}

.editors-word h2, 
.future-quote h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.quote-box {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.quote-box:before {
    content: '"';
    font-size: 6rem;
    color: rgba(92, 45, 226, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.quote-box .author {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
}

/* Future Quote Section */
.future-quote {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    color: white;
}

.future-quote h2 {
    color: white;
}

.future-quote .quote-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.future-quote .quote-box:before {
    color: rgba(255, 255, 255, 0.1);
}

.future-quote .author {
    color: var(--secondary-color);
}

/* Latest Posts Section */
.latest-posts {
    background-color: white;
}

.latest-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

/* Newsletter Section */
.newsletter {
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), url('images/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 5px 5px 0;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.75rem;
}

.footer-section .registration {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

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

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

.social-icons {
    display: flex;
    gap: 1rem;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #ccc;
    margin-bottom: 0;
}

.footer-links a {
    color: #ccc;
    margin-left: 1.5rem;
    font-size: 0.9rem;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 46, 0.95);
    color: white;
    padding: 1rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    padding: 1rem;
}

.cookie-content p {
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.btn-accept, .btn-settings, .btn-decline {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

.btn-settings {
    background-color: var(--warning-color);
    color: var(--dark-color);
}

.btn-decline {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn-accept:hover, .btn-settings:hover {
    opacity: 0.9;
}

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

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Blog Page Styles */
.page-header {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('images/page-header.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.blog-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    background-color: white;
    padding: 4rem 0;
}

.blog-post {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 3rem;
}

.blog-post:last-child {
    margin-bottom: 0;
}

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

.post-content {
    padding: 2rem;
}

.post-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
}

.categories {
    list-style: none;
}

.categories li {
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.categories li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.categories a:hover {
    color: var(--tertiary-color);
}

.popular-posts {
    list-style: none;
}

.popular-posts li {
    margin-bottom: 1.25rem;
}

.popular-posts li:last-child {
    margin-bottom: 0;
}

.popular-posts a {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.popular-posts img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.popular-posts h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    transition: var(--transition);
}

.popular-posts span {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.popular-posts a:hover h4 {
    color: var(--tertiary-color);
}

.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-form input {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

/* Tournaments Page Styles */
.tournament-filters {
    background-color: white;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-end;
}

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

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

.filter-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c757d' 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 1rem center;
    background-size: 1rem;
}

.filter-btn {
    min-width: 150px;
}

.featured-tournament {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.featured-tournament-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-tournament-image img {
    border-radius: 10px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: var(--card-shadow);
}

.featured-badge {
    display: inline-block;
    background-color: var(--tertiary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tournament-meta {
    margin-bottom: 1.5rem;
}

.tournament-meta p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tournament-meta i {
    color: var(--primary-color);
}

.tournament-description {
    margin-bottom: 1.5rem;
}

.tournament-actions {
    display: flex;
    gap: 1rem;
}

.tournament-list {
    background-color: white;
}

.tournament-list h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

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

.tournament-content {
    padding: 1.5rem;
}

.tournament-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tournament-info {
    margin-bottom: 1.5rem;
}

.tournament-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tournament-info i {
    color: var(--primary-color);
    width: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 5px;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.pagination a.next {
    width: auto;
    padding: 0 1rem;
    gap: 0.5rem;
}

.pagination a.active,
.pagination a:hover {
    background-color: var(--primary-color);
    color: white;
}

.host-tournament {
    background-color: var(--light-color);
}

.host-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.host-text h2 {
    margin-bottom: 1.5rem;
}

.host-benefits {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.host-benefits li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.host-benefits i {
    color: var(--success-color);
}

.host-image img {
    border-radius: 10px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: var(--card-shadow);
}

.tournament-sponsors {
    text-align: center;
    background-color: white;
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.tournament-sponsors h2 {
    margin-bottom: 3rem;
}

.sponsor-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.sponsor img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.sponsor img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Guides Page Styles */
.guide-categories {
    background-color: white;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-btn {
    padding: 0.6rem 1.2rem;
    background-color: var(--light-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.category-btn.active,
.category-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.featured-guide {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.featured-guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-guide-image img {
    border-radius: 10px;
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: var(--card-shadow);
}

.guide-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.difficulty {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.beginner {
    background-color: #e7f5ff;
    color: #1971c2;
}

.intermediate {
    background-color: #fff3bf;
    color: #e67700;
}

.advanced {
    background-color: #ffe3e3;
    color: #c92a2a;
}

.reading-time, .update-date {
    font-size: 0.9rem;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.guide-features {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature span {
    font-size: 0.9rem;
    font-weight: 600;
}

.guides-grid {
    background-color: white;
}

.guides-grid h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.guides-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.guide-image {
    position: relative;
}

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

.guide-image .difficulty {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.guide-content {
    padding: 1.5rem;
}

.guide-content h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.guide-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.guide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.request-guide {
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), url('images/request-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

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

.request-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.request-content p {
    margin-bottom: 2rem;
}

.request-form {
    display: flex;
    gap: 1rem;
}

.request-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.video-tutorials {
    background-color: var(--light-color);
    text-align: center;
}

.video-tutorials h2 {
    margin-bottom: 1rem;
}

.video-tutorials > p {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--gray-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.video-thumbnail {
    position: relative;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.video-thumbnail:hover .play-button {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    padding: 1.5rem;
}

.video-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.video-content p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.center-button {
    text-align: center;
}

/* About Us Page Styles */
.about-intro {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    box-shadow: var(--card-shadow);
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.our-values {
    background-color: var(--light-color);
    text-align: center;
}

.our-values h2 {
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

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

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray-color);
}

.team-section {
    background-color: white;
    text-align: center;
}

.team-section h2 {
    margin-bottom: 1rem;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--gray-color);
}

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

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

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

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

.team-card h3 {
    margin: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
}

.team-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

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

.social-links {
    display: flex;
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem;
}

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

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

.milestones {
    background-color: var(--light-color);
    text-align: center;
}

.milestones h2 {
    margin-bottom: 3rem;
}

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

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    width: 45%;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.testimonials {
    background-color: white;
    text-align: center;
}

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

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial {
    flex: 0 0 calc(33.333% - 2rem);
    min-width: 280px;
}

.testimonial-content {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    text-align: left;
    height: 100%;
}

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: var(--light-color);
    transform: rotate(45deg);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

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

.partners {
    background-color: var(--light-color);
    text-align: center;
}

.partners h2 {
    margin-bottom: 1rem;
}

.partners > p {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--gray-color);
}

.partner-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.partner img {
    max-width: 180px;
    max-height: 90px;
    object-fit: contain;
}

.cta-section {
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Contact Page Styles */
.contact-section {
    background-color: white;
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container, 
.contact-info {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 10px;
}

.contact-form-container h2, 
.contact-info h2 {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.3rem;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.contact-form button {
    width: 100%;
}

.info-items {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-item p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.social-connect h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.map-section {
    background-color: var(--light-color);
    text-align: center;
}

.map-section h2 {
    margin-bottom: 3rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.faq-section {
    background-color: white;
    text-align: center;
}

.faq-section h2 {
    margin-bottom: 3rem;
}

.faqs {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.faq-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.faq-question.active:after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}

.faq-answer.show {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.thank-you-message {
    padding: 1rem;
}

.thank-you-message i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thank-you-message h2 {
    margin-bottom: 1rem;
}

.thank-you-message p {
    margin-bottom: 2rem;
}

.close-btn {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-content {
        width: 40%;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .grid-3,
    .contact-content,
    .about-content,
    .featured-tournament-content,
    .featured-guide-content,
    .host-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-content {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .tournaments-grid,
    .guides-container,
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline:before {
        left: 40px;
    }
    
    .timeline-dot {
        left: 40px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--dark-color);
        padding: 5rem 2rem;
        transition: var(--transition);
        z-index: 1001;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    nav ul li {
        margin-left: 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1002;
    }
    
    .grid-2,
    .tournaments-grid,
    .guides-container,
    .video-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-controls {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 1rem;
    }
    
    .footer-links a {
        margin: 0 0.75rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        border-radius: 5px;
        width: 100%;
    }
    
    .request-form {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .quote-box {
        padding: 1.5rem;
    }
    
    .quote-box p {
        font-size: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}
