/* ==========================================================================
   GEBZE TAYFUNSPOR KULÜBÜ RESMI WEB SITESI STIL DOSYASI (styles.css)
   ========================================================================== */

/* Design Tokens & Core Settings */
:root {
    --primary-red: hsl(346, 65%, 28%); /* Burgundy (Bordo) */
    --primary-red-hover: hsl(346, 70%, 38%);
    --accent-green: hsl(45, 60%, 45%); /* Gold accent */
    --accent-green-light: hsl(45, 60%, 55%);
    
    --bg-dark-900: hsl(220, 20%, 8%);
    --bg-dark-800: hsl(220, 20%, 12%);
    --bg-dark-700: hsl(220, 20%, 16%);
    
    --text-light: hsl(210, 15%, 95%);
    --text-muted: hsl(210, 10%, 65%);
    --white: #ffffff;
    --border-color: rgba(255, 255, 255, 0.08);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.6);
    
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
}

/* Reset & Base Elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark-900);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.text-uppercase { text-transform: uppercase; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

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

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(116, 25, 41, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--bg-dark-900);
    border-color: var(--white);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--border-radius-md);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* Typography Gradient */
.gradient-text {
    background: linear-gradient(135deg, var(--white) 30%, var(--primary-red-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sections Header styles */
.section-header {
    margin-bottom: 48px;
}

.sub-title {
    color: var(--primary-red-hover);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Top Bar Styling */
.top-bar {
    background-color: var(--bg-dark-900);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-muted);
}

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

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--primary-red-hover);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-link:hover {
    color: var(--white);
}

.top-bar-socials {
    display: flex;
    gap: 12px;
    border-left: 1px solid var(--border-color);
    padding-left: 16px;
}

.top-bar-socials a:hover {
    color: var(--primary-red-hover);
}

/* Header & Navigation Styling */
.main-header {
    background-color: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-normal);
}

.main-header.scrolled {
    padding: 12px 0;
    background-color: rgba(10, 10, 12, 0.95);
    box-shadow: var(--shadow-md);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.club-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.club-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.club-name .accent-text {
    color: var(--primary-red-hover);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-light);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition-normal);
}

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

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

.menu-toggle {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: none;
}

/* Mobile Menu Styling */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.mobile-menu-overlay.open .mobile-menu-content {
    transform: translateY(0);
}

.menu-close {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    margin-bottom: 40px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
}

.mobile-logo span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: auto;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--text-light);
}

.mobile-nav-link:hover {
    color: var(--primary-red-hover);
}

.mobile-register-btn {
    margin-top: 32px;
}

/* Hero Section Styling */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: var(--transition-slow);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-content .badge {
    background-color: rgba(116, 25, 41, 0.15);
    border: 1px solid rgba(116, 25, 41, 0.3);
    color: var(--primary-red-hover);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-indicators {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-indicators .indicator {
    width: 32px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.hero-indicators .indicator.active {
    background-color: var(--primary-red);
    width: 48px;
}

/* Stats Section Styling */
.stats-section {
    background-color: var(--bg-dark-800);
    border-bottom: 1px solid var(--border-color);
    padding: 32px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
}

.stat-icon {
    font-size: 32px;
    color: var(--primary-red-hover);
    background-color: rgba(116, 25, 41, 0.1);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
}

/* About Section Styling */
.about-section {
    padding: 96px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.about-text-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-text-content p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    font-size: 16px;
    color: var(--primary-red-hover);
    margin-top: 4px;
}

.feature-text {
    font-size: 15px;
    color: var(--text-light);
}

.feature-text strong {
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

.about-visual {
    position: relative;
}

.image-stack {
    position: relative;
    padding: 20px;
}

.about-img {
    border-radius: var(--border-radius-md);
    width: 100%;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background-color: var(--primary-red);
    border: 2px solid var(--border-color);
    padding: 20px 30px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-light);
}

/* Sub-page Banner Styling (kulubumuz.html) */
.sub-page-banner {
    position: relative;
    background-image: linear-gradient(to bottom, rgba(10, 10, 12, 0.8), rgba(10, 10, 12, 0.95)), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.sub-page-banner h1 {
    font-size: 38px;
    margin-bottom: 8px;
    font-weight: 800;
}

.breadcrumbs {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.breadcrumbs a:hover {
    color: var(--primary-red-hover);
}

/* Landing Page Quick Club Categories Grid */
.club-quick-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.quick-cat-card {
    background-color: var(--bg-dark-800);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-normal);
}

.quick-cat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(116, 25, 41, 0.25);
    background-color: var(--bg-dark-700);
    box-shadow: var(--shadow-sm);
}

.quick-cat-card i {
    font-size: 24px;
    color: var(--primary-red-hover);
    background-color: rgba(116, 25, 41, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-cat-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 700;
}

.quick-cat-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Match Center Section Styling */
.match-center-section {
    background-color: var(--bg-dark-800);
    padding: 96px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.match-center-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
}

.tab-container {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.tab-btn {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.tab-btn.active {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.match-item {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    transition: var(--transition-normal);
}

.match-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 255, 255, 0.15);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 16px;
    font-size: 13px;
}

.match-league {
    font-weight: 700;
    color: var(--primary-red-hover);
}

.match-time {
    color: var(--text-muted);
}

.match-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.match-body .team {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 42%;
}

.match-body .team.text-right {
    justify-content: flex-end;
}

.team-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
}

.team-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.team-logo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-muted);
}

.vs {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    color: var(--text-muted);
    background-color: rgba(255,255,255,0.05);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.match-footer {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-muted);
}

.match-footer span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Match Results Specific styling */
.score-layout {
    justify-content: space-around;
}

.score-display {
    display: flex;
    align-items: center;
    gap: 16px;
}

.score {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-muted);
}

.score.win-score {
    color: var(--white);
}

.dash {
    color: var(--text-muted);
    font-size: 20px;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 50px;
}

.win-badge {
    background-color: rgba(46, 125, 50, 0.15);
    color: #4caf50;
}

.draw-badge {
    background-color: rgba(255, 152, 0, 0.15);
    color: #ff9800;
}

/* Standings Card Styling */
.standings-card {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.standings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.standings-header h3 {
    font-size: 18px;
}

.season-badge {
    background-color: rgba(255,255,255,0.05);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}

.table-responsive {
    overflow-x: auto;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: center;
}

.standings-table th, .standings-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--border-color);
}

.standings-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-muted);
}

.standings-table td {
    font-weight: 500;
}

.team-col {
    text-align: left;
    font-weight: 600;
}

.top-zone td:first-child {
    border-left: 4px solid var(--accent-green);
}

.playoff-zone td:first-child {
    border-left: 4px solid #ff9800;
}

.boluspor-row {
    background-color: rgba(116, 25, 41, 0.08);
}

.boluspor-row td {
    color: var(--white);
    font-weight: 700;
}

.table-legend {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.direct-color { background-color: var(--accent-green); }
.playoff-color { background-color: #ff9800; }

/* News Section Styling */
.news-section {
    padding: 96px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-card {
    background-color: var(--bg-dark-800);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.15);
}

.news-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

.news-card:hover .news-img {
    transform: scale(1.05);
}

.news-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    color: var(--white);
    z-index: 2;
}

.news-tag.highlight { background-color: var(--primary-red); }
.news-tag.official { background-color: var(--accent-green); }
.news-tag.academy { background-color: #ff9800; }

.news-content {
    padding: 24px;
}

.news-date {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 13px;
    color: var(--primary-red-hover);
}

.read-more-btn:hover {
    color: var(--white);
}

/* BS Store Section Styling */
.store-section {
    background-color: var(--bg-dark-800);
    padding: 96px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.store-card {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.store-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-md);
}

.store-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background-color: rgba(255,255,255,0.02);
}

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

.store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 12, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.store-card:hover .store-overlay {
    opacity: 1;
}

.store-info {
    padding: 20px;
}

.store-info h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.store-category {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.store-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-red-hover);
}

/* Registration Section Styling */
.register-section {
    padding: 96px 0;
}

.form-container-card {
    background-color: var(--bg-dark-800);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

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

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-red-hover);
}

.form-group input, .form-group select, .form-group textarea {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(116, 25, 41, 0.15);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--primary-red);
    cursor: pointer;
}

.error-msg {
    color: #ef5350;
    font-size: 12px;
    display: none;
}

.error-msg.block-error {
    display: none;
    margin-top: 4px;
}

.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea {
    border-color: #ef5350;
    background-color: rgba(239, 83, 80, 0.03);
}

.form-group.invalid .error-msg, .form-checkbox.invalid .error-msg {
    display: block;
}

/* Form Submit State Styling */
.spinner {
    display: none;
}

button[disabled] {
    opacity: 0.75;
    cursor: not-allowed;
}

button[disabled] .btn-text {
    display: none;
}

button[disabled] .spinner {
    display: inline-block;
}

/* Success Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--bg-dark-800);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 500px;
    padding: 40px;
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.open .modal-card {
    transform: scale(1);
}

.modal-icon {
    font-size: 64px;
    color: #4caf50;
    margin-bottom: 24px;
}

.modal-card h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.modal-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal-details {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 16px;
    margin-bottom: 32px;
    text-align: left;
    font-size: 14px;
}

.modal-details p {
    margin-bottom: 8px;
    color: var(--text-light);
}

.modal-details p:last-child {
    margin-bottom: 0;
}

.modal-details strong {
    color: var(--white);
}

/* Contact Section Styling */
.contact-section {
    padding: 96px 0;
    background-color: var(--bg-dark-800);
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-info-area h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info-area .desc {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 20px;
}

.contact-detail-card .icon {
    font-size: 24px;
    color: var(--primary-red-hover);
    background-color: rgba(116, 25, 41, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-detail-card p {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-detail-card a:hover {
    color: var(--white);
}

/* Map Area Styling */
.map-area {
    width: 100%;
}

.map-wrapper {
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    height: 350px;
    background-color: var(--bg-dark-700);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.map-overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 32px;
}

.map-overlay-content i {
    font-size: 48px;
    color: var(--primary-red-hover);
    margin-bottom: 16px;
    display: inline-block;
}

.map-marker-anim {
    animation: bounce 2s infinite;
}

.map-overlay-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.map-overlay-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

/* Sponsors Section Styling */
.sponsors-section {
    padding: 64px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-dark-900);
}

.sponsors-title {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
    font-weight: 700;
}

.sponsors-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.sponsor-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: var(--text-muted);
    transition: var(--transition-fast);
    opacity: 0.6;
}

.sponsor-logo:hover {
    color: var(--white);
    opacity: 1;
}

/* Footer Styling */
.main-footer {
    background-color: var(--bg-dark-900);
    padding: 80px 0 32px 0;
    font-size: 15px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 24px;
    border-left: 3px solid var(--primary-red);
    padding-left: 12px;
}

.brand-col p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

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

.social-links a:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-col a {
    color: var(--text-muted);
}

.links-col a:hover {
    color: var(--white);
    padding-left: 6px;
}

.contact-col .work-hours {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.contact-col .work-hours i {
    color: var(--primary-red-hover);
}

.contact-col .note {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 16px;
    border-left: 2px solid var(--border-color);
    padding-left: 12px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

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

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


/* ==========================================================================
   GEBZE TAYFUNSPOR KULÜBÜ EK BİLGİ MERKEZİ STİLLERİ
   ========================================================================== */

/* Club Sub-navigation Tabs */
.club-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    overflow-x: auto;
    width: 100%;
}

.club-tabs {
    display: flex;
    gap: 16px;
    padding: 4px;
}

.club-tab-btn {
    background-color: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.club-tab-btn i {
    font-size: 16px;
}

.club-tab-btn:hover {
    color: var(--white);
}

.club-tab-btn.active {
    background-color: rgba(116, 25, 41, 0.1);
    color: var(--primary-red-hover);
    box-shadow: inset 0 0 0 1px rgba(116, 25, 41, 0.2);
}

/* Tab Contents visibility */
.club-tab-content {
    display: none;
    animation: fadeIn var(--transition-normal);
}

.club-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Timeline Styling */
.timeline {
    position: relative;
    padding-left: 24px;
    border-left: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--bg-dark-900);
    border: 3px solid var(--primary-red);
    transition: var(--transition-fast);
}

.timeline-item:hover::before {
    background-color: var(--primary-red);
    box-shadow: 0 0 0 6px rgba(116, 25, 41, 0.2);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-red-hover);
    margin-bottom: 4px;
}

.timeline-detail {
    font-size: 14px;
    color: var(--text-muted);
}

.timeline-detail strong {
    color: var(--white);
}

/* Presidents Tab Styling */
.presidents-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: flex-start;
}

.president-featured-card {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.president-badge {
    background-color: rgba(116, 25, 41, 0.15);
    border: 1px solid rgba(116, 25, 41, 0.3);
    color: var(--primary-red-hover);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
}

.president-info h3 {
    font-size: 28px;
    margin-bottom: 6px;
}

.president-period {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.president-bio {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 15px;
    line-height: 1.6;
}

.presidents-history-list h3 {
    font-size: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.president-history-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    font-size: 14px;
}

.president-history-item:last-child {
    border-bottom: none;
}

.pres-year {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-red-hover);
    width: 100px;
}

.pres-name {
    font-weight: 700;
    color: var(--white);
    flex-grow: 1;
}

.pres-desc {
    color: var(--text-muted);
    font-size: 13px;
}

/* Board Tab Styling */
.board-header {
    text-align: center;
    margin-bottom: 32px;
}

.board-header h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.board-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.board-member-card {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition-normal);
}

.board-member-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.board-member-card.leader {
    grid-column: span 3;
    max-width: 400px;
    margin: 0 auto 16px auto;
    border-color: rgba(116, 25, 41, 0.25);
    background-image: linear-gradient(185deg, rgba(116, 25, 41, 0.05), transparent);
}

.member-role {
    font-size: 12px;
    color: var(--primary-red-hover);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.member-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
}

.board-footer-list {
    margin-top: 40px;
    background-color: rgba(255,255,255,0.02);
    border: 1px dashed var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    text-align: center;
}

.board-footer-list h4 {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.board-footer-list p {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto;
}

/* Staff Tab Styling */
.staff-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.staff-card {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: center;
    transition: var(--transition-normal);
}

.staff-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-md);
}

.staff-card.coach-main {
    border-color: rgba(116, 25, 41, 0.2);
    background-image: linear-gradient(135deg, rgba(116, 25, 41, 0.05), transparent);
}

.staff-photo {
    width: 96px;
    height: 96px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-red-hover);
}

.staff-info h4 {
    font-size: 22px;
    margin-bottom: 4px;
}

.staff-role {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-red-hover);
    display: block;
    margin-bottom: 12px;
}

.staff-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.staff-sub-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.staff-card-mini {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-fast);
}

.staff-card-mini:hover {
    transform: translateX(4px);
    border-color: rgba(255,255,255,0.12);
}

.staff-icon-mini {
    font-size: 20px;
    color: var(--primary-red-hover);
    background-color: rgba(116, 25, 41, 0.08);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-info-mini h5 {
    font-size: 15px;
    font-weight: 700;
}

.staff-info-mini span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Groups Tab Styling */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.group-card {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-normal);
}

.group-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.12);
    box-shadow: var(--shadow-md);
}

.group-icon {
    font-size: 28px;
    color: var(--primary-red-hover);
    background-color: rgba(116, 25, 41, 0.08);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.group-card h3 {
    font-size: 17px;
    margin-bottom: 12px;
}

.group-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    height: 60px;
    overflow: hidden;
}

.group-age-range {
    display: inline-block;
    background-color: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
}

/* Players Tab Styling */
.player-filter-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.player-filter-btn {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.player-filter-btn:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.player-filter-btn.active {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 4px 10px rgba(116, 25, 41, 0.3);
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.player-card {
    background-color: var(--bg-dark-700);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.player-card:hover {
    transform: translateY(-5px);
    border-color: rgba(116, 25, 41, 0.25);
    box-shadow: var(--shadow-md);
}

.player-photo-wrapper {
    position: relative;
    aspect-ratio: 1/1.1;
    background: linear-gradient(to bottom, var(--bg-dark-800), var(--bg-dark-700));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-fallback-photo {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-bg-shield {
    position: absolute;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.015);
    z-index: 1;
}

.player-jersey-icon {
    font-size: 70px;
    color: rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.player-number {
    position: absolute;
    z-index: 3;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    opacity: 0.85;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%);
}

.player-info {
    padding: 16px 20px;
    border-top: 1px solid var(--border-color);
}

.player-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-position-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.player-position-tag.gk { background-color: rgba(33, 150, 243, 0.12); color: #2196f3; }
.player-position-tag.def { background-color: rgba(76, 175, 80, 0.12); color: #4caf50; }
.player-position-tag.mid { background-color: rgba(255, 152, 0, 0.12); color: #ff9800; }
.player-position-tag.att { background-color: rgba(244, 67, 54, 0.12); color: #f44336; }

.player-meta-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    color: var(--text-muted);
}

.player-meta-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.player-meta-info i {
    font-size: 10px;
}


/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE LAYOUTS)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .club-quick-categories-grid {
        gap: 16px;
    }
    
    .presidents-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .board-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .board-member-card.leader {
        grid-column: span 2;
    }
    
    .groups-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .players-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .match-center-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .main-header #header-register-btn {
        display: none;
    }
    
    .hero-section {
        height: 60vh;
        min-height: 480px;
    }
    
    .hero-content h1 {
        font-size: 34px;
    }
    
    .hero-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .players-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .staff-card {
        flex-direction: column;
        text-align: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .form-container-card {
        padding: 24px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .club-tabs-container {
        border-bottom: none;
        padding-bottom: 0;
        overflow-x: visible;
        display: block;
    }

    .club-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        padding: 0;
    }

    .club-tab-btn {
        justify-content: center;
        padding: 10px 6px;
        font-size: 13px;
        border: 1px solid var(--border-color);
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .club-quick-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .board-grid {
        grid-template-columns: 1fr;
    }
    
    .board-member-card.leader {
        grid-column: span 1;
    }
    
    .groups-grid {
        grid-template-columns: 1fr;
    }
    
    .players-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .store-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-indicators {
        display: none;
    }
}
