@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

    body {
      margin: 0;
      font-family: 'Montserrat', Arial, sans-serif;
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: #fff;
      min-height: 100vh;
    }
    .container {
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .competition-card {
      background: linear-gradient(135deg, #ffffffdd, #f0f0f0dd);
      color: #333;
      border-radius: 15px;
      box-shadow:
        0 4px 8px rgba(0,0,0,0.1),
        0 8px 16px rgba(0,0,0,0.1);
      margin-bottom: 25px;
      padding: 25px 30px;
      width: 100%;
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .competition-card::before {
      content: '';
      position: absolute;
      top: 0; left: -50%;
      width: 200%;
      height: 100%;
      background: linear-gradient(
        120deg,
        rgba(255,255,255,0.15) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0.15) 100%
      );
      transform: skewX(-25deg);
      transition: left 0.7s ease;
      pointer-events: none;
      z-index: 1;
    }
    .competition-card:hover::before {
      left: 50%;
    }
    .competition-card:hover {
      transform: translateY(-6px);
      box-shadow:
        0 12px 24px rgba(0,0,0,0.15),
        0 20px 40px rgba(0,0,0,0.12);
      z-index: 10;
    }
    .competition-title {
      margin: 0 0 12px;
      font-size: 1.8em;
      font-weight: 600;
      position: relative;
      z-index: 2;
    }
    .competition-date {
      color: #666;
      font-size: 0.9em;
      margin-bottom: 8px;
      font-style: italic;
      position: relative;
      z-index: 2;
    }
    .competition-location,
    .competition-responsible {
      color: #555;
      font-size: 0.95em;
      margin-bottom: 8px;
      position: relative;
      z-index: 2;
    }
    .competition-description {
      font-size: 1.1em;
      line-height: 1.5;
      position: relative;
      z-index: 2;
    }

    /* Добавим мягкие тени и плавное появление для всего контейнера */
    .container {
      animation: fadeInUp 0.8s ease forwards;
      opacity: 0;
      transform: translateY(20px);
    }
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Адаптив для маленьких экранов */
    @media (max-width: 600px) {
      .competition-card {
        padding: 20px 15px;
      }
      .competition-title {
        font-size: 1.5em;
      }
      .competition-description {
        font-size: 1em;
      }
    }


a.one:link {color:white; font-family:Arial; font-size:14; text-decoration:none;font-weight:600 }
a.one:visited {color:white; font-family:Arial; font-size:14;text-decoration:none;font-weight:600 }
a.one:hover {color:#f5f294; font-family:Arial; font-size:14; text-decoration:none; font-weight:600}

a.two:link {color:be8305; font-family:Verdana; font-size:12; text-decoration:none;font-weight:600 }
a.two:visited {color:be8305; font-family:Verdana; font-size:12;text-decoration:none;font-weight:600 }
a.two:hover {color:f5a34c; font-family:Verdana; font-size:12; text-decoration:none; font-weight:600}

a.three:link {color:eff861; font-family:Verdana; font-size:12; text-decoration:none;font-weight:600; background-color:654604}
a.three:visited {color:eff861; font-family:Verdana; font-size:12;text-decoration:none;font-weight:600;background-color:654604}
a.three:hover {color:white; font-family:Verdana; font-size:12; text-decoration:none; font-weight:600}

a.five:link {color:be8305; font-family:Verdana; font-size:14; text-decoration:none;font-weight:600 }
a.five:visited {color:be8305; font-family:Verdana; font-size:14;text-decoration:none;font-weight:600 }
a.five:hover {color:f5a34c; font-family:Verdana; font-size:14; text-decoration:none; font-weight:600}

.bord {border-style:solid; border-width:1; border-color:f6dcaf; background-color:654604; text-align:center} 

.txt {font-family:Verdana; font-size:12;color:black; text-align:justify}
.podpis {font-family:Times New Roman; font-size:14;color:black; text-align:right;font-style:italic }
.txt2 {font-family:Verdana; font-size:12;color:black; text-align:center}
.txt3 {font-family:Verdana; font-size:12;color:black}
.txt4 {font-family:Verdana; font-size:14;color:654604;background-color:f5f294;font-weight:600}
.txt5 {font-family:Verdana; font-size:10;color:black; text-align:justify}
.txt6 {font-family:Verdana; font-size:14;color:black; text-align:justify}
.txt7 {font-family:Verdana; font-size:12;color:black;font-weight:600}
.txt8 {font-family:Verdana; font-size:12;color:black; text-align:left}

.zag0 {font-family:"Arial";font-size:16; color:654604; text-align:center;font-weight:600}
.zag1 {font-family:"Arial";font-size:14; color:654604; text-align:left;font-weight:600}
.zag2 {font-family:"Arial";font-size:14; color:654604; text-align:center;font-weight:600}
.zag3 {font-family:"Arial";font-size:12; color:654604; text-align:left;font-weight:600}

.round {
    border-radius: 100px; /* Радиус скругления */
    /*border: 3px solid green; Параметры рамки */
    box-shadow: 0 0 7px #666; /* Параметры тени */
   }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

    body {
      margin: 0;
      font-family: 'Montserrat', Arial, sans-serif;
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: #fff;
      min-height: 100vh;
    }
    .container {
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .competition-card {
      background: linear-gradient(135deg, #ffffffdd, #f0f0f0dd);
      color: #333;
      border-radius: 15px;
      box-shadow:
        0 4px 8px rgba(0,0,0,0.1),
        0 8px 16px rgba(0,0,0,0.1);
      margin-bottom: 25px;
      padding: 25px 30px;
      width: 100%;
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .competition-card::before {
      content: '';
      position: absolute;
      top: 0; left: -50%;
      width: 200%;
      height: 100%;
      background: linear-gradient(
        120deg,
        rgba(255,255,255,0.15) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0.15) 100%
      );
      transform: skewX(-25deg);
      transition: left 0.7s ease;
      pointer-events: none;
      z-index: 1;
    }
    .competition-card:hover::before {
      left: 50%;
    }
    .competition-card:hover {
      transform: translateY(-6px);
      box-shadow:
        0 12px 24px rgba(0,0,0,0.15),
        0 20px 40px rgba(0,0,0,0.12);
      z-index: 10;
    }
    .competition-title {
      margin: 0 0 12px;
      font-size: 1.8em;
      font-weight: 600;
      position: relative;
      z-index: 2;
    }
    .competition-date {
      color: #666;
      font-size: 0.9em;
      margin-bottom: 8px;
      font-style: italic;
      position: relative;
      z-index: 2;
    }
    .competition-location,
    .competition-responsible {
      color: #555;
      font-size: 0.95em;
      margin-bottom: 8px;
      position: relative;
      z-index: 2;
    }
    .competition-description {
      font-size: 1.1em;
      line-height: 1.5;
      position: relative;
      z-index: 2;
    }

    /* Добавим мягкие тени и плавное появление для всего контейнера */
    .container {
      animation: fadeInUp 0.8s ease forwards;
      opacity: 0;
      transform: translateY(20px);
    }
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Адаптив для маленьких экранов */
    @media (max-width: 600px) {
      .competition-card {
        padding: 20px 15px;
      }
      .competition-title {
        font-size: 1.5em;
      }
      .competition-description {
        font-size: 1em;
      }
    }

/* Общие стили */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --light-color: #ecf0f1;
    --dark-color: #34495e;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #fff;
    --black: #000;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-align: center;
}

.btn:hover {
    background-color: #c0392b;
    color: var(--white);
    transform: translateY(-2px);
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 25%;
}

/* Шапка */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    font-weight: 600;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.main-nav ul li a:hover::after,
.main-nav ul li.active a::after {
    width: 100%;
}

.main-nav ul li.active a {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Герой секция */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* О секции */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Особенности */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Подвал */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-section i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-color);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dark-color);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Стили для внутренних страниц */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/page-header-bg.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
}

/* Стили для страницы новостей */
.news-section {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-item:hover {
    transform: translateY(-10px);
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.news-content h3 a {
    color: var(--secondary-color);
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.news-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--secondary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.pagination a.active,
.pagination a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Стили для страницы турниров */
.tournaments-section {
    padding: 80px 0;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--light-color);
}

.filter-btn {
    align-self: flex-end;
}

.calendar {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 20px;
    margin-bottom: 40px;
}

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

.calendar-header h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.calendar-nav button {
    background-color: var(--light-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 10px;
}

.calendar-nav button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.calendar-day {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
}

.day-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px;
    font-weight: 600;
    text-align: center;
}

.events {
    padding: 15px;
}

.event {
    margin-bottom: 15px;
}

.event h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.event p {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.event i {
    margin-right: 8px;
    color: var(--primary-color);
}

.upcoming-tournaments {
    margin-top: 60px;
}

.upcoming-tournaments h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--secondary-color);
}

.tournaments-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tournament-card {
    display: flex;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tournament-card:hover {
    transform: translateY(-10px);
}

.tournament-date {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.tournament-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.tournament-date .month {
    font-size: 1rem;
    text-transform: uppercase;
}

.tournament-info {
    padding: 20px;
    flex: 1;
}

.tournament-info h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.tournament-info .location {
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tournament-info .location i {
    margin-right: 8px;
    color: var(--primary-color);
}

.tournament-info .categories {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.tournament-info .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Стили для страницы клубов */
.clubs-section {
    padding: 80px 0;
}

.search-box {
    display: flex;
    margin-bottom: 40px;
    background-color: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.search-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background-color: #c0392b;
}

.region-filter {
    margin-bottom: 40px;
}

.region-filter h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.region-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.region-buttons button {
    padding: 8px 20px;
    background-color: var(--light-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.region-buttons button.active,
.region-buttons button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.club-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.club-card:hover {
    transform: translateY(-10px);
}

.club-image {
    height: 250px;
    overflow: hidden;
}

.club-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.club-card:hover .club-image img {
    transform: scale(1.1);
}

.club-info {
    padding: 20px;
}

.club-info h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.club-info .location {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.club-info .location i {
    margin-right: 8px;
}

.club-info .description {
    margin-bottom: 15px;
    color: var(--text-light);
}

.club-details {
    margin-bottom: 15px;
}

.club-details p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.club-details strong {
    color: var(--secondary-color);
}

.add-club {
    text-align: center;
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.add-club h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.add-club p {
    margin-bottom: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Стили для страницы протоколов */
.protocols-section {
    padding: 80px 0;
}

.search-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.search-box {
    flex: 2;
    min-width: 300px;
}

.filter-options {
    flex: 1;
    display: flex;
    gap: 10px;
    min-width: 250px;
}

.filter-options select {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--light-color);
}

.protocols-list {
    margin-bottom: 40px;
}

.protocol-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.protocol-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
}

.protocol-header h3 {
    font-size: 1.3rem;
}

.protocol-header .date {
    background-color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.protocol-details {
    padding: 20px;
}

.protocol-details p {
    margin-bottom: 15px;
}

.protocol-details strong {
    color: var(--secondary-color);
}

.download-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background-color: var(--light-color);
    color: var(--secondary-color);
    border-radius: 4px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.download-btn i {
    margin-right: 8px;
}

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

.stats-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
    color: var(--white);
}

.stats-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1.1rem;
}

/* Адаптивность */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text,
    .about-image {
        flex: none;
        width: 100%;
    }
    
    .about-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        grid-template-columns: 1fr;
    }
    
    .tournaments-list {
        grid-template-columns: 1fr;
    }
    
    .clubs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .protocol-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .protocol-header .date {
        margin-top: 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}