/* Блок: page */
.page {
    margin: 0;
    padding: 0;
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    color: #ffffff;
}

/* Блок: header */
.header {
    background: linear-gradient(135deg, #000000, #8B0000);
    color: white;
    box-shadow: 0 2px 10px rgba(139, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #FF8C00;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

/* Элемент: header__logo */
.header__logo {
    flex: 1;
}

/* Блок: logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.logo__img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px #FF8C00);
    font-size: 2rem;
}

.logo__text {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FF8C00;
    text-shadow: 1px 1px 2px #000000;
}

/* Блок: nav */
.nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Элемент: nav__item */
.nav__item {
    margin-left: 2rem;
}

/* Элемент: nav__link */
.nav__link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav__link:hover {
    background-color: rgba(255, 140, 0, 0.2);
    border-color: #FF8C00;
}

/* Модификатор: nav__item--active */
.nav__item--active .nav__link {
    background-color: rgba(139, 0, 0, 0.3);
    border: 1px solid #FF8C00;
    font-weight: bold;
    color: #FF8C00;
}

/* Блок: main */
.main {
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

/* Блок: hero */
.hero {
    background: linear-gradient(135deg, #000000, #8B0000);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #FF8C00;
}

.hero__container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero__content {
    flex: 1;
    padding-right: 3rem;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #FF8C00;
}

.hero__text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ffffff;
}

.hero__stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

/* Блок: stat */
.stat {
    text-align: center;
    background: rgba(139, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #FF8C00;
}

.stat__number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF8C00;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px #000000;
}

.stat__label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #ffffff;
}

.hero__image {
    flex: 1;
    text-align: center;
}

.hero__img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
    border: 3px solid #FF8C00;
    font-size: 8rem;
}

/* Блок: matches-preview */
.matches-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a, #000000);
    border-bottom: 2px solid #8B0000;
}

.matches-preview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.matches-preview__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FF8C00;
    position: relative;
}

.matches-preview__title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #FF8C00;
    margin: 1rem auto;
    box-shadow: 0 0 10px #FF8C00;
}

.matches-preview__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Блок: match-card */
.match-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
    border-left: 4px solid #FF8C00;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
    border-color: #FF8C00;
}

.match-card__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #ccc;
}

.match-card__tournament {
    background: #8B0000;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    border: 1px solid #FF8C00;
}

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

.match-card__team {
    display: flex;
    align-items: center;
    flex: 1;
}

.match-card__team--home {
    justify-content: flex-start;
}

.match-card__team--away {
    justify-content: flex-end;
}

.match-card__team-name {
    font-weight: bold;
    margin: 0 0.5rem;
    color: #ffffff;
}

.match-card__team-logo {
    font-size: 1.5rem;
}

.match-card__score {
    display: flex;
    align-items: center;
    margin: 0 1rem;
}

.match-card__score-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FF8C00;
    text-shadow: 1px 1px 2px #000000;
}

.match-card__score-divider {
    font-size: 1.8rem;
    margin: 0 0.5rem;
    color: #8B0000;
}

.match-card__details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #ccc;
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.match-card__overtime {
    color: #FF8C00;
    font-weight: bold;
}

.match-card__link {
    color: #FF8C00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.match-card__link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.matches-preview__footer {
    text-align: center;
}

/* Блок: button */
.button {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Модификатор: button--primary */
.button--primary {
    background: linear-gradient(135deg, #8B0000, #000000);
    color: #FF8C00;
    border: 2px solid #FF8C00;
}

.button--primary:hover {
    background: linear-gradient(135deg, #000000, #8B0000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
    color: #ffffff;
}

/* Модификатор: button--secondary */
.button--secondary {
    background: transparent;
    color: #FF8C00;
    border: 2px solid #FF8C00;
}

.button--secondary:hover {
    background: #FF8C00;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

/* Блок: about-preview */
.about-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000000, #8B0000);
    color: white;
    border-bottom: 3px solid #FF8C00;
}

.about-preview__container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-preview__content {
    flex: 1;
    padding-right: 3rem;
}

.about-preview__title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    color: #FF8C00;
}

.about-preview__text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    color: #ffffff;
}

.about-preview__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Блок: feature */
.feature {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid #FF8C00;
}

.feature__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #FF8C00;
}

.feature__text {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #ffffff;
}

.about-preview__image {
    flex: 1;
    text-align: center;
}

.about-preview__img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 3px solid #FF8C00;
    font-size: 8rem;
}

/* Блок: page-header */
.page-header {
    background: linear-gradient(135deg, #000000, #8B0000);
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid #FF8C00;
}

.page-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-header__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    color: #FF8C00;
}

.page-header__text {
    font-size: 1.2rem;
    opacity: 0.9;
    color: #ffffff;
}

/* Блок: matches */
.matches {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.matches__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.matches__filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.matches__filter {
    padding: 0.7rem 1.5rem;
    border: 2px solid #FF8C00;
    background: transparent;
    color: #FF8C00;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.matches__filter:hover {
    background: rgba(255, 140, 0, 0.1);
}

.matches__filter--active {
    background: #8B0000;
    color: #FF8C00;
    border-color: #FF8C00;
}

.matches__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Блок: match */
.match {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(139, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    border: 1px solid #333;
}

.match:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
    border-color: #FF8C00;
}

.match--home {
    border-left-color: #FF8C00;
}

.match--away {
    border-left-color: #8B0000;
}

.match--completed {
    opacity: 1;
}

.match--upcoming {
    opacity: 0.8;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.match__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2rem;
    min-width: 60px;
}

.match__day {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FF8C00;
    text-shadow: 1px 1px 2px #000000;
}

.match__month {
    font-size: 0.9rem;
    color: #ccc;
    text-transform: lowercase;
}

.match__info {
    flex: 1;
}

.match__teams {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.match__team {
    display: flex;
    align-items: center;
    flex: 1;
}

.match__team--home {
    justify-content: flex-start;
}

.match__team--away {
    justify-content: flex-end;
}

.match__team-name {
    font-weight: bold;
    margin: 0 0.5rem;
    font-size: 1.1rem;
    color: #ffffff;
}

.match__team-logo {
    font-size: 1.3rem;
}

.match__score {
    display: flex;
    align-items: center;
    margin: 0 1rem;
}

.match__score-home,
.match__score-away {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF8C00;
    min-width: 30px;
    text-align: center;
    text-shadow: 1px 1px 2px #000000;
}

.match__score-divider {
    font-size: 1.5rem;
    margin: 0 0.5rem;
    color: #8B0000;
}

.match__time {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FF8C00;
    text-shadow: 1px 1px 2px #000000;
}

.match__details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #ccc;
}

.match__tournament {
    font-weight: 600;
    color: #FF8C00;
}

.match__arena {
    font-style: italic;
}

.match__overtime {
    color: #FF8C00;
    font-weight: bold;
}

.match__status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid;
}

.match__status--win {
    background: rgba(139, 0, 0, 0.3);
    color: #FF8C00;
    border-color: #FF8C00;
}

.match__status--loss {
    background: rgba(139, 0, 0, 0.3);
    color: #ff4444;
    border-color: #ff4444;
}

.match__status--upcoming {
    background: rgba(255, 140, 0, 0.2);
    color: #FF8C00;
    border-color: #FF8C00;
}

/* Блок: team */
.team {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.team__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team__section {
    margin-bottom: 3rem;
}

.team__section-title {
    font-size: 2rem;
    color: #FF8C00;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FF8C00;
    text-shadow: 1px 1px 2px #000000;
}

.team__players {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

/* Блок: player */
.player {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(139, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-left: 4px solid #FF8C00;
    border: 1px solid #333;
}

.player:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
    border-color: #FF8C00;
}

.player__number {
    font-size: 2rem;
    font-weight: bold;
    color: #FF8C00;
    margin-right: 1.5rem;
    min-width: 50px;
    text-align: center;
    text-shadow: 1px 1px 2px #000000;
}

.player__info {
    flex: 1;
}

.player__name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FF8C00;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px #000000;
}

.player__details {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.player__stats {
    font-size: 0.9rem;
    color: #FF8C00;
    font-weight: 600;
}

.player__photo {
    margin-left: 1.5rem;
}

.player__img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FF8C00;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team__coaches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Блок: coach */
.coach {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(139, 0, 0, 0.2);
    border-top: 4px solid #FF8C00;
    border: 1px solid #333;
}

.coach__name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FF8C00;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px #000000;
}

.coach__position {
    font-size: 1rem;
    color: #FF8C00;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
}

.coach__bio {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

/* Блок: footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 3px solid #FF8C00;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    border-bottom: 1px solid #333;
}

.footer__info {
    flex: 1;
}

.footer__logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer__logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px #FF8C00);
    font-size: 1.5rem;
}

.footer__logo-text {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #FF8C00;
}

.footer__address {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
    color: #ccc;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0 2rem;
}

.footer__link {
    color: #FF8C00;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer__link:hover {
    color: #ffffff;
}

.footer__social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__social-link {
    color: #FF8C00;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer__social-link:hover {
    color: #ffffff;
}

.footer__copyright {
    text-align: center;
    padding-top: 1rem;
}

.footer__copyright-text {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
    color: #ccc;
}

/* Стили для кликабельных карточек */
.match-card--clickable,
.player--clickable,
.coach--clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.match-card--clickable:hover::after,
.player--clickable:hover::after,
.coach--clickable:hover::after {
    content: '↗';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF8C00;
    color: #000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.match-card--clickable:hover,
.player--clickable:hover,
.coach--clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
    border-color: #FF8C00;
}

/* Стили для детальных страниц */
.detail-page {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    min-height: 100vh;
}

.detail-header {
    background: linear-gradient(135deg, #000000, #8B0000);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid #FF8C00;
}

.detail-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.detail-header__title {
    font-size: 2.5rem;
    color: #FF8C00;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.detail-header__subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
}

.detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Стили для страницы матча */
.match-detail {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #FF8C00;
}

.match-detail__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.match-detail__date {
    font-size: 1.2rem;
    color: #FF8C00;
}

.match-detail__tournament {
    background: #8B0000;
    color: #FF8C00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

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

.match-detail__team {
    text-align: center;
    flex: 1;
}

.match-detail__team-logo {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.match-detail__team-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF8C00;
}

.match-detail__score {
    font-size: 3rem;
    font-weight: bold;
    color: #FF8C00;
    margin: 0 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.match-detail__info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.match-detail__arena,
.match-detail__attendance,
.match-detail__status {
    text-align: center;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    border: 1px solid #333;
}

.match-detail__statistics {
    margin-top: 2rem;
}

.match-detail__stats-title {
    font-size: 1.5rem;
    color: #FF8C00;
    margin-bottom: 1rem;
    text-align: center;
}

.match-detail__stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.match-detail__stat {
    text-align: center;
    padding: 1rem;
    background: rgba(139, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid #FF8C00;
}

.match-detail__stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #FF8C00;
    margin-bottom: 0.5rem;
}

.match-detail__stat-label {
    font-size: 0.9rem;
    color: #ccc;
}

.match-detail__goals {
    margin-top: 2rem;
}

.match-detail__goals-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.match-detail__goal {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background: rgba(0,0,0,0.2);
    border-radius: 5px;
    border-left: 3px solid #FF8C00;
}

.match-detail__goal-time {
    font-weight: bold;
    color: #FF8C00;
    min-width: 60px;
}

.match-detail__goal-team {
    font-weight: bold;
    min-width: 100px;
}

.match-detail__goal-scorer {
    flex: 1;
    text-align: right;
    color: #ccc;
}

/* Стили для страницы игрока */
.player-detail {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #FF8C00;
}

.player-detail__photo {
    text-align: center;
}

.player-detail__img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FF8C00;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    font-size: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-detail__number {
    font-size: 4rem;
    font-weight: bold;
    color: #FF8C00;
    text-align: center;
    margin-top: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.player-detail__info {
    padding: 1rem 0;
}

.player-detail__name {
    font-size: 2.5rem;
    color: #FF8C00;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.player-detail__position {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.player-detail__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.player-detail__stat {
    text-align: center;
    padding: 1rem;
    background: rgba(139, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid #FF8C00;
}

.player-detail__stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #FF8C00;
    margin-bottom: 0.5rem;
}

.player-detail__stat-label {
    font-size: 0.9rem;
    color: #ccc;
}

.player-detail__bio {
    line-height: 1.6;
    color: #ccc;
}

.player-detail__bio h3 {
    color: #FF8C00;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.player-detail__bio ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.player-detail__bio li {
    margin-bottom: 0.5rem;
}

.player-detail__season-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.player-detail__season-stat {
    padding: 0.8rem;
    background: rgba(0,0,0,0.3);
    border-radius: 5px;
    border-left: 3px solid #FF8C00;
}

/* Стили для кнопки назад */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #8B0000;
    color: #FF8C00;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #FF8C00;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.back-button:hover {
    background: #FF8C00;
    color: #000000;
    transform: translateX(-5px);
}

/* Стили для магазина */
.shop {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.shop__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.shop__filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.shop__filter {
    padding: 0.8rem 1.5rem;
    border: 2px solid #FF8C00;
    background: transparent;
    color: #FF8C00;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.shop__filter:hover {
    background: rgba(255, 140, 0, 0.1);
}

.shop__filter--active {
    background: #8B0000;
    color: #FF8C00;
    border-color: #FF8C00;
}

.shop__products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
    border: 1px solid #333;
    transition: all 0.3s ease;
    text-align: center;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
    border-color: #FF8C00;
}

.product__image {
    margin-bottom: 1rem;
}

.product__img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    font-size: 6rem;
    margin: 0 auto;
}

.product__info {
    padding: 1rem 0;
}

.product__name {
    font-size: 1.2rem;
    color: #FF8C00;
    margin-bottom: 1rem;
    min-height: 3rem;
}

.product__price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.product__button {
    width: 100%;
}

/* Адаптивность */
@media (max-width: 768px) {
    .header__container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav__item {
        margin: 0.5rem;
    }
    
    .hero__container,
    .about-preview__container {
        flex-direction: column;
    }
    
    .hero__content,
    .about-preview__content {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .matches-preview__list,
    .team__players {
        grid-template-columns: 1fr;
    }
    
    .match {
        flex-direction: column;
        text-align: center;
    }
    
    .match__date {
        margin-right: 0;
        margin-bottom: 1rem;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .match__day {
        font-size: 1.5rem;
    }
    
    .player {
        flex-direction: column;
        text-align: center;
    }
    
    .player__number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .player__photo {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .footer__container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer__links,
    .footer__social {
        flex-direction: row;
        justify-content: center;
        margin: 0;
    }
    
    .player-detail,
    .coach-detail {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .match-detail__teams {
        flex-direction: column;
        gap: 1rem;
    }
    
    .match-detail__score {
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__text {
        font-size: 1rem;
    }
    
    .matches__filters {
        flex-direction: column;
        align-items: center;
    }
    
    .match__teams {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .match__team--home,
    .match__team--away {
        justify-content: center;
    }
    
    .shop__filters {
        flex-direction: column;
    }
}

/* Дополнительные стили для улучшения визуала */
::selection {
    background: #FF8C00;
    color: #000000;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #8B0000;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF8C00;
}

/* Стили для новостей */
.news {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a, #000000);
    border-bottom: 2px solid #8B0000;
}

.news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.news__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FF8C00;
    position: relative;
}

.news__title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #FF8C00;
    margin: 1rem auto;
    box-shadow: 0 0 10px #FF8C00;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
    border-color: #FF8C00;
}

.news-card__date {
    font-size: 0.9rem;
    color: #FF8C00;
    margin-bottom: 1rem;
    font-weight: 600;
}

.news-card__title {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-card__excerpt {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-card__link {
    color: #FF8C00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.news-card__link:hover {
    color: #ffffff;
}

.news__footer {
    text-align: center;
}

/* Стили для раздела о клубе */
.about-club {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000000, #8B0000);
    border-bottom: 3px solid #FF8C00;
}

.about-club__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-club__title {
    font-size: 2.2rem;
    color: #FF8C00;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.about-club__text {
    margin-bottom: 2rem;
}

.about-club__text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.9;
}

.about-club__subtitle {
    font-size: 1.5rem;
    color: #FF8C00;
    margin-bottom: 1.5rem;
}

.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    border-left: 4px solid #FF8C00;
}

.achievement__year {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FF8C00;
    min-width: 60px;
}

.achievement__title {
    color: #ffffff;
    font-size: 1rem;
}

.about-club__image {
    text-align: center;
    margin-bottom: 2rem;
}

.about-club__img {
    font-size: 8rem;
    filter: drop-shadow(0 0 10px #FF8C00);
}

.about-club__facts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fact {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
    border: 1px solid #FF8C00;
}

.fact__number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF8C00;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px #000000;
}

.fact__text {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
}

/* Стили для ближайших матчей */
.upcoming-matches {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a, #000000);
    border-bottom: 2px solid #8B0000;
}

.upcoming-matches__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.upcoming-matches__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FF8C00;
}

.upcoming-matches__subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.upcoming-matches__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.upcoming-match {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.upcoming-match:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
    border-color: #FF8C00;
}

.upcoming-match__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2rem;
    min-width: 80px;
}

.upcoming-match__day {
    font-size: 2rem;
    font-weight: bold;
    color: #FF8C00;
    text-shadow: 1px 1px 2px #000000;
}

.upcoming-match__month {
    font-size: 1rem;
    color: #ccc;
    text-transform: lowercase;
}

.upcoming-match__info {
    flex: 1;
}

.upcoming-match__teams {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.upcoming-match__team--home {
    color: #FF8C00;
}

.upcoming-match__team--away {
    color: #ffffff;
}

.upcoming-match__vs {
    color: #8B0000;
    font-weight: bold;
}

.upcoming-match__details {
    display: flex;
    gap: 2rem;
    font-size: 1rem;
    color: #ccc;
}

.upcoming-match__time {
    font-weight: 600;
    color: #FF8C00;
}

.upcoming-match__actions {
    margin-left: auto;
}

.upcoming-matches__footer {
    text-align: center;
}

/* Стили для призыва к действию */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000000, #8B0000);
    border-bottom: 3px solid #FF8C00;
}

.cta__container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.cta__title {
    font-size: 2.5rem;
    color: #FF8C00;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta__text {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta__image {
    text-align: center;
}

.cta__img {
    font-size: 8rem;
    filter: drop-shadow(0 0 10px #FF8C00);
}

/* Обновленные стили для героя */
.hero__actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero__caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #ccc;
    font-style: italic;
}

/* Обновленные стили для футера */
.footer__contacts {
    margin-top: 1rem;
}

.footer__contacts p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
    color: #ccc;
}

.footer__section {
    margin-bottom: 1.5rem;
}

.footer__section-title {
    color: #FF8C00;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer__social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer__newsletter {
    margin-top: 1.5rem;
}

.footer__newsletter-title {
    color: #FF8C00;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer__form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer__input {
    flex: 1;
    min-width: 200px;
    padding: 0.5rem;
    border: 1px solid #333;
    border-radius: 4px;
    background: #1a1a1a;
    color: #ffffff;
}

.footer__input::placeholder {
    color: #666;
}

/* Адаптивность для новых секций */
@media (max-width: 768px) {
    .about-club__container,
    .cta__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .upcoming-match {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .upcoming-match__date {
        margin-right: 0;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .upcoming-match__day {
        font-size: 1.5rem;
    }
    
    .upcoming-match__actions {
        margin-left: 0;
    }
    
    .cta__actions {
        justify-content: center;
    }
    
    .footer__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .news__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
    }
    
    .footer__form {
        flex-direction: column;
    }
    
    .footer__input {
        min-width: auto;
    }
}