:root {
    /* Default Dark Theme Variables */
    --bg-body: #000;
    --bg-pattern-opacity: 0.02;
    --bg-nav: rgba(0, 0, 0, 0.95);
    --bg-nav-scrolled: rgba(0, 0, 0, 0.98);
    --nav-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --nav-border: #222;
    --text-main: #fff;
    --text-muted: #999;
    /* Nav links,hero p */
    --text-secondary: #666;
    /* Subtitles,labels */
    --text-light-gray: #ccc;
    /* Thinker bio,translation */
    --text-dim: #444;
    /* Footer desc */
    --text-darker: #888;
    /* Footer links */
    --text-inverse: #000;
    --border-color: #1a1a1a;
    --border-light: #444;
    --border-hover: #333;
    --bg-card-1: #0a0a0a;
    --bg-card-2: #000;
    /* For gradients */
    --bg-section-dark-1: #000;
    --bg-section-dark-2: #0a0a0a;
    --accent-primary: #fff;
    /* Buttons,icons bg */
    --accent-primary-text: #000;
    --accent-secondary-border: #444;
    --accent-secondary-hover-bg: #1a1a1a;
    --accent-secondary-hover-border: #666;
    --input-bg: #000;
    --input-border: #1a1a1a;
    --input-focus-bg: #0a0a0a;
    --input-focus-border: #333;
    --hero-glow: rgba(40, 40, 40, 0.3);
    --hero-badge-1: #1a1a1a;
    --hero-badge-2: #000;
    --timeline-line: #333;
    --timeline-dot-bg: #fff;
    --timeline-dot-border: #000;
    --timeline-content-bg-1: #111;
    --timeline-content-bg-2: #000;
    --timeline-content-border: #333;
    --timeline-year-color: #fff;
    --timeline-year-stroke: #000;
    --gallery-overlay-start: #000;
    --gallery-overlay-end: transparent;
    --footer-bg-1: #000;
    --footer-bg-2: #0a0a0a;
    /* Announcement Variables (Dark Mode) - Neutral/Card Style */
    --announcement-bg-1: var(--bg-card-1);
    --announcement-bg-2: var(--bg-card-2);
    --announcement-border: var(--border-color);
    --announcement-text: var(--text-main);
    --announcement-icon-bg: var(--accent-primary);
    --announcement-icon-color: var(--accent-primary-text);
}

.light-theme {
    --bg-body: #f8f9fa;
    --bg-pattern-opacity: 0.05;
    --bg-nav: rgba(255, 255, 255, 0.95);
    --bg-nav-scrolled: rgba(255, 255, 255, 0.98);
    --nav-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --nav-border: #ced4da;
    --text-main: #212529;
    --text-muted: #495057;
    --text-secondary: #6c757d;
    --text-light-gray: #343a40;
    --text-dim: #adb5bd;
    --text-darker: #495057;
    --text-inverse: #fff;
    --border-color: #ced4da;
    /* Darker for visibility */
    --border-light: #adb5bd;
    --border-hover: #6c757d;
    --bg-card-1: #ffffff;
    --bg-card-2: #f8f9fa;
    --bg-section-dark-1: #f8f9fa;
    --bg-section-dark-2: #e9ecef;
    --accent-primary: #000;
    --accent-primary-text: #fff;
    --accent-secondary-border: #ced4da;
    --accent-secondary-hover-bg: #e9ecef;
    --accent-secondary-hover-border: #adb5bd;
    --input-bg: #fff;
    --input-border: #ced4da;
    --input-focus-bg: #fff;
    --input-focus-border: #adb5bd;
    --hero-glow: rgba(0, 0, 0, 0.05);
    --hero-badge-1: #f8f9fa;
    --hero-badge-2: #e9ecef;
    --timeline-line: #dee2e6;
    --timeline-dot-bg: #000;
    --timeline-dot-border: #fff;
    --timeline-content-bg-1: #ffffff;
    --timeline-content-bg-2: #f8f9fa;
    --timeline-content-border: #ced4da;
    --timeline-year-color: #000;
    --timeline-year-stroke: #fff;
    --gallery-overlay-start: #000;
    /* Keep overlay dark for text contrast on images */
    --gallery-overlay-end: transparent;
    --footer-bg-1: #f8f9fa;
    --footer-bg-2: #e9ecef;
    /* Announcement Variables (Light Mode) - Neutral/Card Style */
    --announcement-bg-1: var(--bg-card-1);
    --announcement-bg-2: var(--bg-card-2);
    --announcement-border: var(--border-color);
    --announcement-text: var(--text-main);
    --announcement-icon-bg: var(--accent-primary);
    --announcement-icon-color: var(--accent-primary-text);
}

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

body {
    font-family: 'Oswald', sans-serif;
    background: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
}

a {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

/* Wolf Pattern Background */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: var(--bg-pattern-opacity);
    pointer-events: none;
    background-image: url("../images/turan_wolf.png");
    background-size: 150px auto;
    background-repeat: repeat;
    z-index: -1;
    transition: opacity 0.3s;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--nav-border);
    padding: 1.2rem 2rem;
    z-index: 1000;
    transition: all 0.3s;
}

nav.scrolled {
    background: var(--bg-nav-scrolled);
    box-shadow: var(--nav-shadow);
    padding: 0.8rem 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

nav.scrolled .logo {
    width: 40px;
    height: 40px;
}

.logo:hover {
    transform: scale(1.1);
}

.logo svg {
    width: 30px;
    height: 30px;
    fill: var(--text-main);
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.logo-text p {
    font-size: 0.65rem;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 2px;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.8rem 0.8rem;
    /* Reduced horizontal padding */
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    /* Slightly smaller font */
    letter-spacing: 0.5px;
    /* Reduced letter spacing */
    transition: all 0.3s;
    white-space: nowrap;
    /* Prevent individual text wrapping */
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--text-main);
    color: var(--bg-body);
}

.light-theme .nav-links a:hover,
.light-theme .nav-links a.active {
    background: var(--text-main);
    color: var(--bg-body);
}

.mobile-menu {
    display: none;
    background: var(--accent-primary);
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    color: var(--accent-primary-text);
}

/* Theme Toggle Floating Button */
.theme-toggle-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-card-1);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.5rem;
}

.theme-toggle-fab:hover {
    transform: scale(1.1) rotate(15deg);
    border-color: var(--text-main);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.theme-toggle-fab:active {
    transform: scale(0.95);
}

/* Ensure visibility on light mode */
.light-theme .theme-toggle-fab {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.light-theme .theme-toggle-fab:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, var(--hero-glow) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--hero-badge-1) 0%, var(--hero-badge-2) 100%);
    border: 2px solid var(--border-hover);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero h2 .gradient-text {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 600;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--accent-primary-text);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--accent-secondary-border);
}

.btn-secondary:hover {
    background: var(--accent-secondary-hover-bg);
    border-color: var(--accent-secondary-hover-border);
    transform: translateY(-3px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--bg-card-1) 0%, var(--bg-card-2) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    border-color: var(--border-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Wolf Illustration */
.wolf-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wolf-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--hero-glow) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.wolf-svg {
    position: relative;
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.1));
}

/* Changed to black shadow for light mode visibility */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Old+Turkic&family=Oswald:wght@200..700&display=swap');

.gokturk-text .symbol::before {
    content: "𐱅𐰭𐰼𐰃";
    display: block;
    direction: rtl;
    unicode-bidi: bidi-override;
}

.gokturk-text .symbol {
    font-size: 4rem;
    letter-spacing: 0.5rem;
    color: var(--text-main);
    font-family: 'Noto Sans Old Turkic', sans-serif;
}

.gokturk-text .translation {
    font-size: 0.9rem;
    color: var(--text-light-gray);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.5rem;
}

/* Quote Section */
.quote-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-card-1) 0%, var(--bg-card-2) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -100px;
    left: 50px;
    font-size: 30rem;
    font-weight: 900;
    color: var(--text-main);
    opacity: 0.05;
    font-family: serif;
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.quote-text {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-main);
}

.quote-author {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.quote-author::before {
    content: '— ';
}

/* Section Styles */
section {
    padding: 6rem 2rem;
    position: relative;
}

.section-dark {
    background: linear-gradient(180deg, var(--bg-section-dark-1) 0%, var(--bg-section-dark-2) 50%, var(--bg-section-dark-1) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    stroke: var(--border-hover);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Thinkers Section */
.thinkers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.thinker-card {
    background: linear-gradient(135deg, var(--bg-card-1) 0%, var(--bg-card-2) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.4s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.thinker-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thinker-image {
    height: 300px;
    background: linear-gradient(135deg, var(--bg-card-1) 0%, var(--bg-card-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.thinker-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--hero-glow) 0%, transparent 70%);
}

.thinker-portrait {
    font-size: 8rem;
    opacity: 0.3;
}

.thinker-content {
    padding: 2.5rem;
}

.thinker-name {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.thinker-years {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.thinker-bio {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.thinker-quote {
    background: var(--bg-card-1);
    padding: 1.5rem;
    border-left: 4px solid var(--border-hover);
    border-radius: 8px;
    font-style: italic;
    color: var(--text-light-gray);
    margin-top: 1.5rem;
    border: 1px solid var(--border-color);
    border-left-width: 4px;
}

.thinker-quote::before {
    content: '"';
    font-size: 2rem;
    color: var(--border-hover);
    font-weight: 900;
}

/* Timeline Horizontal Scroll */
.timeline {
    position: relative;
    max-width: 100%;
    height: 500px;
    margin: 4rem 0;
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 2rem;
    align-items: center;
    scrollbar-width: thin;
    scrollbar-color: var(--text-main) var(--border-color);
}

.timeline::-webkit-scrollbar {
    height: 8px;
}

.timeline::-webkit-scrollbar-track {
    background: var(--border-color);
}

.timeline::-webkit-scrollbar-thumb {
    background-color: var(--text-main);
    border-radius: 4px;
}

.timeline-item {
    flex: 0 0 320px;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    justify-items: center;
    position: relative;
    padding: 0 1rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--timeline-line);
    z-index: 1;
    transform: translateY(-50%);
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--timeline-dot-bg);
    border: 3px solid var(--timeline-dot-border);
    border-radius: 50%;
    z-index: 2;
    grid-row: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.timeline-content {
    background: linear-gradient(135deg, var(--timeline-content-bg-1) 0%, var(--timeline-content-bg-2) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--timeline-content-border);
    width: 100%;
    position: relative;
    transition: all 0.3s;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content:hover {
    border-color: var(--text-main);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 2rem;
    background: linear-gradient(to bottom, var(--timeline-line), transparent);
    transform: translateX(-50%);
    opacity: 0.8;
}

.timeline-year {
    font-size: 5rem;
    font-weight: 900;
    color: var(--timeline-year-color);
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    -webkit-text-stroke: 3px var(--timeline-year-stroke);
    text-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
    z-index: 5;
    line-height: 1;
    letter-spacing: -2px;
    transition: all 0.3s;
}

.timeline-item:hover .timeline-year {
    color: var(--timeline-year-color);
    transform: scale(1.1) rotate(-2deg);
    text-shadow: 10px 10px 0px rgba(0, 0, 0, 0.2);
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    text-transform: uppercase;
}

.timeline-desc {
    font-size: 0.85rem;
    color: var(--text-darker);
    line-height: 1.5;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-row: 1;
    align-self: end;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    bottom: -2rem;
    top: auto;
    background: linear-gradient(to top, var(--timeline-line), transparent);
}

.timeline-item:nth-child(odd) .timeline-year {
    grid-row: 3;
    align-self: start;
    margin-top: 1rem;
}

.timeline-item:nth-child(even) .timeline-year {
    grid-row: 1;
    align-self: end;
    margin-bottom: 1rem;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-row: 3;
    align-self: start;
    margin-top: 2rem;
}

.timeline-item:nth-child(even) .timeline-content::before {
    top: -2rem;
    bottom: auto;
    background: linear-gradient(to bottom, var(--timeline-line), transparent);
}

/* Timeline Carousel (Alternative/Legacy) */
.timeline-carousel {
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.timeline-card {
    background: linear-gradient(135deg, var(--bg-card-1) 0%, var(--bg-card-2) 100%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    text-align: center;
    height: 100%;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.timeline-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--text-main), transparent);
    opacity: 0.2;
}

.timeline-content-box {
    position: relative;
    z-index: 2;
}

.timeline-carousel .owl-nav button.owl-prev,
.timeline-carousel .owl-nav button.owl-next {
    background: var(--bg-nav) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-main) !important;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: linear-gradient(135deg, var(--bg-card-1) 0%, var(--bg-card-2) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--hero-glow) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

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

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-card-1) 0%, var(--bg-card-2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid var(--border-hover);
    transition: all 0.3s;
}

.card:hover .card-icon {
    transform: scale(1.1);
    border-color: var(--border-light);
}

.card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Events */
/* Events */
.event-card {
    background: linear-gradient(135deg, var(--bg-card-1) 0%, var(--bg-card-2) 100%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 3px solid var(--border-color);
    transition: all 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.event-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.event-date-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 80px;
    background: var(--accent-primary);
    color: var(--accent-primary-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 20px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    font-family: 'Oswald', sans-serif;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.event-month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-header-badges {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.event-type-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--text-secondary);
    backdrop-filter: blur(5px);
}

.light-theme .event-type-badge {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--accent-secondary-border);
}

.event-content-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 1rem;
}

.event-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    min-height: 3em;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    align-items: center;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.event-detail i {
    color: var(--accent-primary);
    border: 1px solid var(--border-color);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    background: var(--bg-card-2);
}

.small-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.event-btn {
    border-radius: 12px;
    padding: 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-card-1) 0%, var(--bg-card-2) 100%);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item:hover {
    border-color: var(--border-hover);
    transform: scale(1.05);
}

.gallery-item svg {
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--gallery-overlay-start) 0%, var(--gallery-overlay-end) 100%);
    padding: 2rem;
    transform: translateY(0);
}

.gallery-title {
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #fff !important;
}

.view-all-link {
    font-size: 0.9rem;
    color: #fff;
    text-decoration: underline;
    margin-left: 15px;
    font-weight: 600;
    vertical-align: middle;
    text-shadow: none;
    letter-spacing: normal;
    text-transform: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.view-all-link:hover {
    opacity: 1;
    color: #fff;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-card-1) 0%, var(--bg-card-2) 100%);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    border-color: var(--border-hover);
    background: linear-gradient(135deg, var(--bg-card-1) 0%, var(--bg-card-1) 100%);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-primary);
    color: var(--accent-primary-text);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.contact-value {
    font-size: 1.4rem;
    font-weight: 900;
}

.contact-link {
    color: var(--text-main);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-link:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 48px;
    height: 48px;
    color: var(--text-main);
    border-radius: 12px;
    border: 1px dashed var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    transform: scale(1.1);
    border-color: var(--text-main);
}

/* Form */
.contact-form {
    background: linear-gradient(135deg, var(--bg-card-1) 0%, var(--bg-card-2) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.form-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: var(--input-bg);
    border: 2px solid var(--input-border);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--input-focus-border);
    background: var(--input-focus-bg);
}

.form-textarea {
    resize: none;
    min-height: 150px;
}

.form-submit {
    width: 100%;
    padding: 1.5rem;
    background: var(--accent-primary);
    color: var(--accent-primary-text);
    border: none;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* FAQ */
.faq-item {
    background: linear-gradient(135deg, var(--bg-card-1) 0%, var(--bg-card-2) 100%);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

/* .faq-toggle styles moved to bottom of file for override/grouping */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    color: var(--text-muted);
    padding: 0 2rem;
    font-weight: 600;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--footer-bg-1) 0%, var(--footer-bg-2) 100%);
    border-top: 1px solid var(--border-color);
    padding: 2rem 1rem 1rem;
    position: relative;
}

.footer-wolves {
    position: absolute;
    opacity: 0.1;
    width: 50px;
}

.footer-wolves.left {
    top: 1rem;
    left: 1rem;
}

.footer-wolves.right {
    bottom: 1rem;
    right: 1rem;
}

.footer-wolves.right {
    bottom: 1rem;
    right: 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3 {
    font-size: 0.95rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
}

.footer-section h3 {
    font-size: 0.95rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: var(--text-darker);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

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

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    font-style: italic;
    margin-top: 0.5rem;
}

.footer-desc {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-darker);
}

.footer-subtext {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    color: var(--text-dark);
}

.newsletter-input {
    width: 100%;
    padding: 0.6rem 1rem;
    background: var(--bg-card-1);
    border: 1px solid var(--border-color);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.newsletter-btn {
    padding: 0.6rem;
    font-size: 0.7rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    text-align: center;
}

.footer-copyright {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
}

/* Responsive */
@media (max-width:968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 3rem;
    }

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

    .cards-grid,
    .thinkers-grid {
        grid-template-columns: 1fr;
    }

    .quote-text {
        font-size: 1.8rem;
    }
}

@media (max-width:640px) {
    .stats {
        grid-template-columns: 1fr;
    }

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

@media (max-width:968px) {
    .hero h2 {
        font-size: 3rem !important;
    }

    .section-title {
        font-size: 2.5rem !important;
    }
}

@media (max-width:768px) {
    .hero h2 {
        font-size: 2rem !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .quote-text {
        font-size: 1.4rem;
    }

    .timeline-item {
        flex: 0 0 300px;
    }
}

/* Owl Carousel Customizations */
.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.owl-carousel .item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.events-carousel .owl-nav button.owl-prev,
.events-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(128, 128, 128, 0.1) !important;
    border-radius: 50%;
    color: var(--text-main) !important;
    font-size: 1.5rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 100;
    backdrop-filter: blur(5px);
}

.events-carousel .owl-nav button.owl-prev:hover,
.events-carousel .owl-nav button.owl-next:hover {
    background: rgba(128, 128, 128, 0.3) !important;
}

.events-carousel .owl-nav button.owl-prev {
    left: -60px;
}

.events-carousel .owl-nav button.owl-next {
    right: -60px;
}

.events-carousel .owl-dots {
    display: none !important;
}

@media (max-width:768px) {
    .events-carousel .owl-nav button.owl-prev {
        left: -10px;
    }

    .events-carousel .owl-nav button.owl-next {
        right: -10px;
    }
}

/* Utilities & Grid */
.text-center {
    text-align: center !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.g-4 {
    gap: 1.5rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge-flag {
    margin-right: 0.5rem;
}

.hero-wolf-img {
    width: 70%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    display: block;
    margin: 0 auto;
    margin-right: 50px;
    mix-blend-mode: screen;
    opacity: 0.8;
}

.light-theme .hero-wolf-img {
    mix-blend-mode: multiply;
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

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

.activity-icon {
    font-size: 2.5rem;
    color: var(--text-main);
}

.event-card-wrapper {
    margin: 10px;
}

.event-icon {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.btn-full {
    width: 100%;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.card-mb {
    margin-bottom: 1rem;
}

.membership-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.adv-title {
    font-size: 1.2rem;
    font-weight: 900;
}

.adv-icon {
    color: var(--text-main);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    margin-top: 1rem;
    text-transform: uppercase;
}

.captcha-img {
    border-radius: 8px;
}

.captcha-btn {
    padding: 0.5rem;
}

.social-container {
    margin-top: 5px;
}

.social-icon-sm {
    font-size: 1.2rem;
}

.footer-logo-box {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 900;
}

.newsletter-text {
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.captcha-container {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.captcha-container .form-input {
    max-width: 200px;
}

@media (max-width:480px) {
    .captcha-container {
        display: grid;
        grid-template-columns: auto auto;
        /* Image + Refresh Button */
        gap: 10px;
        align-items: center;
        justify-content: start;
    }

    .captcha-container .form-input {
        grid-column: 1 / -1;
        /* Input takes full width below */
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width:992px) {
    .hero h2 {
        font-size: 4rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
}

@media (max-width:768px) {
    .mobile-menu {
        display: block;
        background: transparent;
        color: var(--text-main);
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-nav);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease-in-out;
        z-index: 999;
        pointer-events: none;
        border-bottom: 1px solid var(--nav-border);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        display: block;
        text-align: center;
        font-size: 0.9rem;
    }

    /* Carousel Nav Mobile */
    .events-carousel .owl-nav button.owl-prev,
    .events-carousel .owl-nav button.owl-next,
    .gallery-carousel .owl-nav button.owl-prev,
    .gallery-carousel .owl-nav button.owl-next {
        background: rgba(128, 128, 128, 0.2) !important;
        color: var(--text-main) !important;
    }

    .hero {
        padding-top: 10rem;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero p {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .wolf-container {
        margin-top: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .gokturk-text {
        text-align: center;
        width: 100%;
    }

    .wolf-img {
        margin: 0 auto !important;
        width: 70% !important;
        max-width: 300px;
        opacity: 1 !important;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem !important;
    }

    .contact-form,
    .contact-info {
        width: 100%;
        padding: 0 !important;
    }

    .contact-form {
        padding: 1.2rem !important;
    }

    .contact-item {
        flex-direction: row !important;
        text-align: left !important;
        padding: 1rem !important;
        gap: 1rem !important;
        align-items: center;
        justify-content: start;
    }

    .contact-icon {
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0;
    }

    .contact-icon svg,
    .contact-icon i {
        width: 20px !important;
        height: 20px !important;
        font-size: 1rem !important;
    }

    .contact-label {
        font-size: 0.65rem !important;
        margin-bottom: 0 !important;
    }

    .contact-value,
    .contact-link {
        font-size: 1rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .logo-container {
        justify-content: center;
    }

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

    .social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--border-color);
        border-radius: 50%;
        margin: 0 5px;
        transition: all 0.3s;
        background: var(--bg-card-1);
        color: var(--text-main);
    }

    .social-link:hover {
        border-color: var(--accent-primary);
        background: var(--accent-primary);
        color: var(--accent-primary-text);
    }

    /* Mobile Form Optimization */
    .form-control,
    input,
    select,
    textarea {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.95rem !important;
        height: auto !important;
        min-height: 40px;
    }

    .btn,
    .form-submit {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem !important;
    }

    .form-title {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
        margin-top: 0 !important;
    }

    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }

    .section-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 2rem !important;
    }

    .contact-item {
        padding: 0.8rem !important;
        box-shadow: none !important;
        border: 1px solid var(--border-color);
    }

    /* Membership & FAQ Mobile Fonts */
    .membership-title {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .adv-title {
        font-size: 1rem !important;
    }

    .faq-question {
        font-size: 1rem !important;
        padding: 1.5rem !important;
    }

    /* Mobile Event Card Fixes */
    .event-card {
        padding: 1rem 0.5rem !important;
    }

    .event-date-badge {
        width: 45px !important;
        height: 55px !important;
        border-bottom-right-radius: 12px !important;
    }

    .event-day {
        font-size: 1.1rem !important;
    }

    .event-month {
        font-size: 0.65rem !important;
    }

    .event-type-badge {
        font-size: 0.6rem !important;
        padding: 0.2rem 0.6rem !important;
    }

    .event-header-badges {
        margin-bottom: 1.5rem !important;
    }

    .event-title {
        font-size: 1rem !important;
        min-height: 2.5em !important;
        margin-bottom: 0.8rem !important;
    }

    .event-details {
        gap: 0.4rem !important;
        margin-bottom: 1rem !important;
    }

    .event-detail {
        font-size: 0.75rem !important;
        gap: 0.4rem !important;
    }

    .event-detail i {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.7rem !important;
    }

    .event-btn {
        padding: 0.5rem !important;
        font-size: 0.75rem !important;
    }


}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 90vh;
    max-width: 1400px;
}

.lightbox-media-container {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    justify-content: center;
}

.lightbox-media-container img,
.lightbox-media-container video {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
}

.lightbox-close:hover {
    color: #c8102e;
    text-decoration: none;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    user-select: none;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(200, 16, 46, 0.8);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    margin: 0 auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: auto;
    font-size: 1.1rem;
    font-weight: 500;
}

@media only screen and (max-width:768px) {

    .lightbox-media-container img,
    .lightbox-media-container video {
        max-width: 95vw;
        max-height: 80vh;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 25px;
        padding: 10px;
        width: 45px;
        height: 45px;
        background-color: rgba(0, 0, 0, 0.6);
        top: 50% !important;
        margin-top: -22.5px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
}

/* Gallery Carousel Navigation */
.gallery-carousel .owl-nav button.owl-prev,
.gallery-carousel .owl-nav button.owl-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(128, 128, 128, 0.1) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--text-main) !important;
    z-index: 100 !important;
    backdrop-filter: blur(5px);
}

.gallery-carousel .owl-nav button.owl-prev:hover,
.gallery-carousel .owl-nav button.owl-next:hover {
    background: rgba(128, 128, 128, 0.3) !important;
}

.gallery-carousel .owl-nav button.owl-prev {
    left: -60px !important;
}

.gallery-carousel .owl-nav button.owl-next {
    right: -60px !important;
}

@media (max-width:1300px) {
    .gallery-carousel .owl-nav button.owl-prev {
        left: 10px !important;
    }

    .gallery-carousel .owl-nav button.owl-next {
        right: 10px !important;
    }
}

/* Ad Container Styles */
.ad-container {
    overflow: hidden;
    max-width: 100%;
}

.ad-container script,
.ad-container iframe,
.ad-container ins {
    max-width: 100%;
}

/* Side Ads (Sticky) */
.ad-side-left,
.ad-side-right {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 600px;
    /* Typical Skyscraper height */
    z-index: 900;
    /* Behind navbar (1000) but above content */
    display: none;
    /* Hidden by default for smaller screens */
}

.ad-side-left {
    left: 10px;
}

.ad-side-right {
    right: 10px;
}

/* Only show side ads on very wide screens where they fit */
@media (min-width:1750px) {

    .ad-side-left,
    .ad-side-right {
        display: block;
    }
}

/* ===== ANNOUNCEMENT SECTION ===== */
.announcement-section {
    background: linear-gradient(135deg, var(--announcement-bg-1) 0%, var(--announcement-bg-2) 100%);
    padding: 3rem 2rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--announcement-border);
    border-bottom: 2px solid var(--announcement-border);
}

.announcement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.announcement-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* ALWAYS vertical (Icon top) */
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
    /* Center text */
}

.announcement-icon {
    flex-shrink: 0;
    font-size: 2.5rem;
    color: var(--announcement-icon-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--announcement-icon-bg);
    border: 1px solid var(--border-hover);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: pulse-announcement 3s ease-in-out infinite;
}

.announcement-icon .section-icon {
    margin: 0;
    /* Reset global section-icon margin */
    width: 42px;
    /* Ensure specific size if needed,though inline style exists */
    height: 42px;
    stroke: currentColor;
}

@keyframes pulse-announcement {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.announcement-content {
    color: var(--announcement-text);
    flex: 1;
}

.announcement-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.announcement-text {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    max-width: 800px;
}

/* Responsive */
@media (max-width:768px) {
    .announcement-section {
        padding: 1.5rem 0;
        margin: 2rem 0;
    }

    .announcement-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .announcement-icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }

    .announcement-title {
        font-size: 1.5rem;
    }

    .announcement-text {
        font-size: 0.95rem;
    }
}

@media (max-width:480px) {
    .announcement-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .announcement-title {
        font-size: 1.3rem;
    }

    .announcement-text {
        font-size: 0.9rem;
    }
}

/* FAQ Search & Pagination */
.faq-search-input {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    /* Added bottom margin */
    padding: 1.2rem 1.8rem;
    /* Slightly larger padding */
    border-radius: 30px;
    border: 2px solid var(--border-color);
    background: var(--bg-card-1);
    color: var(--text-main);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: block;
    font-size: 1.1rem;
    /* Slightly larger text */
    font-weight: 600;
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(var(--accent-primary-rgb), 0.1);
    background: var(--bg-card-2);
}

.faq-search-input::placeholder {
    color: var(--text-muted);
    font-weight: 500;
}

#faqPagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
}

#faqPagination .btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
}

/* FAQ Toggle Fix */
.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1;
    /* Force centering */
    padding-bottom: 2px;
    /* Visual optical center adjustment for '+' char */
    transition: all 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--text-main);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--accent-primary);
    color: var(--accent-primary-text);
    padding-bottom: 0;
    /* Reset optical adjustment when rotated x */
    padding-left: 1px;
    /* Visual center for x */
}