/*
 * CormackCoreWeb 2.0 - Custom Stylesheet
 * Author: Charlie - Cormack Advertising
 * Add your custom styles here
 */

/* ================================
   Global Font Setup - Sofia Sans Extra Condensed
   ================================ */

/* Base font applied to body */
body {
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Heading 1 - Default and Weight Variations */
h1 {
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

h1.light {
    font-weight: 300;
}

h1.regular {
    font-weight: 500;
}

h1.bold {
    font-weight: 700;
}

/* Heading 2 - Default and Weight Variations */
h2 {
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

h2.light {
    font-weight: 300;
}

h2.regular {
    font-weight: 500;
}

h2.bold {
    font-weight: 700;
}

/* Heading 3 - Default and Weight Variations */
h3 {
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

h3.light {
    font-weight: 300;
}

h3.regular {
    font-weight: 500;
}

h3.bold {
    font-weight: 700;
}

/* Heading 4 - Default and Weight Variations */
h4 {
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

h4.light {
    font-weight: 300;
}

h4.regular {
    font-weight: 500;
}

h4.bold {
    font-weight: 700;
}

/* Paragraph - Default and Weight Variations */
p {
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

p.light {
    font-weight: 300;
}

p.regular {
    font-weight: 400;
}

p.bold {
    font-weight: 700;
}

/* ================================
   Hero Slider Styles
   ================================ */

/* Header positioning over slider */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: transparent;
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
}

/* Logo Styles */
.site-branding {
    flex-shrink: 0;
}

.site-logo {
    display: block;
    line-height: 0;
}

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

/* Navigation */
.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 180px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #8c22c2;
}

/* Logout Navigation Link */
.menu-item-logout {
    margin-left: auto;
}

.logout-nav-link {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: #8c22c2 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(140, 34, 194, 0.3);
    white-space: nowrap;
}

.logout-nav-link:hover {
    background: #ffffff !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.logout-nav-link .logout-text {
    transition: color 0.3s ease;
}

.logout-nav-link .logout-arrow {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.logout-nav-link:hover .logout-arrow {
    transform: translateX(4px);
    filter: brightness(0) invert(0);
}

/* Legacy logout button styles (if still using hardcoded button) */
.logout-button {
    position: fixed !important;
    right: 50px !important;
    top: 20px !important;
    transform: none !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: #8c22c2 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(140, 34, 194, 0.3);
    white-space: nowrap;
    z-index: 999999 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.logout-button:hover {
    background: #ffffff !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.logout-button .logout-text {
    transition: color 0.3s ease;
}

.logout-button .logout-arrow {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.logout-button:hover .logout-arrow {
    transform: translateX(4px);
    filter: brightness(0) invert(0);
}

/* Responsive Header */
@media (max-width: 992px) {
    .logo-img {
        height: 50px;
    }

    .main-navigation {
        margin-right: 160px;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .logout-button {
        right: 40px !important;
        top: 18px !important;
        padding: 9px 20px;
        font-size: 1rem;
        gap: 8px;
    }

    .logout-arrow {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .logo-img {
        height: 45px;
    }

    .main-navigation {
        margin-right: 140px;
    }

    .nav-menu {
        gap: 12px;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .logout-button {
        right: 30px !important;
        top: 22px !important;
        padding: 8px 16px;
        font-size: 0.9rem;
        gap: 7px;
    }

    .logout-arrow {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }

    .main-navigation {
        margin-right: 120px;
    }

    .nav-menu {
        gap: 8px;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .logout-button {
        right: 20px !important;
        top: 25px !important;
        padding: 7px 14px;
        font-size: 0.85rem;
        gap: 6px;
    }

    .logout-arrow {
        width: 12px;
        height: 12px;
    }
}

/* Slider Wrapper */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.12);
    z-index: 5;
    pointer-events: none;
}

/* Slider Container */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Slide Image Background */
.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.1) 35%, rgba(0, 0, 0, 0) 50%);
}

/* Slide Content */
.hero-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 50px;
}

.hero-slide-text {
    color: #ffffff;
    max-width: 100%;
}

.hero-slide-text h1,
.hero-slide-text h2,
.hero-slide-text h3,
.hero-slide-text h4,
.hero-slide-text p {
    color: #ffffff;
    margin: 0 0 15px 0;
}

.hero-slide-text h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-slide-text h2 {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-slide-text p {
    font-size: 1.5rem;
    line-height: 1.6;
}

/* Highlighted Text Span */
.hero-slide-text .highlight,
.hero-slide-text span.highlight {
    background: #8c22c2;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 0;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
    line-height: 1.1;
    font-weight: 100;
    font-style: italic;
}

/* Global Highlight Class (can be used anywhere) */
.highlight,
span.highlight {
    background: #8c22c2;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 0;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: 100;
    font-style: italic;
}

/* Slider Pagination */
.hero-slider-pagination {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.pagination-dot {
    min-width: 25px;
    height: 25px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.pagination-dot::before {
    content: attr(data-slide);
}

.pagination-dot:hover {
    background: rgba(140, 34, 194, 0.8);
}

.pagination-dot.active {
    background: #8c22c2;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-slide-text h1 {
        font-size: 4.5rem;
    }

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

@media (max-width: 1200px) {
    .hero-slide-text {
        max-width: 100%;
    }

    .hero-slide-text h1 {
        font-size: 4rem;
    }

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

    .hero-slide-text p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .hero-slider-wrapper {
        height: 80vh;
    }

    .hero-slide-text {
        max-width: 100%;
    }

    .hero-slide-text h1 {
        font-size: 3.5rem;
    }

    .hero-slide-text h2 {
        font-size: 2.5rem;
    }

    .hero-slide-text p {
        font-size: 1.2rem;
    }

    .hero-slide-content {
        padding: 40px;
    }

    .pagination-dot {
        min-width: 23px;
        height: 23px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-slider-wrapper {
        height: 70vh;
    }

    .hero-slide-text {
        max-width: 100%;
    }

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

    .hero-slide-text h2 {
        font-size: 2rem;
    }

    .hero-slide-text p {
        font-size: 1.1rem;
    }

    .hero-slide-content {
        padding: 30px;
    }

    .hero-slider-pagination {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }

    .pagination-dot {
        min-width: 22px;
        height: 22px;
        font-size: 0.85rem;
    }

    .highlight,
    span.highlight,
    .hero-slide-text .highlight {
        padding: 3px 12px;
    }
}

@media (max-width: 480px) {
    .hero-slider-wrapper {
        height: 60vh;
        min-height: 500px;
    }

    .hero-slide-text {
        max-width: 100%;
    }

    .hero-slide-text h1 {
        font-size: 2.2rem;
    }

    .hero-slide-text h2 {
        font-size: 1.8rem;
    }

    .hero-slide-text p {
        font-size: 1rem;
    }

    .hero-slide-content {
        padding: 20px;
    }

    .pagination-dot {
        min-width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
}

/* ================================
   About Us Section
   ================================ */

.about-us-section {
    position: relative;
    width: 100%;
    min-height: 50vh;
        background: linear-gradient(135deg, rgba(140, 34, 194, 0.95) 0%, rgba(111, 26, 154, 0.95) 100%), url(../images/pattern.jpg);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-us-content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    width: 100%;
    text-align: center;
    color: #ffffff;
}

.about-us-headline-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.about-us-headline-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.about-us-headline {
    position: relative;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-us-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0 auto;
    max-width: 1200px;
    font-weight: 400;
}

/* Responsive About Us Section */
@media (max-width: 1400px) {
    .about-us-headline-overlay {
        font-size: 6rem;
    }

    .about-us-headline {
        font-size: 3.5rem;
    }

    .about-us-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 1200px) {
    .about-us-section {
        padding: 80px 40px;
    }

    .about-us-headline-overlay {
        font-size: 5.5rem;
    }

    .about-us-headline {
        font-size: 3rem;
    }

    .about-us-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .about-us-section {
        min-height: 40vh;
        padding: 60px 40px;
    }

    .about-us-headline-overlay {
        font-size: 5rem;
    }

    .about-us-headline {
        font-size: 2.5rem;
    }

    .about-us-text {
        font-size: 1.2rem;
    }

    .about-us-headline-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 50px 30px;
    }

    .about-us-headline-overlay {
        font-size: 4rem;
    }

    .about-us-headline {
        font-size: 2rem;
    }

    .about-us-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .about-us-headline-wrapper {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .about-us-section {
        padding: 40px 20px;
        min-height: 35vh;
    }

    .about-us-headline-overlay {
        font-size: 2.5rem;
    }

    .about-us-headline {
        font-size: 1.8rem;
    }

    .about-us-text {
        font-size: 1rem;
    }

    .about-us-headline-wrapper {
        margin-bottom: 20px;
    }
}

/* ================================
   Team Carousel Section
   ================================ */

.team-carousel-section {
    position: relative;
    width: 100%;
    background: #f5f5f5;
    padding: 100px 0;
    overflow: hidden;
}

.team-carousel-container {
    position: relative;
    width: 100%;
}

/* Headline wrapper with overlay */
.team-headline-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 100px;
}

.team-headline-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 900;
    color: #dfdfdf;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.05em;
    pointer-events: none;
    text-transform: uppercase;
}

/* Label above headline */
.team-section-label {
    position: relative;
    display: block;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: #8c22c2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

/* Main headline */
.team-main-headline {
    position: relative;
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Purple strip containing jerseys - full width with pattern background */
.team-purple-strip {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgba(140, 34, 194, 0.95) 0%, rgba(111, 26, 154, 0.95) 100%), url('../images/pattern.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    padding: 80px 0 0 0;
    margin-bottom: 80px;
}

.team-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.team-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    perspective: 1500px;
}

.team-slide {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform-origin: center bottom;
}

.team-slide img {
    width: auto;
    height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.team-slide.active {
    z-index: 5;
    opacity: 1;
    transform: translateX(0) scale(1);
}

.team-slide.left-1 {
    z-index: 4;
    opacity: 0.85;
    transform: translateX(-65%) scale(0.75);
}

.team-slide.left-2 {
    z-index: 3;
    opacity: 0.6;
    transform: translateX(-120%) scale(0.55);
}

.team-slide.right-1 {
    z-index: 4;
    opacity: 0.85;
    transform: translateX(65%) scale(0.75);
}

.team-slide.right-2 {
    z-index: 3;
    opacity: 0.6;
    transform: translateX(120%) scale(0.55);
}

/* Player details wrapper with navigation arrows */
.player-details-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px;
}

/* Navigation arrows next to player details */
.carousel-nav {
    position: relative;
    top: auto;
    transform: none;
    z-index: 10;
    background-color: #ffffff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 15px;
    font-size: 0;
    background-size: 30px 30px;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-prev {
    background-image: url('../images/arrow-left.svg');
}

.carousel-next {
    background-image: url('../images/arrow-right.svg');
}

.carousel-nav:hover {
    opacity: 0.8;
}

/* Player details below purple strip */
.player-details {
    position: relative;
    text-align: center;
    padding: 0 20px;
    flex: 1;
    max-width: 600px;
}

/* Player number overlay behind details */
.player-number-overlay {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(140, 34, 194, 0.08);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}

.player-name {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.player-position {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    font-weight: 400;
    color: #666666;
    margin: 0 0 60px 0;
}

.player-position span {
    font-weight: 700;
    color: #8c22c2;
}

.player-full-info {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 45px;
    background: #8c22c2;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    border: none;
}

.player-full-info::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('../images/arrow-right.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}

.player-full-info:hover {
    background: #6f1a9a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140, 34, 194, 0.3);
}

/* Responsive Team Carousel */
@media (max-width: 1400px) {
    .team-headline-overlay {
        font-size: 6rem;
    }

    .team-main-headline {
        font-size: 3.5rem;
    }

    .team-slide img {
        height: 570px;
    }

    .team-carousel-wrapper {
        height: 440px;
    }

    .player-number-overlay {
        font-size: 13rem;
    }

    .player-name {
        font-size: 2.2rem;
    }
}

@media (max-width: 1200px) {
    .team-carousel-section {
        padding: 80px 0;
    }

    .team-headline-wrapper {
        margin-bottom: 50px;
    }

    .team-headline-overlay {
        font-size: 5.5rem;
    }

    .team-main-headline {
        font-size: 3rem;
    }

    .team-slide img {
        height: 340px;
    }

    .team-carousel-wrapper {
        height: 440px;
    }

    .player-details-wrapper {
        padding: 0 60px;
        gap: 40px;
    }

    .player-number-overlay {
        font-size: 11rem;
    }

    .player-name {
        font-size: 2rem;
    }

    .player-position {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .team-carousel-section {
        padding: 60px 0;
    }

    .team-headline-overlay {
        font-size: 5rem;
    }

    .team-main-headline {
        font-size: 2.5rem;
    }

    .team-slide img {
        height: 300px;
    }

    .team-carousel-wrapper {
        height: 400px;
    }

    .team-slide.left-2,
    .team-slide.right-2 {
        opacity: 0;
        pointer-events: none;
    }

    .player-details-wrapper {
        padding: 0 40px;
        gap: 30px;
    }

    .player-number-overlay {
        font-size: 9rem;
    }

    .player-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .team-carousel-section {
        padding: 50px 0;
    }

    .team-headline-wrapper {
        margin-bottom: 40px;
    }

    .team-headline-overlay {
        font-size: 4rem;
    }

    .team-section-label {
        font-size: 0.9rem;
    }

    .team-main-headline {
        font-size: 2rem;
    }

    .team-purple-strip {
        padding: 60px 0 0 0;
        margin-bottom: 50px;
    }

    .team-slide img {
        height: 280px;
    }

    .team-carousel-wrapper {
        height: 380px;
    }

    .player-details-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 0 30px;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .player-number-overlay {
        font-size: 10rem;
    }

    .player-name {
        font-size: 1.6rem;
    }

    .player-position {
        font-size: 1rem;
    }

    .player-full-info {
        padding: 12px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .team-carousel-section {
        padding: 40px 0;
    }

    .team-headline-wrapper {
        margin-bottom: 30px;
    }

    .team-headline-overlay {
        font-size: 2.5rem;
    }

    .team-section-label {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .team-main-headline {
        font-size: 1.6rem;
    }

    .team-purple-strip {
        padding: 40px 0 0 0;
        margin-bottom: 40px;
    }

    .team-slide img {
        height: 250px;
    }

    .team-carousel-wrapper {
        height: 350px;
    }

    .team-slide.left-1,
    .team-slide.right-1 {
        opacity: 0.4;
    }

    .player-details-wrapper {
        padding: 0 20px;
        gap: 20px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .player-number-overlay {
        font-size: 5rem;
    }

    .player-name {
        font-size: 1.4rem;
    }

    .player-position {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .player-full-info {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* ================================
   Sponsors Section
   ================================ */

.sponsors-section {
    padding: 100px 50px;
    background: #ffffff;
}

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

.sponsors-headline-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 80px;
}

.sponsors-headline-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 900;
    color: #f5f5f5;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.05em;
    pointer-events: none;
    text-transform: uppercase;
}

.sponsors-headline {
    position: relative;
    font-size: 4rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sponsors-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.sponsor-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.sponsor-logo img {
    max-width: 250px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Responsive Sponsors Section */
@media (max-width: 1400px) {
    .sponsors-headline-overlay {
        font-size: 6rem;
    }

    .sponsors-headline {
        font-size: 3.5rem;
    }

    .sponsor-logo img {
        max-width: 220px;
        max-height: 110px;
    }
}

@media (max-width: 1200px) {
    .sponsors-section {
        padding: 80px 40px;
    }

    .sponsors-headline-overlay {
        font-size: 5.5rem;
    }

    .sponsors-headline {
        font-size: 3rem;
    }

    .sponsors-headline-wrapper {
        margin-bottom: 60px;
    }

    .sponsors-logos {
        gap: 60px;
    }

    .sponsor-logo img {
        max-width: 200px;
        max-height: 100px;
    }
}

@media (max-width: 992px) {
    .sponsors-section {
        padding: 60px 40px;
    }

    .sponsors-headline-overlay {
        font-size: 5rem;
    }

    .sponsors-headline {
        font-size: 2.5rem;
    }

    .sponsors-logos {
        gap: 50px;
    }

    .sponsor-logo img {
        max-width: 180px;
        max-height: 90px;
    }
}

@media (max-width: 768px) {
    .sponsors-section {
        padding: 50px 30px;
    }

    .sponsors-headline-overlay {
        font-size: 4rem;
    }

    .sponsors-headline {
        font-size: 2rem;
    }

    .sponsors-headline-wrapper {
        margin-bottom: 50px;
    }

    .sponsors-logos {
        gap: 40px;
        flex-direction: column;
    }

    .sponsor-logo img {
        max-width: 200px;
        max-height: 100px;
    }
}

@media (max-width: 480px) {
    .sponsors-section {
        padding: 40px 20px;
    }

    .sponsors-headline-overlay {
        font-size: 2.5rem;
    }

    .sponsors-headline {
        font-size: 1.6rem;
    }

    .sponsors-headline-wrapper {
        margin-bottom: 40px;
    }

    .sponsors-logos {
        gap: 30px;
    }

    .sponsor-logo img {
        max-width: 180px;
        max-height: 90px;
    }
}

/* ================================
   Gallery Section
   ================================ */

.gallery-section {
    padding: 100px 50px;
    background: #f5f5f5;
}

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

.gallery-headline-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.gallery-headline-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 900;
    color: #ebebeb;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.05em;
    pointer-events: none;
    text-transform: uppercase;
}

.gallery-headline {
    position: relative;
    font-size: 4rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.gallery-lightbox-close:hover {
    opacity: 1;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    font-size: 4rem;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    padding: 10px;
}

.gallery-lightbox-prev {
    left: 20px;
}

.gallery-lightbox-next {
    right: 20px;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    opacity: 1;
}

/* Responsive Gallery */
@media (max-width: 1400px) {
    .gallery-headline-overlay {
        font-size: 6rem;
    }

    .gallery-headline {
        font-size: 3.5rem;
    }
}

@media (max-width: 1200px) {
    .gallery-section {
        padding: 80px 40px;
    }

    .gallery-headline-overlay {
        font-size: 5.5rem;
    }

    .gallery-headline {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .gallery-section {
        padding: 60px 40px;
    }

    .gallery-headline-overlay {
        font-size: 5rem;
    }

    .gallery-headline {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 50px 30px;
    }

    .gallery-headline-overlay {
        font-size: 4rem;
    }

    .gallery-headline {
        font-size: 2rem;
    }

    .gallery-headline-wrapper {
        margin-bottom: 30px;
    }

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

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        font-size: 2.5rem;
    }

    .gallery-lightbox-close {
        font-size: 2.5rem;
        top: 15px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 20px;
    }

    .gallery-headline-overlay {
        font-size: 2.5rem;
    }

    .gallery-headline {
        font-size: 1.8rem;
    }

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

    .gallery-lightbox-prev {
        left: 10px;
    }

    .gallery-lightbox-next {
        right: 10px;
    }
}

/* ================================
   Fixtures Section
   ================================ */

.fixtures-section {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgba(140, 34, 194, 0.95) 0%, rgba(111, 26, 154, 0.95) 100%), url('../images/pattern.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    padding: 40px 20px;
    text-align: center;
}

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

.fixtures-headline-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.fixtures-headline-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.fixtures-headline {
    position: relative;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.fixtures-matchup {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    margin: 0 0 10px 0;
}

.fixtures-team {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fixtures-vs {
    font-size: 1.6rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-transform: lowercase;
    letter-spacing: 1px;
    padding: 5px 0;
}

.fixtures-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 2px;
}

/* Responsive Fixtures */
@media (max-width: 1200px) {
    .fixtures-headline-overlay {
        font-size: 5.5rem;
    }

    .fixtures-headline {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .fixtures-section {
        padding: 30px 20px;
    }

    .fixtures-headline-overlay {
        font-size: 4rem;
    }

    .fixtures-headline {
        font-size: 2rem;
    }

    .fixtures-team {
        font-size: 2.2rem;
    }

    .fixtures-date {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .fixtures-section {
        padding: 25px 15px;
    }

    .fixtures-headline-overlay {
        font-size: 2.5rem;
    }

    .fixtures-headline {
        font-size: 1.8rem;
    }

    .fixtures-team {
        font-size: 1.8rem;
    }

    .fixtures-date {
        font-size: 1rem;
    }
}

/* ================================
   Recent News Section
   ================================ */

.recent-news-section {
    padding: 100px 50px;
    background: #ffffff;
}

.recent-news-container {
    max-width: 1600px;
    margin: 0 auto;
}

.news-headline-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.news-headline-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 900;
    color: #f5f5f5;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.news-headline {
    position: relative;
    font-size: 4rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.news-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Featured News (Left Column) */
.news-featured {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 0;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-featured-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-date {
    font-size: 0.9rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.news-featured .news-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

.news-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.news-read-more {
    display: inline-block;
    padding: 12px 30px;
    background: #8c22c2;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.news-read-more:hover {
    background: #6f1a9a;
}

/* News Grid (Right Column) */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.news-grid-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-grid-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-grid-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.news-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.news-grid-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-grid-item .news-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.news-grid-item .news-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-grid-item .news-title a:hover {
    color: #8c22c2;
}

/* Responsive Recent News */
@media (max-width: 1400px) {
    .news-headline-overlay {
        font-size: 6rem;
    }

    .news-headline {
        font-size: 3.5rem;
    }

    .news-featured .news-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 1200px) {
    .recent-news-section {
        padding: 80px 40px;
    }

    .news-headline-overlay {
        font-size: 5.5rem;
    }

    .news-headline {
        font-size: 3rem;
    }

    .news-featured .news-title {
        font-size: 2rem;
    }

    .news-grid-item .news-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .recent-news-section {
        padding: 60px 40px;
    }

    .news-headline-overlay {
        font-size: 5rem;
    }

    .news-headline {
        font-size: 2.5rem;
    }

    .news-headline-wrapper {
        margin-bottom: 40px;
    }

    .news-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .news-featured-image {
        height: 350px;
    }

    .news-featured .news-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .recent-news-section {
        padding: 50px 30px;
    }

    .news-headline-overlay {
        font-size: 4rem;
    }

    .news-headline {
        font-size: 2rem;
    }

    .news-headline-wrapper {
        margin-bottom: 30px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .news-featured-image {
        height: 300px;
    }

    .news-featured .news-title {
        font-size: 1.6rem;
    }

    .news-grid-item .news-title {
        font-size: 1.1rem;
    }

    .news-excerpt {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .recent-news-section {
        padding: 40px 20px;
    }

    .news-headline-overlay {
        font-size: 2.5rem;
    }

    .news-headline {
        font-size: 1.8rem;
    }

    .news-featured-image {
        height: 250px;
    }

    .news-grid-image {
        height: 180px;
    }

    .news-featured .news-title {
        font-size: 1.4rem;
    }

    .news-grid-item .news-title {
        font-size: 1rem;
    }
}

/* ================================
   Footer Section
   ================================ */

.site-footer {
    background: #152527;
    padding: 40px 50px;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo a {
    display: block;
    line-height: 0;
}

.footer-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    color: #ffffff;
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-copyright p:last-child {
    margin-bottom: 0;
}

.footer-copyright a {
    color: #8c22c2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #a855f7;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 30px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-logo img {
        height: 50px;
        margin: 0 auto;
    }

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

    .footer-copyright p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 25px 20px;
    }

    .footer-container {
        gap: 25px;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-copyright p {
        font-size: 0.85rem;
    }
}

/* Brochure Banner Styles */
.brochure-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.brochure-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.brochure-banner-label {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-right: 10px;
}

.brochure-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.brochure-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.brochure-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brochure-link svg {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brochure-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .brochure-banner-label {
        margin-right: 0;
        margin-bottom: 5px;
    }

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

    .brochure-link {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* ===================================
   Player Modal Styles
   =================================== */

.player-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.player-modal.active {
    display: block;
}

.player-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
}

.player-modal-content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    margin: 50px auto;
    background: url('../images/player-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 10002;
    padding: 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: stretch;
    min-height: 450px;
}

.player-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #8c22c2;
    border: none;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10003;
    line-height: 1;
    padding: 0;
}

.player-modal-close:hover {
    background: #6f1a9a;
}

/* Left column - Jersey image */
.player-modal-image {
    flex: 0 0 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.player-modal-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
    display: block;
}

/* Right column - Player info */
.player-modal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    gap: 25px;
}

/* Header with number and name on one line */
.player-modal-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 10px;
}

.player-modal-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    margin: 0;
    font-family: 'Sofia Sans', sans-serif;
}

.player-modal-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Sofia Sans', sans-serif;
}

.player-modal-position {
    font-size: 1rem;
    color: #000000;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin: 0 0 20px 0;
    font-family: 'Open Sans', sans-serif;
}

.player-modal-position span {
    color: #8c22c2;
    font-weight: 600;
}

.player-modal-description p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #000000;
    margin: 0 0 20px 0;
    font-family: 'Open Sans', sans-serif;
}

.player-modal-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 55px;
    background: #8c22c2;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: background 0.3s ease;
    align-self: flex-start;
    font-family: 'Sofia Sans', sans-serif;
}

.player-modal-contact::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url('../images/arrow-right.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}

.player-modal-contact:hover {
    background: #6f1a9a;
}

/* Modal Responsive Styles */
@media (max-width: 992px) {
    .player-modal-content {
        flex-direction: column;
        max-width: 600px;
    }

    .player-modal-image {
        flex: 0 0 auto;
        padding: 40px;
    }

    .player-modal-image img {
        max-width: 250px;
    }

    .player-modal-info {
        flex: 0 0 auto;
        padding: 40px;
    }

    .player-modal-number {
        font-size: 3rem;
    }

    .player-modal-name {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .player-modal-content {
        width: 95%;
        margin: 20px auto;
    }

    .player-modal-close {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }

    .player-modal-image {
        padding: 30px;
    }

    .player-modal-image img {
        max-width: 200px;
    }

    .player-modal-info {
        padding: 30px;
    }

    .player-modal-number {
        font-size: 2.5rem;
    }

    .player-modal-name {
        font-size: 2.5rem;
    }

    .player-modal-position {
        font-size: 0.9rem;
    }

    .player-modal-description p {
        font-size: 0.9rem;
    }

    .player-modal-contact {
        padding: 12px 45px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .player-modal-image {
        padding: 25px;
    }

    .player-modal-image img {
        max-width: 180px;
    }

    .player-modal-info {
        padding: 25px;
    }

    .player-modal-header {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

    .player-modal-number {
        font-size: 2rem;
    }

    .player-modal-name {
        font-size: 2rem;
    }

    .player-modal-position {
        font-size: 0.85rem;
    }

    .player-modal-description p {
        font-size: 0.85rem;
    }

    .player-modal-contact {
        padding: 10px 35px;
        font-size: 0.8rem;
    }
}

/* ===================================
   Login & Registration Page Styles
   =================================== */

.login-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/player-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 30px 15px;
}

.login-container {
    background: rgba(200, 200, 200, 0.92);
    backdrop-filter: blur(12px);
    padding: 35px 45px;
    width: 100%;
    max-width: 540px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    border-radius: 2px;
}

.login-logo {
    text-align: center;
    margin-bottom: 24px;
}

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

.login-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
}

.login-tab {
    flex: 1;
    padding: 12px 24px;
    background: #d3d3d3;
    border: none;
    color: #666666;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    text-transform: uppercase;
    position: relative;
}

.login-tab.active {
    background: #8c22c2;
    color: #ffffff;
}

.login-tab:hover {
    opacity: 0.9;
}

.login-form-wrapper {
    margin-bottom: 32px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-notice {
    color: #333333;
    font-size: 0.85rem;
    margin: 0 0 8px 0;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

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

.form-group label {
    color: #000000;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border: none;
    background: #ffffff;
    font-size: 0.95rem;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8c22c2;
    box-shadow: 0 0 0 2px rgba(140, 34, 194, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 85px;
    line-height: 1.5;
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #000000;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.btn-submit {
    padding: 13px 36px;
    background: #8c22c2;
    color: #ffffff;
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    box-shadow: 0 2px 8px rgba(140, 34, 194, 0.3);
}

.btn-submit:hover {
    background: #6f1a9a;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(140, 34, 194, 0.45);
}

.login-error {
    padding: 12px 14px;
    background: rgba(220, 53, 69, 0.92);
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 2px;
}

.registration-success {
    text-align: center;
    padding: 30px 16px;
}

.registration-success h3 {
    color: #000000;
    font-size: 1.75rem;
    margin-bottom: 16px;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
}

.registration-success p {
    color: #333333;
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.registration-success .btn-submit {
    display: inline-block;
    text-decoration: none;
}

.login-partners {
    text-align: center;
    padding-top: 28px;
    margin-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.partners-label {
    color: #000000;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.partners-logos a {
    display: flex;
    align-items: center;
    transition: all 0.25s ease;
    opacity: 0.75;
}

.partners-logos a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.partners-logos img {
    max-width: 100px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive Login Page */
@media (max-width: 992px) {
    .login-container {
        padding: 38px 40px;
        max-width: 500px;
    }

    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .login-wrapper {
        padding: 25px 12px;
    }

    .login-container {
        padding: 32px 28px;
    }

    .login-logo {
        margin-bottom: 20px;
    }

    .login-logo img {
        max-width: 110px;
    }

    .login-tabs {
        margin-bottom: 24px;
    }

    .login-tab {
        padding: 11px 18px;
        font-size: 0.88rem;
    }

    .form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn-submit {
        width: 100%;
    }

    .login-partners {
        padding-top: 24px;
    }

    .partners-logos {
        gap: 26px;
    }

    .partners-logos img {
        max-width: 90px;
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 28px 22px;
    }

    .login-logo img {
        max-width: 100px;
    }

    .login-tab {
        padding: 10px 14px;
        font-size: 0.82rem;
        letter-spacing: 0.06em;
    }

    .form-group input,
    .form-group textarea {
        padding: 11px 12px;
        font-size: 0.92rem;
    }

    .btn-submit {
        padding: 12px 28px;
        font-size: 0.88rem;
    }

    .partners-logos {
        gap: 22px;
    }

    .partners-logos img {
        max-width: 85px;
        max-height: 42px;
    }

    .partners-label {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }
}

/* ================================
   Single Post Page Styles
   ================================ */

.single-post-main {
    background-color: #ffffff;
    padding: 0 0 60px 0;
}

.single-post {
    background-color: #ffffff;
}

/* Full-width hero image */
.single-post-hero {
    width: 100%;
    max-height: 550px;
    overflow: hidden;
}

.single-post-hero img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

/* Content container below image */
.single-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.single-post-content {
    padding: 50px 0;
}

.single-post-header {
    margin-bottom: 40px;
    border-bottom: 3px solid #7d3fa3;
    padding-bottom: 30px;
}

.single-post-date {
    display: block;
    font-size: 0.95rem;
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.single-post-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #1a1a1a;
}

.single-post-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 50px;
}

.single-post-body p {
    margin-bottom: 20px;
}

.single-post-body h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    color: #1a1a1a;
}

.single-post-body h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    color: #1a1a1a;
}

.single-post-body img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 4px;
}

.single-post-footer {
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.back-to-news {
    display: inline-block;
    color: #7d3fa3;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.back-to-news:hover {
    color: #5a2a7a;
    text-decoration: underline;
}

/* Related Posts Section */
.related-posts-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 3px solid #7d3fa3;
}

.related-posts-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.related-post-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(125, 63, 163, 0.15);
}

.related-post-image {
    overflow: hidden;
    height: 200px;
    background-color: #e0e0e0;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-item:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.related-post-content {
    padding: 20px;
}

.related-post-date {
    display: block;
    font-size: 0.85rem;
    color: #999999;
    margin-bottom: 10px;
    font-weight: 500;
}

.related-post-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.related-post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: #7d3fa3;
}

/* Load More Button Styles */
.load-more-wrapper {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
}

.load-more-button {
    display: inline-block;
    background-color: #7d3fa3;
    color: #ffffff;
    padding: 16px 50px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
}

.load-more-button:hover {
    background-color: #5a2a7a;
    transform: translateY(-2px);
}

.load-more-button:active {
    transform: translateY(0);
}

.load-more-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.load-more-button.loading::after {
    content: " ...";
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% {
        content: " ";
    }
    40% {
        content: " .";
    }
    60% {
        content: " ..";
    }
    80%, 100% {
        content: " ...";
    }
}

.no-more-posts {
    text-align: center;
    color: #999999;
    font-size: 1rem;
    font-style: italic;
    padding: 40px 0;
}

/* Responsive Single Post */
@media (max-width: 768px) {
    .single-post-main {
        padding: 0 0 40px 0;
    }

    .single-post-hero {
        max-height: 350px;
    }

    .single-post-hero img {
        height: 350px;
    }

    .single-post-title {
        font-size: 2rem;
    }

    .single-post-content {
        padding: 30px 0;
    }

    .single-post-header {
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .single-post-body {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-posts-section {
        margin-top: 50px;
        padding-top: 40px;
    }
}

@media (max-width: 480px) {
    .single-post-main {
        padding: 0 0 30px 0;
    }

    .single-post-hero {
        max-height: 250px;
    }

    .single-post-hero img {
        height: 250px;
    }

    .single-post-title {
        font-size: 1.5rem;
    }

    .single-post-content {
        padding: 20px 0;
    }

    .single-post-header {
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .single-post-date {
        font-size: 0.85rem;
    }

    .single-post-body {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .single-post-body h2 {
        font-size: 1.3rem;
        margin: 25px 0 15px 0;
    }

    .single-post-body h3 {
        font-size: 1.1rem;
    }

    .load-more-button {
        padding: 14px 40px;
        font-size: 0.9rem;
    }
}
