:root {
    --primary-color: #0b8a36;
    --primary-glow: rgba(11, 138, 54, 0.7);
    --secondary-color: #ffffff;
    --dark-color: #0a0a0a;
    --gray-color: #f0f2f5;
    --text-color: #1f1f1f;
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fcfcfc;
    background-image: repeating-linear-gradient(-45deg,
            rgba(11, 138, 54, 0.22) 0px,
            rgba(11, 138, 54, 0.22) 120px,
            rgba(255, 255, 255, 0.05) 120px,
            rgba(255, 255, 255, 0.05) 240px);
    background-attachment: fixed;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}





.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

/* --- Social Icons --- */
.social-link-icon {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    text-decoration: none;
}

.social-link-icon:hover {
    background: var(--primary-color);
    color: white;
}

/* --- Global Buttons --- */
.btn,
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color), #14a245);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(11, 138, 54, 0.3);
    position: relative;
    overflow: hidden;
    gap: 10px;
}

.btn::before,
.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover,
.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(11, 138, 54, 0.4);
    background: linear-gradient(135deg, #14a245, var(--primary-color));
}

.btn:hover::before,
.btn-hero:hover::before {
    left: 100%;
}

.btn-hero {
    padding: 18px 45px;
    font-size: 1rem;
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.75rem;
}

.btn i,
.btn-hero i {
    transition: var(--transition);
}

.btn:hover i,
.btn-hero:hover i {
    transform: translateX(5px);
}

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

/* Premium Navbar & Navigation */
.main-header {
    background: var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.navbar {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: var(--transition);
    letter-spacing: 0.5px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.nav-red {
    color: #e63946 !important;
    font-weight: 800;
}

.nav-menu a.nav-red:hover {
    color: #d62839 !important;
}

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

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
    border-top: 3px solid var(--primary-color);
}

.dropdown li a {
    padding: 10px 25px;
    font-size: 0.8rem;
    color: #555;
    text-transform: none;
    font-weight: 600;
}

/* --- Global Page Header --- */
.page-header {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200px;
    background: white;
    border-radius: 50%;
    opacity: 0.05;
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
        margin-bottom: 30px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

.main-content {
    min-height: 600px;
    padding-bottom: 80px;
}

section {
    padding: 60px 0;
}

.dropdown li a:hover {
    background: var(--gray-color);
    color: var(--primary-color);
}

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

.admin-login-btn {
    color: #888;
    font-size: 1.2rem;
    transition: var(--transition);
}

.admin-login-btn:hover {
    color: var(--primary-color);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    padding: 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-sidebar {
    font-size: 2.5rem;
    cursor: pointer;
    color: #888;
}

.mobile-nav {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 5px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
    backdrop-filter: blur(5px);
}

.sidebar-overlay.active {
    display: block;
}

.modern-split-slider {
    display: flex !important;
    flex-direction: row-reverse;
    width: 100%;
    min-width: 100%;
    height: 550px;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
    position: relative;
}

.hero-image-side {
    flex: 0 0 55%; /* Increased from 50% to 55% for better image visibility */
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.modern-split-slider:hover .hero-main-img {
    transform: scale(1.05);
}

.hero-text-side {
    flex: 0 0 45%; /* Increased from 50% to 45% for better text room while giving image more space */
    background: #fafafa;
    display: flex;
    align-items: center;
    padding: 30px 45px;
    position: relative;
    z-index: 2;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Subtly overlap text area over image for a modern look */
.hero-text-side::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    height: 100%;
    width: 100px;
    background: #fafafa;
    transform: skewX(-5deg);
    z-index: -1;
}

.hero-content-inner {
    max-width: 100%;
}

.hero-content-inner h1, 
.hero-content-inner h2 {
    color: var(--dark-color);
    font-size: clamp(1.8rem, 4vw, 2.4rem) !important; /* Responsive font size */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    word-break: keep-all; /* Prevent awkward word breaks */
}

.hero-content-inner p {
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    max-width: 95%;
    line-height: 1.4;
}

.modern-deco-dot {
    position: absolute;
    bottom: 40px;
    left: 60px;
    width: 40px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.slider-arrows {
    position: absolute;
    bottom: 40px;
    right: 80px;
    z-index: 10;
    display: flex;
    gap: 12px;
}

/* Hero Wrapper Adjustments */
.hero-wrapper {
    padding: 40px 0;
    background: transparent;
}

/* --- Main Sponsor Side Banners --- */
.hero-flex-container {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.hero-slider-main {
    flex: 1;
    min-width: 0;
}

.main-sponsor-side {
    width: 140px;
    height: 550px;
    background: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.main-sponsor-side:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 45px rgba(11, 138, 54, 0.1);
}

@media (min-width: 1101px) {
    .main-sponsor-side img {
        width: 530px; /* Slightly less than 550 for safe margin */
        height: 120px; /* Slightly less than 140 for safe margin */
        object-fit: contain; /* Ensure logo is fully visible */
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.08));
        position: absolute;
        top: 50%;
        left: 50%;
        max-width: none !important;
    }

    .main-sponsor-side.left img {
        transform: translate(-50%, -50%) rotate(-90deg);
    }

    .main-sponsor-side.right img {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .main-sponsor-side p {
        display: none;
    }

    .main-sponsor-side {
        padding: 0 !important;
    }
}

@media (max-width: 1100px) {
    .hero-flex-container {
        display: flex;
        flex-direction: column;
    }

    .main-sponsor-side {
        width: 100%;
        height: auto;
        min-height: 120px;
        padding: 20px !important;
        border-radius: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-sponsor-side img {
        position: static;
        transform: none;
        width: auto;
        height: auto;
        max-height: 140px;
        max-width: 90%;
        object-fit: contain;
    }
    
    .main-sponsor-side p {
        display: block;
        font-size: 0.8rem;
        margin-top: 10px;
    }

    .main-sponsor-side.left {
        margin-bottom: 30px;
    }

    .main-sponsor-side.right {
        margin-top: 20px;
    }
}

/* --- News Components --- */
.section-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.section-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.section-dots span:first-child {
    background: var(--primary-color);
}

.news-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.news-date {
    font-size: 0.75rem;
    color: #999;
    font-weight: 600;
}

/* --- Academy Components --- */
.academy-container {
    background: #f0f0f0;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.academy-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.academy-content h2 span {
    color: var(--primary-color);
}

.academy-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.academy-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-color);
}

.star-img-wrapper {
    flex: 1;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.star-img-wrapper.top {
    transform: translateY(-20px);
}

.star-img-wrapper.bottom {
    transform: translateY(20px);
}

/* --- Football Grid --- */
.football-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-top: 30px;
}

.jersey-showcase-sidebar {
    display: flex;
    gap: 20px;
    align-items: stretch;
    border: 2px solid var(--primary-color);
    padding: 20px;
    border-radius: 20px;
    background: #ffffff;
}

.jersey-card {
    flex: 1;
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.jersey-img-wrapper {
    width: 100%;
    flex-grow: 1;
    min-height: 250px;
    background: #ffffff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 44px; /* Slightly larger for better touch targets */
    height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.players-row {
    background: white;
    border: 2px solid rgba(11, 138, 54, 0.1);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-slider {
    width: 100%;
    display: flex;
    justify-content: center;
}

.marquee-content-players {
    display: flex;
    width: max-content;
    animation: playerSlide 60s linear infinite;
    gap: 30px;
    align-items: center;
}

.marquee-content-players:hover {
    animation-play-state: paused;
}

.player-card {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.player-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    margin: 0 auto 15px;
    display: block;
    box-shadow: 0 0 20px rgba(11, 138, 54, 0.3);
}

.player-card h4 {
    color: #111;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.player-card span {
    color: #999;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes playerSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Match Score List Fixes */
.score-list {
    background: white;
    border: 2px solid rgba(11, 138, 54, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.score-item .team {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #333;
}

.score-item .team img {
    height: 30px;
}

.score-item .team.enemy img {
    filter: grayscale(1);
}

.score-item .score {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* --- Home Sponsor Slider (Marquee) --- */
.home-sponsors-slider {
    padding: 36px 0;
    background: #fcfcfc;
    border-top: 1px solid #eee;
    /* Slider ile ayırmak için üst çizgi eklendi */
    border-bottom: 1px solid #eee;
    margin-top: 40px;
    margin-bottom: 40px;
    overflow: hidden;
}

.sponsors-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 60s linear infinite;
}

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

.marquee-item {
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-item img {
    height: 78px;
    max-width: 216px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

.marquee-item img:hover {
    transform: scale(1.08);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-item {
        padding: 0 20px;
    }

    .marquee-item img {
        height: 54px;
    }
}

/* --- Mobile Specific Overrides --- */
@media (max-width: 992px) {
    .hero-boxed {
        min-height: auto;
        padding: 60px 20px;
        flex-direction: column;
        text-align: center;
    }

    .hero-bg-img {
        position: relative;
        width: 100%;
        height: auto;
        order: 2;
        margin-top: 30px;
    }

    .hero-content {
        padding: 0;
        text-align: center !important;
        order: 1;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        justify-content: center !important;
    }

    .neon-accent-line {
        display: none;
    }

    .academy-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
    }

    .star-img-wrapper {
        transform: none !important;
        height: 300px;
    }

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

    .players-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* --- Footer Styles --- */
.footer-top {
    background: white;
    padding: 60px 0;
    border-top: 5px solid var(--primary-color);
    border-bottom: 1px solid #eee;
}

.footer-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo img {
    height: auto;
    max-height: 100px;
}

.footer-links-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links-grid a {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: var(--transition);
}

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

.footer-bottom-bar {
    background: var(--primary-color);
    padding: 50px 0;
    color: white;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: start;
}

.footer-info-col h4 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-items span {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.info-items a,
.address-col a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.info-items a:hover,
.address-col a:hover {
    opacity: 0.8;
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.2rem;
}

.social-links a {
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.address-col {
    text-align: right;
}

.address-col p {
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: right;
    color: white;
}

.address-col p i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.footer-copyright {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-top-wrapper {
        justify-content: center;
        text-align: center;
    }

    .footer-links-grid {
        justify-content: center;
        gap: 20px;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .address-col p {
        justify-content: center;
    }
}

/* --- News Section --- */
.latest-news {
    padding: 80px 0;
}

.section-title-centered {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-centered h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #111;
    position: relative;
}

.section-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.section-dots span {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 40px;
    justify-content: center;
    align-items: stretch;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}

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

.news-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}

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

.news-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
}

.news-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-info h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #111;
    font-weight: 700;
}

.news-date,
.news-info .btn,
.news-info a.btn {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-top: auto;
}

/* Management Staff */
.management-card {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.management-img-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.management-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #111;
}

.management-card p {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Management Hierarchy */
.management-top-section {
    margin-bottom: 60px;
}

.management-card.highlighted {
    max-width: 450px;
    margin: 0 auto;
    border: 2px solid var(--primary-color);
    background: linear-gradient(145deg, #ffffff, #fcfcfc);
    position: relative;
    z-index: 2;
}

.management-card.highlighted .management-img-wrapper {
    width: 240px;
    height: 240px;
    border: 6px solid var(--primary-color);
    box-shadow: 0 15px 35px rgba(11, 138, 54, 0.2);
}

.management-card.highlighted h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
}

.management-card.highlighted p {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.management-sub-section {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.management-card.secondary {
    max-width: 320px;
    border: 1px solid rgba(11, 138, 54, 0.2);
}

.management-card.secondary .management-img-wrapper {
    width: 200px;
    height: 200px;
}

@media (max-width: 768px) {
    .management-img-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 15px;
    }
    
    .management-card.highlighted .management-img-wrapper {
        width: 120px;
        height: 120px;
    }

    .management-card.secondary .management-img-wrapper {
        width: 100px;
        height: 100px;
    }

    .management-card, 
    .management-card.highlighted, 
    .management-card.secondary {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        padding: 25px 15px !important;
    }

    .management-card.highlighted h3 {
        font-size: 1.4rem !important;
    }

    .management-combined-section, 
    .management-top-section > div {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }
}

.hierarchy-label {
    text-align: center;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hierarchy-label::before,
.hierarchy-label::after {
    content: '';
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    flex-grow: 1;
    max-width: 100px;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

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

/* Global Responsive Fixes */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

/* --- Academy Styling --- */
.academy-intro {
    padding: 80px 0;
}

.academy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.academy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.2;
}

.academy-content h2 span {
    color: var(--primary-color);
}

.academy-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.academy-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item h3,
.stat-item h4 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item span,
.stat-item p {
    font-size: 0.85rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    margin: 0;
}

.academy-images {
    position: relative;
    height: 500px;
    width: 100%;
}

.star-img-wrapper {
    position: absolute;
    width: 75%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.star-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.star-img-wrapper.top {
    top: 0;
    right: 0;
    z-index: 2;
}

.star-img-wrapper.bottom {
    bottom: 0;
    left: 0;
    z-index: 1;
}

@media (max-width: 992px) {
    .academy-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .academy-images {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }

    .star-img-wrapper {
        position: relative;
        width: 100%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        height: 300px;
        transform: none !important;
    }

    .academy-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 30px;
    }

    .stat-item {
        flex: 0 0 140px;
    }

    .stat-item h3,
    .stat-item h4 {
        font-size: 2rem !important;
    }

    .football-results .container>div {
        grid-template-columns: 1fr;
    }


}

@media (max-width: 768px) {
    .modern-split-slider {
        flex-direction: column;
        height: auto;
        border-radius: 20px;
    }

    .hero-image-side {
        flex: 0 0 260px; /* Adjusted height */
        width: 100%;
    }

    .hero-text-side {
        flex: 1;
        padding: 40px 20px 60px; /* Added more bottom padding for dot */
        text-align: center;
        justify-content: center;
    }

    .hero-text-side::after {
        display: none;
    }

    .hero-content-inner h1, 
    .hero-content-inner h2 {
        font-size: 1.8rem !important; /* Smaller on mobile */
        margin-bottom: 12px;
    }

    .hero-content-inner p {
        font-size: 0.9rem;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .modern-deco-dot {
        left: 50%;
        transform: translateX(-50%);
        bottom: 15px;
    }

    /* Slider Arrows Mobile Fix */
    .slider-arrows {
        top: 20px !important;
        right: 20px !important;
        bottom: auto !important;
        left: auto !important;
    }
}

@media (min-width: 992px) {
    .modern-split-slider {
        height: 550px !important;
    }
}

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

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact-container-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-section {
        padding: 50px 0 !important;
    }
    
    .contact-form {
        padding: 30px 20px !important;
    }

    .contact-info h2, .contact-form h2 {
        font-size: 1.6rem !important;
    }
}