* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

::-webkit-scrollbar {
    width: 12px;
    background: #f8f9fa;
}

::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    background-color: #006400;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.2) 5px, rgba(255, 255, 255, 0.2) 10px);
    border-radius: 6px;
    border: 2px solid #f8f9fa;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #008000;
}

body {
    background-color: #eaf0ec;
    color: #1a1a1a;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('../img/flaga-tlo.webp') center/cover no-repeat;
    opacity: 0.08;
    z-index: -3;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(ellipse at 50% 50%, transparent 60%, rgba(0, 100, 0, 0.08) 100%);
    z-index: -2;
    pointer-events: none;
}

.main-header {
    color: white;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: none;
    animation: slideDown 0.8s ease-out;
    transition: all 0.4s ease;
}

.main-header.scrolled {
    background-color: rgba(0, 100, 0, 0.95);
    padding: 0.7rem 3rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.main-header.scrolled::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 30px;
    background: linear-gradient(to bottom,
            #0c913d 0%, #0c913d 20%,
            transparent 20%, transparent 40%,
            #ffffff 40%, #ffffff 60%,
            transparent 60%, transparent 80%,
            #0c913d 80%, #0c913d 100%);
    z-index: 1001;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 1001;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 15px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background-color: #a8e6cf !important;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 70%;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ffffff;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 100, 0, 0.95);
    min-width: 220px;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    padding: 12px 25px;
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #2ecc71;
}

.btn-join {
    background-color: #fff;
    color: #006400;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 50, 0, 0.6));
    z-index: -1;
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    z-index: 2;
    margin-top: -8vh;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-center-logo {
    max-height: 160px;
    width: auto;
    margin-bottom: 5px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
    animation: floatLogo 6s ease-in-out infinite;
}

.hero-content h2 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.season-badge {
    display: inline-block;
    background-color: rgba(0, 100, 0, 0.7);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(168, 230, 207, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.btn-primary {
    background-color: #006400;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #006400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: #a8e6cf;
    color: #004000;
    border-color: #a8e6cf;
    box-shadow: 0 5px 15px rgba(168, 230, 207, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    text-transform: uppercase;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: white;
    color: #006400;
}

.match-center {
    transform: translateY(-50px);
    z-index: 10;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.match-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.match-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    text-align: center;
    border-top: 5px solid #006400;
}

.match-box h3 {
    color: #555;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.league-name {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 20px;
}

.score-board {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.team {
    font-weight: bold;
    font-size: 1.2rem;
}

.score {
    font-size: 2rem;
    font-weight: 900;
    background: #f4f4f4;
    padding: 10px 20px;
    border-radius: 8px;
}

.win {
    color: #006400;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid #006400;
    color: #006400;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #006400;
    color: white;
}

.light-outline {
    border-color: white;
    color: white;
}

.light-outline:hover {
    background: white;
    color: #006400;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 900;
    position: relative;
    padding-bottom: 20px;
}

.section-title.text-left {
    justify-content: flex-start;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #006400;
    border-radius: 2px;
}

.section-title.text-left::after {
    left: 0;
    transform: none;
}

.title-icon {
    color: #006400;
    background: rgba(168, 230, 207, 0.3);
    width: 55px;
    height: 55px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
    text-align: center;
}

.title-icon::before {
    display: block;
    margin: auto;
}

.history-title .title-icon {
    color: #a8e6cf;
    background: rgba(255, 255, 255, 0.1);
}

.latest-news {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: -10px;
    text-align: center;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.news-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img {
    transform: scale(1.1);
}

.news-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 100, 0, 0.9);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 15px;
}

.news-meta i {
    color: #006400;
    margin-right: 4px;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.4;
}

.news-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-footer {
    margin-top: auto;
}

.read-more-btn {
    text-decoration: none;
    color: #006400;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more-btn:hover {
    gap: 12px;
}

.btn-all-news {
    display: inline-block;
    padding: 15px 35px;
    background: #fff;
    border: 2px solid #006400;
    color: #006400;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-all-news:hover {
    background: #006400;
    color: #fff;
}

.news-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    display: block;
}

.news-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #006400;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.all-news-action {
    text-align: center;
    margin-top: 50px;
}

.news-card:hover .news-img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-date {
    color: #006400;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.news-content h3 {
    margin: 10px 0;
    font-size: 1.3rem;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #006400;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    text-decoration: underline;
}

.academy-overview {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 80px auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.academy-content {
    flex: 1;
    min-width: 300px;
    padding: 50px;
}

.academy-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.academy-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #006400;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 100, 0, 0.1);
}

.feature-icon {
    background: rgba(0, 100, 0, 0.1);
    color: #006400;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.3;
}

.academy-features {
    list-style: none;
    margin-bottom: 30px;
}

.academy-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
}

.academy-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #006400;
    font-weight: bold;
}

.academy-image {
    flex: 1;
    min-width: 300px;
}

.academy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.academy-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.academy-logo-circle {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #a8e6cf;
    flex-shrink: 0;
}

.academy-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.club-history {
    position: relative;
    background: url('../img/kibice.webp') center/cover fixed;
    padding: 100px 20px;
    margin-top: 80px;
    color: white;
    overflow: hidden;
}

.history-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 75% 50%, rgba(168, 230, 207, 0.15) 0%, transparent 55%),
        linear-gradient(135deg, rgba(0, 40, 0, 0.9) 0%, rgba(0, 10, 0, 0.95) 100%);
    z-index: 1;
}

.history-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.history-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.history-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #ffffff;
}

.history-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.history-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
    border-color: rgba(168, 230, 207, 0.6);
    box-shadow: 0 15px 40px rgba(168, 230, 207, 0.25);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #a8e6cf;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 700;
}

.sponsors-section {
    padding: 80px 20px;
    text-align: center;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.sponsor-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
    cursor: pointer;
}

.sponsor-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 100, 0, 0.15);
}

.sponsor-action {
    margin-top: 30px;
}

.main-footer {
    background: linear-gradient(to right, #0a0f0d, #111a14);
    color: white;
    padding: 80px 20px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #006400;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, rgba(168, 230, 207, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 25px;
}

.club-info p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.club-info p i {
    color: #a8e6cf;
    width: 15px;
    text-align: center;
}

.club-info a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.club-info a:hover {
    color: #a8e6cf;
}

.office-hours {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #888 !important;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
    width: fit-content;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #006400;
}

.quick-links ul {
    list-style: none;
}

.quick-links ul li {
    margin-bottom: 12px;
}

.quick-links ul li a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-links ul li a i {
    font-size: 0.8rem;
    color: #006400;
    transition: transform 0.3s ease;
}

.quick-links ul li a:hover {
    color: #a8e6cf;
    transform: translateX(5px);
}

.quick-links ul li a:hover i {
    color: #a8e6cf;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    transform: translateY(-5px);
    background: #006400;
    border-color: #a8e6cf;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 100, 0, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    padding: 40px 20px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.copyright strong {
    color: #fff;
}

.creator-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.creator-card {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 20px 10px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.creator-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(46, 204, 113, 0.3);
    transform: translateY(-2px);
}

.creator-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #2ecc71;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.2);
}

.creator-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-info {
    text-align: left;
}

.creator-label {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.creator-name {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.creator-name i {
    color: #2ecc71;
    font-size: 0.9rem;
}

.creator-links {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
}

.c-link {
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s ease;
}

.c-link:hover {
    opacity: 0.8;
}

.c-link.web {
    color: #ff4d4d;
}

.c-link.fb {
    color: #1877F2;
}

.creator-pitch {
    color: #ffcc66;
    font-size: 0.85rem;
    text-align: right;
    line-height: 1.5;
    font-weight: 500;
    max-width: 350px;
}

.scroll-top-btn {
    position: fixed;
    bottom: -80px;
    right: 30px;
    background-color: #006400;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    text-decoration: none;
}

.scroll-top-btn.show {
    bottom: 30px;
}

.scroll-top-btn:hover {
    background-color: #a8e6cf;
    color: #006400;
    transform: translateY(-5px);
}

@keyframes floatLogo {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
}

.animate-slide-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 1.5s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.web-partners-wrapper {
    max-width: 800px;
    margin: 60px auto 50px;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 100, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.web-partners-header {
    text-align: left;
    flex: 1;
    min-width: 250px;
    border-right: 2px solid #eaeaea;
    padding-right: 20px;
}

.web-partners-header h3 {
    font-size: 1.2rem;
    color: #004000;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.web-partners-header p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.web-partners-logos {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex: 1.5;
    min-width: 250px;
}

.web-partner-logo {
    height: 45px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.web-partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

.web-partners-logos {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex: 1.5;
    min-width: 250px;
    flex-wrap: wrap;
}

.web-partner-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
    cursor: pointer;
}

.web-partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 100, 0, 0.15);
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.2);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0;
        margin-top: 10px;
        border-radius: 5px;
    }

    .dropdown.active .dropdown-menu,
    .dropdown:hover .dropdown-menu {
        display: flex;
    }

    .footer-col h4 {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer-col {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero {
        padding-top: 90px !important;
        padding-bottom: 40px !important;
        min-height: 100dvh !important;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .creator-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        border-radius: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .creator-info {
        text-align: center;
    }

    .creator-name {
        justify-content: center;
    }

    .creator-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .creator-pitch {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .web-partners-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .web-partners-header {
        text-align: center;
        border-right: none;
        border-bottom: 2px solid #eaeaea;
        padding-right: 0;
        padding-bottom: 20px;
    }
}

@media (max-width: 900px) {
    .main-footer {
        padding: 50px 15px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0;
    }

    .footer-logo {
        margin: 0 auto 20px auto;
        display: block;
    }

    .club-info p {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .quick-links ul li a {
        justify-content: center;
        padding: 8px 0;
    }

    .footer-social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-bottom {
        padding: 30px 15px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 25px;
    }

    .creator-section {
        align-items: center;
        width: 100%;
    }

    .creator-pitch {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .creator-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        border-radius: 20px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .creator-info {
        text-align: center;
    }

    .creator-name {
        justify-content: center;
    }

    .creator-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .creator-pitch {
        font-size: 0.8rem;
        padding: 0 10px;
    }

    .copyright {
        font-size: 0.8rem;
        line-height: 1.5;
        padding: 0 10px;
    }
}

@media (max-width: 900px) {
    .main-header {
        padding: 1rem 2rem;
    }

    .main-header .logo {
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .main-header.scrolled .logo {
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
    }

    .desktop-only {
        display: none;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 100, 0, 0.98);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    nav.active {
        max-height: 500px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 15px 0;
    }

    nav ul li {
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 15px;
        font-size: 1rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        margin-top: 0;
    }

    .hero-center-logo {
        max-height: 120px;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .match-box {
        background: white;
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        flex: 1;
        min-width: 300px;
        text-align: center;
        border-top: 5px solid #006400;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .match-box::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        height: 85%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.04;
        z-index: -1;
        pointer-events: none;
    }

    .match-header {
        text-align: center;
        margin-bottom: 25px;
    }

    .match-header h3 {
        color: #1a1a1a;
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .league-name {
        color: #888;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .score-board-enhanced {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-bottom: 25px;
    }

    .team-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100px;
    }

    .team-logo {
        width: 70px !important;
        height: 70px !important;
        max-width: 100%;
        object-fit: contain;
        margin-bottom: 10px;
        filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    }

    .team-name {
        font-weight: 700;
        color: #333;
        text-align: center;
        font-size: 0.95rem;
    }

    .score-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 100px;
    }

    .score {
        font-size: 1.6rem;
        font-weight: 900;
        color: #004000;
        line-height: 1;
    }

    .score.vs {
        font-size: 1.8rem;
        color: #333;
    }

    .match-status,
    .match-date {
        font-size: 0.85rem;
        color: #666;
        margin-top: 5px;
        font-weight: bold;
    }

    .match-details {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #eee;
        font-size: 0.9rem;
        color: #555;
        line-height: 1.6;
    }

    .countdown-wrapper {
        background: #f8f9fa;
        padding: 15px;
        border-radius: 12px;
        margin-top: 20px;
    }

    .countdown {
        display: flex;
        justify-content: space-around;
        text-align: center;
    }

    .time-box {
        display: flex;
        flex-direction: column;
        color: #888;
        font-size: 0.75rem;
        text-transform: uppercase;
        font-weight: 700;
    }

    .time-box span {
        font-size: 1.5rem;
        color: #006400;
        font-weight: 900;
        margin-bottom: 2px;
    }


    .academy-overview {
        flex-direction: column;
    }

    .academy-content {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .section-title.text-left {
        justify-content: center;
    }

    .section-title.text-left::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .title-icon {
        margin-right: 0;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .academy-heading {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .history-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .history-text {
        text-align: center;
    }

    .history-title {
        text-align: center;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .club-info p,
    .quick-links ul li a {
        justify-content: center;
    }

    .footer-logo {
        margin: 0 auto 25px auto;
        display: block;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .creator-section {
        align-items: center;
    }

    .creator-pitch {
        text-align: center;
    }
}

/* --- POPRAWKI MOBILNE DLA HISTORII I AKADEMII --- */
@media (max-width: 992px) {
    /* Zmiana układu z poziomego na pionowy */
    .history-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .history-text {
        text-align: center;
        margin: 0 auto;
    }
}


@media (max-width: 768px) {
    .history-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px;
    }

    .stat-box {
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .match-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .match-box {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 25px 15px;
    }

    .score-board-enhanced {
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    .team-col {
        width: 30%;
        min-width: 75px;
    }

    .team-logo {
        width: 55px !important;
        height: 55px !important;
    }

    .score {
        font-size: 2.2rem;
    }

    .score.vs {
        font-size: 1.5rem;
    }

    .team-name {
        font-size: 0.85rem;
    }

    .match-date {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .score-board {
        flex-direction: column;
        gap: 10px;
    }

    .history-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .match-center {
        transform: translateY(0);
        margin-top: 40px;
        padding: 0 20px;
    }

    .match-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .match-container {
        grid-template-columns: 1fr;
    }
}