/* Custom CSS for BalonDeOroChile */
:root {
    --primary-color: #424036;
    --secondary-color: #7d746c;
    --success-color: #878719;
    --light-color: #f9f9f9;
    --dark-color: #292621;
    --white-75: rgba(255, 255, 255, 0.75);
    --white-50: rgba(255, 255, 255, 0.5);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    padding-top: 76px; /* Отступ для fixed navbar */
}

html {
    scroll-behavior: smooth;
}

.text-white-75 {
    color: var(--white-75) !important;
}

.text-white-50 {
    color: var(--white-50) !important;
}

/* Header Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #878719 !important;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}
/* Footer */
.footer-section {
    background: linear-gradient(135deg, #3a3731 0%, #5c5855 100%);
}

.footer-section a:hover {
    color: var(--warning-color) !important;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content p {
    font-size: 0.9rem;
}

/* Button Styles */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 1rem 2.5rem;
}

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

/* new styles  */
/* Загальні стилі */
:root {
    --primary-color: #424036;
    --secondary-color: #7d746c;
    --success-color: #878719;
    --light-color: #f9f9f9;
    --dark-color: #292621;
    --white-75: rgba(255, 255, 255, 0.75);
    --white-50: rgba(255, 255, 255, 0.5);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Стилі для кнопок, що можуть використовуватися повторно */
.btn-accent {
    background-color: var(--success-color);
    color: white;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.8rem 2.5rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-accent:hover {
    background-color: var(--dark-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Стилі для головного екрану */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
}

.hero-content {
    padding: 2rem;
    color: white;
    margin-top: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 4px;
    background-color: var(--success-color);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 650px;
}

/* Адаптивність */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
}
/* Стилі для блоків новин та контенту */
.section-title {
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--success-color);
}

.card-custom {
    border: none;
    transition: all 0.3s ease;
    height: 100%;
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.event-item {
    border-left: 3px solid var(--success-color);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.event-date {
    color: var(--secondary-color);
    font-weight: 600;
}

.carousel-control-prev, .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--success-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-indicators li {
    background-color: var(--success-color);
}

.analytics-item {
    padding: 1.5rem;
    border-radius: 8px;
    background-color: var(--light-color);
    margin-bottom: 1rem;
    border-left: 3px solid var(--success-color);
}

.moment-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--success-color);
    opacity: 0.2;
    position: absolute;
    top: 0;
    right: 1rem;
}

.bg-light-custom {
    background-color: var(--light-color);
}
/* Додаткові стилі для унікальності блоків */

/* Покращення для карток новин */
.card-custom {
    border: none;
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.card-custom .card-body {
    padding: 1.5rem;
}

.card-custom .card-title {
    font-weight: 700;
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.card-custom .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--success-color);
}

/* Унікальний стиль для карусельного блоку */
#newsCarousel {
    padding-bottom: 2.5rem;
}

#newsCarousel .carousel-control-prev, 
#newsCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--success-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

#newsCarousel .carousel-control-prev:hover, 
#newsCarousel .carousel-control-next:hover {
    opacity: 1;
    background-color: var(--dark-color);
}

#newsCarousel .carousel-indicators {
    bottom: -5px;
}

#newsCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    opacity: 0.5;
    margin: 0 5px;
}

#newsCarousel .carousel-indicators button.active {
    background-color: var(--success-color);
    opacity: 1;
}

/* Унікальний стиль для найкращих моментів тижня */
.moment-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.moment-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--success-color);
    opacity: 0.15;
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
    transition: all 0.3s ease;
}

.card-custom:hover .moment-number {
    opacity: 0.25;
    transform: scale(1.1);
}

.card-custom .card-img-top {
    transition: all 0.5s ease;
}

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

/* Стилізація блоку аналітики */
.analytics-item {
    padding: 1.8rem;
    border-radius: 12px;
    background-color: var(--light-color);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--success-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.analytics-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--success-color);
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
}

.analytics-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.analytics-item:hover::before {
    opacity: 0.05;
}

.analytics-item h5 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
}

.analytics-item .material-icons {
    background-color: var(--success-color);
    color: white;
    padding: 5px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Унікальний стиль для блоку подій */
.event-item {
    position: relative;
    border-left: 4px solid var(--success-color);
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    margin-bottom: 2rem;
    background-color: white;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.event-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 1.5rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--success-color);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--success-color);
}

.event-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.event-date {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.event-item h5 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

/* Покращення для секцій */
.section-title {
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    font-size: 2.2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--success-color);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 1px;
    background-color: var(--secondary-color);
    opacity: 0.3;
}

/* Фонові елементи */
.bg-light-custom {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.bg-light-custom::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background-color: var(--success-color);
    opacity: 0.05;
    border-radius: 50%;
}

.bg-light-custom::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background-color: var(--success-color);
    opacity: 0.05;
    border-radius: 50%;
}

/* Додаткові анімації при наведенні */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-accent:hover {
    animation: pulse 1s infinite;
    background-color: var(--dark-color);
    color: white;
}
/* Стилі для блоків 1.6-2.3 */

/* Освітній блок про ставки */
.education-section {
    background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.education-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--success-color) 0%, var(--dark-color) 100%);
}

.education-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.education-section h3 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.education-section h3 .material-icons {
    background-color: var(--success-color);
    color: white;
    padding: 5px;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 1.4rem;
}

.responsibility-box {
    background-color: rgba(135, 135, 25, 0.1);
    border-left: 4px solid var(--success-color);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
}

.responsibility-box h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Цікаві факти про спорт */
.facts-container {
    position: relative;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.fact-item {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    margin-bottom: 1.5rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.fact-item:last-child {
    margin-bottom: 0;
}

.fact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fact-item::before {
    content: "\2605";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success-color);
    font-size: 1.5rem;
}

.fact-item h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Місія та цілі */
.mission-section {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background-color: var(--light-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.mission-content {
    padding: 3rem;
}

.mission-image {
    height: 100%;
    object-fit: cover;
}

.mission-title {
    color: var(--dark-color);
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--success-color);
}

.mission-text {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.mission-value-tag {
    background-color: rgba(135, 135, 25, 0.1);
    color: var(--success-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.mission-value-tag .material-icons {
    font-size: 1rem;
    margin-right: 5px;
}

/* Чому ми */
.why-us-container {
    padding: 2rem;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.advantage-item {
    display: flex;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.advantage-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.advantage-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(135, 135, 25, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.advantage-icon .material-icons {
    color: var(--success-color);
    font-size: 2rem;
}

.advantage-content h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.advantage-content p {
    color: var(--secondary-color);
    line-height: 1.7;
}

/* Наша команда */
.team-section {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-content {
    padding: 3rem;
}

.team-image-container {
    position: relative;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    border-radius: 0 16px 16px 0;
}

.team-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    color: white;
}

.team-experience {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 1.5rem;
}

.experience-badge {
    background-color: var(--light-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.experience-badge .material-icons {
    font-size: 1rem;
    margin-right: 5px;
    color: var(--success-color);
}

/* Загальні стилі для секцій */
.section-highlight {
    color: var(--success-color);
    font-weight: 700;
}

.diagonal-background {
    position: relative;
    overflow: hidden;
}

.diagonal-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(135, 135, 25, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    z-index: -1;
}
/* Стилі для блоків 3.1 і 3.2 */

/* Футбольні новини */
.news-featured-container {
    margin-bottom: 3rem;
}

.news-featured {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    background-color: white;
}

.news-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.news-featured-content {
    padding: 1.5rem;
}

.news-category {
    display: inline-block;
    background-color: var(--success-color);
    color: white;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.news-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: block;
}

.news-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.3;
}

.news-excerpt {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-link {
    color: var(--success-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--dark-color);
}

.news-link .material-icons {
    font-size: 1.1rem;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.news-link:hover .material-icons {
    transform: translateX(3px);
}

/* Інші спортивні новини */
.other-sports-section {
    background-color: var(--light-color);
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.sports-news-container {
    padding: 2rem;
}

.sports-news-row {
    margin-bottom: 2rem;
    display: flex;
    align-items: stretch;
}

.sports-news-row:last-child {
    margin-bottom: 0;
}

.sports-news-content {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.sports-news-image {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.sports-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.sport-news-item {
    position: relative;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sport-news-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.sport-type {
    display: inline-block;
    font-size: 0.8rem;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.type-basketball {
    background-color: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.type-tennis {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.type-athletics {
    background-color: rgba(33, 150, 243, 0.1);
    color: #2196f3;
}

.sport-news-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.sport-news-text {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Анімації для новинних блоків */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-featured {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.news-featured:nth-child(1) {
    animation-delay: 0.1s;
}

.news-featured:nth-child(2) {
    animation-delay: 0.2s;
}

.news-featured:nth-child(3) {
    animation-delay: 0.3s;
}

.news-featured:nth-child(4) {
    animation-delay: 0.4s;
}

/* Стилі для десктопів */
@media (min-width: 992px) {
    .news-featured-img {
        height: 200px;
    }
    
    .news-title {
        min-height: 3.5rem;
    }
}

/* Стилі для планшетів і мобільних */
@media (max-width: 991.98px) {
    .sports-news-image {
        margin-bottom: 1.5rem;
        height: 200px;
    }
    
    .sports-news-row {
        flex-direction: column;
    }
    
    .sports-news-content {
        order: 2;
    }
    
    .col-md-4 {
        margin-bottom: 1.5rem;
    }
}
/* Стилі для блоків 4.1, 4.2, 4.3 */

/* Чемпіонати та турніри */
.results-section {
    background-color: var(--light-color);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.results-bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 35%;
    z-index: 0;
    opacity: 0.15;
    object-fit: cover;
}

.results-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
}

.match-result-item {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.match-result-item:last-child {
    margin-bottom: 0;
}

.match-result-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.match-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.match-tournament {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.match-date {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.match-team {
    display: flex;
    align-items: center;
    font-weight: 700;
}

.match-score {
    background-color: var(--dark-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    margin: 0 1rem;
}

.match-team-winner {
    color: var(--success-color);
}

.match-description {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Трансфери та зміни в командах */
.transfers-section {
    border-radius: 16px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.transfers-container {
    display: flex;
    flex-direction: column;
}

.transfers-content {
    padding: 2.5rem;
    order: 1;
}

.transfers-image {
    order: 2;
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

.transfers-title {
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.transfers-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--success-color);
}

.transfers-text {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.transfer-highlight {
    background-color: rgba(135, 135, 25, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.transfer-highlight h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.transfer-highlight p {
    margin-bottom: 0;
}

.coach-change {
    display: flex;
    margin-top: 1.5rem;
}

.coach-old {
    text-decoration: line-through;
    color: #f44336;
    margin-right: 1rem;
}

.coach-arrow {
    margin: 0 0.5rem;
    color: var(--secondary-color);
}

.coach-new {
    color: var(--success-color);
    font-weight: 600;
}

/* Майбутні події */
.upcoming-events-section {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--dark-color) 0%, #3a3631 100%);
    border-radius: 16px;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.upcoming-events-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center center;
    opacity: 0.1;
}

.upcoming-title {
    color: white;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.upcoming-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--success-color);
}

.upcoming-events-list {
    position: relative;
    z-index: 1;
}

.upcoming-event {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border-left: 3px solid var(--success-color);
}

.upcoming-event:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.upcoming-event:last-child {
    margin-bottom: 0;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.event-competition {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.event-datetime {
    background-color: var(--success-color);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.event-teams {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.event-vs {
    margin: 0 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 0.9rem;
}

.event-preview {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    margin-top: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: var(--success-color);
    transform: translateY(-3px);
}

.view-all-btn .material-icons {
    margin-left: 0.5rem;
    font-size: 1.1rem;
}

/* Адаптивні стилі */
@media (min-width: 992px) {
    .transfers-container {
        flex-direction: row;
        align-items: stretch;
    }
    
    .transfers-content {
        width: 60%;
        order: 1;
    }
    
    .transfers-image {
        width: 40%;
        height: auto;
        order: 2;
    }
}

@media (max-width: 767.98px) {
    .match-teams {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .match-team {
        margin-bottom: 0.5rem;
    }
    
    .match-score {
        margin: 0.5rem 0;
    }
    
    .results-bg {
        width: 50%;
    }
}
/* Стилі для блоку контактів */
.contact-section {
    background-color: var(--light-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-container {
    display: flex;
    flex-direction: column;
}

.contact-info {
    padding: 3rem;
    order: 1;
}

.contact-map {
    height: 450px;
    order: 2;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-title {
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--success-color);
}

.contact-text {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background-color: rgba(135, 135, 25, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon .material-icons {
    color: var(--success-color);
    font-size: 1.5rem;
}

.contact-detail-content h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-detail-content p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background-color: var(--success-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Стилі для форми зворотного зв'язку */
.form-section {
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--success-color);
}

.form-title {
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--success-color);
}

.form-description {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form .form-control {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--success-color);
    box-shadow: 0 0 0 3px rgba(135, 135, 25, 0.1);
}

.contact-form .invalid-feedback {
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.btn-submit {
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover:not(:disabled) {
    background-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Адаптивні стилі */
@media (min-width: 992px) {
    .contact-container {
        flex-direction: row;
    }
    
    .contact-info {
        width: 50%;
    }
    
    .contact-map {
        width: 50%;
        height: auto;
    }
    
    .contact-form .row {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .contact-form .col-md-6:first-child {
        margin-bottom: 1.5rem;
    }
}
/* Стилі для футера */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--success-color) 0%, var(--dark-color) 100%);
}

.footer-title {
    color: var(--success-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--success-color);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--success-color);
    margin-bottom: 1rem;
    display: inline-block;
    text-decoration: none;
}

.footer-logo:hover {
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
    color: var(--success-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-item {
    margin-bottom: 0.8rem;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-nav-link:hover {
    color: var(--success-color);
    transform: translateX(5px);
}

.footer-nav-link .material-icons {
    font-size: 1rem;
    margin-right: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-nav-link:hover .material-icons {
    opacity: 1;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--success-color);
}

@media (max-width: 767.98px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .footer-link {
        margin: 0 0.75rem;
    }
}