:root {
    --primary-color: #800000; /* Resmi Bordo */
    --secondary-color: #6AB2E7; /* Resmi Gök Mavi */
    --accent-color: #600000; /* Koyu Bordo */
    --text-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --card-bg: #ffffff;
    --header-bg: #ffffff;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --text-color: #f4f4f4;
    --light-bg: #0a0a0a;
    --white: #151515;
    --card-bg: #1e1e1e;
    --header-bg: #111111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: background-color 0.3s, color 0.3s;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

body::before {
    content: "";
    position: fixed;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('fotoğraf/background.jpg') center/cover no-repeat;
    filter: blur(6px);
    z-index: -100;
}

/* Dark Mode Toggle */
.theme-switch {
    background: #f4f4f4;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

[data-theme="dark"] .theme-switch {
    background: #222;
    color: #ffcc00;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: none;
    z-index: 20000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

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

.auth-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.auth-tab {
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s;
}

.auth-tab.active {
    opacity: 1;
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Poll Widget */
.poll-widget {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.poll-option {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0,0,0,0.02);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

[data-theme="dark"] .poll-option {
    background: rgba(255,255,255,0.02);
}

.poll-option:hover {
    background: rgba(106, 178, 231, 0.1);
    border-color: var(--secondary-color);
    transform: translateX(5px);
}

.poll-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.poll-btn-vote {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s;
}

.poll-option:hover .poll-btn-vote {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.poll-option-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-color);
}

.poll-option-info span {
    color: var(--text-color);
}

.poll-bar-bg {
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

[data-theme="dark"] .poll-bar-bg {
    background: #333;
}

.poll-bar-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 1s ease-in-out;
}

/* Weather Widget */
.weather-widget {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    background: rgba(0,0,0,0.05);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

[data-theme="dark"] .weather-widget {
    background: rgba(255,255,255,0.05);
}

.weather-icon {
    color: #ffcc00;
    font-size: 16px;
}

/* Header V2 Update for Dark Mode */
header {
    background: var(--header-bg);
    color: var(--text-color);
}

.nav-v2 ul li a {
    color: var(--text-color);
}

.dropdown-menu {
    background: var(--card-bg);
}

.dropdown-menu li a {
    color: var(--text-color) !important;
}

.dropdown-menu li a:hover {
    background: rgba(128, 0, 0, 0.1);
}

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

/* Page Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10001;
}

.progress-bar {
    height: 100%;
    background: var(--secondary-color);
    width: 0%;
    transition: width 0.2s;
}

/* Breaking News Ticker Modernized */
.breaking-news-ticker {
    background: linear-gradient(90deg, #0b0b0b, #000 45%, #0b0b0b);
    color: white;
    height: 48px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.ticker-flex {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.ticker-label {
    background: var(--primary-color);
    color: white;
    padding: 0 26px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    box-shadow: 6px 0 18px rgba(0,0,0,0.35);
}

.ticker-content-wrapper {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 14px;
    position: relative;
}

.ticker-content-wrapper::before,
.ticker-content-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 42px;
    pointer-events: none;
    z-index: 1;
}

.ticker-content-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.95), rgba(0,0,0,0));
}

.ticker-content-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.95), rgba(0,0,0,0));
}

.ticker-items-horizontal {
    display: flex;
    gap: 42px;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.ticker-items-horizontal:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.95;
}

.ticker-item::after {
    content: "•";
    color: var(--secondary-color);
    font-weight: 900;
    margin-left: 28px;
    opacity: 0.9;
}

.ticker-controls {
    display: flex;
    gap: 6px;
    height: 100%;
    z-index: 2;
    background: transparent;
    padding: 0 10px 0 8px;
    align-items: center;
}

.ticker-controls button {
    background: rgba(255,255,255,0.08);
    border: none;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.ticker-controls button:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
}

.ticker-controls .weather-widget {
    background: rgba(255,255,255,0.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

@media (max-width: 820px) {
    .ticker-controls .weather-widget {
        display: none;
    }
    .ticker-label {
        padding: 0 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-items-horizontal {
        animation: none;
    }
}

/* Dropdown Menus */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 12px 20px !important;
    display: block !important;
    font-size: 12px !important;
    color: #444 !important;
    font-weight: 600 !important;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: #f8f8f8;
    color: var(--primary-color) !important;
    padding-left: 25px !important;
}

/* Next Match Widget */
.next-match-section {
    background: white;
    padding: 40px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.next-match-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.match-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 150px;
}

.match-team img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.match-team span {
    font-weight: 800;
    font-size: 16px;
    color: var(--primary-color);
    text-align: center;
}

.match-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.vs-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    font-size: 18px;
    border: 4px solid var(--secondary-color);
}

.countdown {
    display: flex;
    gap: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
}

.countdown-item span:last-child {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: #999;
}

/* Quote Section */
.quote-section {
    background: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.quote-box {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px;
}

.quote-box i {
    font-size: 40px;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.quote-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 20px;
}

.quote-author {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

#privacyModal .modal-content {
    max-width: 900px;
    max-height: 80vh;
    overflow: auto;
    padding: 30px;
}

#privacyModal .auth-tabs {
    flex-wrap: wrap;
    gap: 12px;
}

#privacyModal .auth-tab {
    font-size: 16px;
}

.privacy-tab {
    line-height: 1.6;
    font-size: 14px;
}

.privacy-tab h4 {
    font-size: 14px;
}

.privacy-tab ul {
    margin: 8px 0 0 18px;
}

.quote-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.quote-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: quoteMarqueeScroll 35s linear infinite;
}

.quote-marquee:hover .quote-marquee-track {
    animation-play-state: paused;
}

.quote-marquee-item {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    white-space: nowrap;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
}

.quote-marquee-sep {
    opacity: 0.6;
    font-style: normal;
    font-weight: 800;
}

.quote-marquee-author {
    font-style: normal;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    opacity: 0.9;
}

@keyframes quoteMarqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .quote-marquee-track {
        animation: none;
    }
}

/* Header V2 Layout Update */
header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 10000;
}

.header-container-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.6px;
    line-height: 1.15;
}

.nav-v2 ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-v2 ul li a {
    color: #333;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-v2 ul li a i {
    font-size: 10px;
    opacity: 0.5;
}

.nav-v2 ul li a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-apply-v2 {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 12px;
    text-decoration: none;
    transition: transform 0.3s;
    white-space: nowrap;
}

.btn-apply-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 0, 0, 0.3);
}

.search-trigger {
    background: #f4f4f4;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: #666;
    transition: all 0.3s;
}

.search-trigger:hover {
    background: var(--secondary-color);
    color: white;
}

/* Hero Section - Yeni Arka Plan */
.hero {
    background: linear-gradient(rgba(128, 0, 0, 0.6), rgba(0, 76, 140, 0.6)), url('fotoğraf/background.jpg') center/cover;
    height: 450px;
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 50px;
    border-bottom: 10px solid var(--primary-color);
}

.featured-card {
    max-width: 700px;
}

.badge {
    background-color: var(--primary-color);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 12px;
    margin-bottom: 15px;
}

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

.date {
    font-size: 13px;
    color: #ccc;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.category {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 2px 8px;
    font-size: 11px;
    border-radius: 3px;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.news-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Load More */
.load-more {
    text-align: center;
    margin-bottom: 60px;
}

.load-more button {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.load-more button:hover {
    background: var(--primary-color);
    color: white;
}

/* Footer Yenilenmiş Tasarım */
footer {
    background: var(--primary-color);
    color: white;
    padding: 80px 0 20px;
    border-top: 5px solid var(--secondary-color);
    position: relative;
    z-index: 1;
}

/* Footer - Yeni Arka Plan */
.footer-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(128, 0, 0, 0.9), rgba(128, 0, 0, 0.9)), url('input_file_0.png') center/cover;
    opacity: 1; /* Artık tamamen görünebilir */
    z-index: -1;
}

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

.footer-section h3 {
    margin-bottom: 25px;
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 900;
}

.footer-section h4 small {
    color: #ccc;
    font-size: 11px;
}

.footer-section .widget-post {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-section .widget-post h4 a {
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

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

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

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

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

/* Bülten Formu Düzenleme */
.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 15px;
    max-width: 350px;
}

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

.newsletter-form button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 900;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: white;
}

.footer-social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-social-links a {
    color: white;
    font-size: 22px;
    transition: color 0.3s;
}

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

/* Static Page Styles */
.page-content {
    background: white;
    padding: 40px;
    margin-top: 20px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.content-text h3 {
    color: var(--secondary-color);
    margin: 20px 0 10px;
}

.content-text p {
    margin-bottom: 15px;
}

.manifesto-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid var(--primary-color);
}

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

.region {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
}

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

.region ul {
    list-style: none;
}

.region ul li {
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.region ul li:last-child {
    border-bottom: none;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(123, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay span {
    color: white;
    font-weight: bold;
    font-size: 18px;
}

/* Form Styles */
.apply-form {
    max-width: 600px;
    margin-top: 30px;
}

.apply-form--member {
    max-width: 860px;
    margin: 28px auto 0;
    padding: 26px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    background: var(--card-bg);
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.apply-form--member .apply-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.apply-form--member .form-group {
    margin-bottom: 0;
}

.apply-form--member .form-group--full {
    grid-column: 1 / -1;
}

.apply-form--member .form-group label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: var(--text-color);
    opacity: 0.9;
}

.apply-form--member .form-group input,
.apply-form--member .form-group textarea {
    border-radius: 12px;
    padding: 14px 14px;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(0,0,0,0.02);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s, background 0.2s;
}

[data-theme="dark"] .apply-form--member .form-group input,
[data-theme="dark"] .apply-form--member .form-group textarea {
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
}

.apply-form--member .form-group input:focus,
.apply-form--member .form-group textarea:focus {
    outline: none;
    border-color: rgba(106, 178, 231, 0.9);
    box-shadow: 0 0 0 4px rgba(106, 178, 231, 0.18);
    background: rgba(255,255,255,0.06);
}

[data-theme="dark"] .apply-form--member .form-group input:focus,
[data-theme="dark"] .apply-form--member .form-group textarea:focus {
    background: rgba(255,255,255,0.06);
}

.apply-form--member .form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.apply-form--member .btn-submit {
    margin-top: 18px;
    border-radius: 12px;
    height: 52px;
    font-size: 14px;
    letter-spacing: 0.8px;
    box-shadow: 0 10px 26px rgba(128, 0, 0, 0.25);
    transition: transform 0.2s, background 0.3s, box-shadow 0.2s;
}

.apply-form--member .btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(128, 0, 0, 0.3);
}

.form-success {
    display: none;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(40, 167, 69, 0.12);
    border: 1px solid rgba(40, 167, 69, 0.25);
    color: #155724;
    font-weight: 600;
    line-height: 1.45;
}

[data-theme="dark"] .form-success {
    color: #b9f6c8;
    background: rgba(40, 167, 69, 0.12);
    border-color: rgba(40, 167, 69, 0.22);
}

.form-success i {
    margin-right: 10px;
    color: rgba(40, 167, 69, 0.9);
}

.form-error {
    display: none;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(220, 53, 69, 0.12);
    border: 1px solid rgba(220, 53, 69, 0.25);
    color: #7a1a22;
    font-weight: 600;
    line-height: 1.45;
}

[data-theme="dark"] .form-error {
    color: #ffb7bf;
    background: rgba(220, 53, 69, 0.12);
    border-color: rgba(220, 53, 69, 0.22);
}

@media (max-width: 760px) {
    .apply-form--member {
        padding: 18px;
        border-radius: 14px;
    }
    .apply-form--member .apply-form-grid {
        grid-template-columns: 1fr;
    }
}

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

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

/* Gallery Categories */
.gallery-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cat-btn {
    padding: 8px 18px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.video-item {
    background: #000;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(45deg, #222, #444);
}

.video-placeholder i {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 5px;
}

#caption {
    color: white;
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    transition: box-shadow 0.3s;
}

.team-member:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-img i {
    font-size: 80px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-member p {
    font-size: 13px;
    color: #777;
}

/* Lyrics Grid */
.lyrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.lyrics-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.lyrics-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.lyrics-card p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

/* News Detail */
.news-header {
    margin-bottom: 30px;
}

.news-header h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin: 15px 0;
}

.news-meta {
    font-size: 14px;
    color: #888;
}

.news-meta span {
    margin-right: 20px;
}

.news-featured-img {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.news-featured-img img {
    width: 100%;
    display: block;
}

.news-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.news-text p {
    margin-bottom: 20px;
}

.news-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.share-links a {
    font-size: 20px;
    margin-left: 15px;
    color: var(--secondary-color);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 30px;
}

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

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.social-box {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.social-box h3 {
    margin-bottom: 15px;
}

/* Sidebar Styles */
.news-with-sidebar {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.widget-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f4f4f4;
}

.widget-post:last-child {
    border-bottom: none;
}

.widget-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

.widget-post h4 {
    font-size: 14px;
    line-height: 1.4;
}

.widget-post h4 a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.widget-post h4 a:hover {
    color: var(--primary-color);
}

/* Header Search */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    position: relative;
}

.search-container input {
    padding: 8px 35px 8px 15px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 13px;
    width: 150px;
    transition: width 0.3s;
}

.search-container input:focus {
    width: 200px;
    outline: none;
    border-color: var(--secondary-color);
}

.search-container i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3000;
}

.cookie-content p {
    font-size: 13px;
    margin: 0;
}

.cookie-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* 404 Page */
.error-page {
    text-align: center;
    padding: 100px 0;
}

.error-page h1 {
    font-size: 120px;
    color: var(--primary-color);
}

.error-page p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Hero Container */
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

/* Live Score Widget */
.live-score-widget {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid var(--secondary-color);
    padding: 20px;
    border-radius: 15px;
    width: 280px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.widget-header {
    font-size: 12px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ff0000;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.score-body {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 15px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.team img {
    border-radius: 50%;
    background: white;
    padding: 2px;
}

.score {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.match-info {
    text-align: center;
    font-size: 11px;
    color: #ccc;
}

/* Custom Banner Section */
.custom-banner {
    background-color: var(--accent-color);
    color: white;
    padding: 20px 0;
    margin-bottom: 50px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.banner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.banner-title {
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
}

.banner-badge {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 14px;
    margin-left: 15px;
}

.banner-tags {
    font-size: 14px;
    font-weight: 600;
    margin-right: 30px;
    color: var(--white);
}

.banner-btn {
    background-color: var(--accent-color);
    color: white;
    border: 2px solid white;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 5px;
    transition: all 0.3s;
}

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

/* Trophies Section */
.trophies-section {
    background: #000;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.trophy-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

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

.trophy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s;
}

.trophy-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}

.trophy-item i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.trophy-item .count {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 5px;
}

.trophy-item .name {
    font-size: 12px;
    font-weight: 600;
    color: #ccc;
    text-transform: uppercase;
}

/* Social Strip - Havalı ve Yuvarlak Köşeli */
.social-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 60px 20px;
    background: #050505; /* Tam siyah yerine çok hafif dokulu */
    overflow: hidden;
}

.social-block {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    text-decoration: none;
    height: 120px;
    border-radius: 25px; /* Köşeleri yuvarlak yaptık */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    opacity: 0; /* Animasyon başlangıcı için */
    transform: translateY(30px); /* Animasyon başlangıcı için */
}

.social-block.reveal {
    opacity: 1;
    transform: translateY(0);
}

.social-block:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.twitter { background: #1DA1F2; }
.linkedin { background: #0077b5; }
.youtube { background: #FF0000; }
.facebook { background: #3b5998; }

/* Secondary Banner Section */
.secondary-banner {
    margin: 60px 0;
    text-align: center;
}

.banner-content-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.banner-img-main {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.banner-content-box:hover .banner-img-main {
    transform: scale(1.02);
}

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

.banner-overlay-text h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.banner-overlay-text p {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

/* Stats & Match Center Section */
.stats-center {
    padding: 60px 0;
    background: #fdfdfd;
}

.stats-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.widget-box {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    padding: 25px;
    border-top: 4px solid var(--primary-color);
    color: var(--text-color);
}

.widget-title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.widget-title i {
    color: var(--secondary-color);
}

/* Standings Table */
.standings-table {
    width: 100%;
    border-collapse: collapse;
}

.standings-table th {
    text-align: left;
    font-size: 11px;
    color: #999;
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
}

.standings-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #f9f9f9;
    font-size: 13px;
    font-weight: 600;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-logo-small {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.highlight-row {
    background: rgba(128, 0, 0, 0.05);
}

.highlight-row td:first-child {
    border-left: 4px solid var(--primary-color);
}

/* Fixture Widget */
.fixture-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.match-item-small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 12px;
}

.match-team-small {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.match-team-small:last-child {
    justify-content: flex-end;
}

.match-score-small {
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 900;
    min-width: 45px;
    text-align: center;
    margin: 0 10px;
}

/* Dynamic Gallery */
.dynamic-gallery-section {
    padding: 60px 0;
    background: #000;
    color: white;
}

.dynamic-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-card {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.gallery-overlay h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.gallery-overlay span {
    font-size: 11px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
}

/* Responsive Stats */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid, .news-with-sidebar {
        grid-template-columns: 1fr;
    }
    .hero-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .live-score-widget {
        display: none;
    }
    .social-strip {
        grid-template-columns: repeat(3, 1fr);
        height: auto;
    }
    .social-block {
        height: 100px;
    }
    .banner-overlay-text h2 {
        font-size: 24px;
    }
    .banner-overlay-text p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    nav.active {
        display: block;
    }
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    nav ul li {
        margin: 10px 0;
    }
    .hero h2 {
        font-size: 24px;
    }
    .page-content {
        padding: 20px;
    }
    .lightbox-content {
        max-width: 95%;
    }
    .news-header h1 {
        font-size: 24px;
    }
    .search-container {
        display: none;
    }
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* MARSLAR CSS */
.lyrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px; }
.lyrics-card { background: white; padding: 20px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); display: flex; flex-direction: column; }
.lyrics-card h3 { color: var(--primary-color); margin-top: 0; margin-bottom: 15px; font-size: 20px; }
.video-wrapper { position: relative; width: 100%; aspect-ratio: 16 / 9; margin-bottom: 20px; border-radius: 8px; overflow: hidden; background: #000; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* Media Grids */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.logo-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #eaeaea;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.logo-card:hover { transform: translateY(-5px); }
.logo-card img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}
.btn-download {
    display: inline-block;
    background: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 15px;
}
.btn-download:hover { background: var(--secondary-color); }

.wallpaper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.wp-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.wp-card.masaustu img { height: 200px; }
.wp-card.mobil img { height: 380px; }

.wp-card:hover { transform: translateY(-5px); }
.wp-card img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.wp-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}
.wp-card:hover .wp-overlay { opacity: 1; }
.wp-overlay h4 { color: white; margin: 0; font-size: 16px; }
.wp-overlay span { color: var(--secondary-color); font-size: 12px; font-weight: bold; text-transform: uppercase; }
