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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(to bottom, #f5f7fa 0%, #e8ecf1 100%);
  min-height: 100vh;
}

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

/* Updated header with dark semi-transparent background */
header {
  background: rgba(30, 30, 30, 0.95);
  padding: 12px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Updated header layout to keep nav on right and prevent movement */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}


.header-logo {
  flex-shrink: 0;
  order: 1; /* Логотип ПЕРВЫМ (слева) */
}

.logo {
  height: 70px;
  width: auto;
}

nav {
  flex-shrink: 0;
  order: 3; /* Навигация ПОСЛЕДНЕЙ (справа) */
  margin-left: auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 15px;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

nav a:hover,
nav a.active {
  background: #dc143c;
  color: white;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
  margin-top: 0;
  padding-top: 86px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 1000px;
  z-index: 2;
}

.slide-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
  color: #dc143c;
  text-transform: uppercase;
}

.slide-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  color: white;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: #dc143c;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background: #b01030;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

/* Updated slider navigation buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(220, 20, 60, 0.8);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.slider-btn:hover {
  background: rgba(220, 20, 60, 1);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #dc143c;
  transform: scale(1.2);
}

/* News Section */
.news-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #dc143c;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #0047ab;
}

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

/* Updated news card to use flexbox and align buttons at bottom */
.news-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

/* Updated news card to use flexbox and align buttons at bottom */
.news-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card h3 {
  color: #dc143c;
  margin-bottom: 15px;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
}

.news-date {
  color: #0047ab;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.news-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Updated news card to use flexbox and align buttons at bottom */
.news-card-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

.video-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 50px;
  margin-top: 60px;
}

.video-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-card-content {
  padding: 30px;
}

.video-card h3 {
  color: #dc143c;
  margin-bottom: 15px;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
}

.video-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.about-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-content {
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.about-content strong {
  color: #dc143c;
  font-weight: 700;
}

.president-section {
  padding: 80px 0;
  background: white;
  color: #333;
}

.president-section .section-title {
  color: #dc143c;
}

.president-section .section-title::after {
  background: #0047ab;
}

.president-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  margin: 40px auto;
  max-width: 1100px;
  align-items: center;
}

.president-photo {
  width: 100%;
}

.president-photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 4px solid #dc143c;
}

.president-info {
  text-align: left;
}

.president-info h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #dc143c;
}

.president-title {
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.president-info p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Contacts Section */
.contacts-section {
  padding: 80px 0;
  background: white;
}

.contacts-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-info h3 {
  color: #dc143c;
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #555;
}

.contact-info strong {
  color: #0047ab;
  font-weight: 700;
}

.contact-map iframe {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background: transparent;
  padding: 0;
}

/* Added contact icons styling in contacts section */
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #333;
  font-size: 16px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #dc143c;
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.contact-icon:hover {
  background: #b01030;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(220, 20, 60, 0.4);
}

.contact-item strong {
  font-weight: 80px;
}

.footer-logos-section {
  background: white;
  padding: 60px 0;
  border-top: 3px solid #dc143c;
}

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

.footer-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-dark-section {
  background: rgba(30, 30, 30, 0.95);
  color: white;
  padding: 40px 0 30px;
}

.footer-dark-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.footer-social {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #dc143c;
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #b01030;
  transform: translateY(-3px);
}

.footer-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

/* News Detail Pages */
/* Added padding-top to account for fixed header */
.news-detail {
  padding: 80px 0;
  background: #f8f9fa;
  margin-top: 0;
  padding-top: 166px;
}

.news-detail h1 {
  color: #dc143c;
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: center;
}

.news-detail .news-date {
  font-size: 1.1rem;
  margin-bottom: 40px;
  text-align: center;
}

.news-detail-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-detail-content {
  max-width: 900px;
  margin: 50px auto;
}

.news-detail-content p {
  color: #555;
  line-height: 1.9;
  font-size: 1.15rem;
  margin-bottom: 25px;
  text-align: justify;
}

.news-detail .btn {
  margin-top: 50px;
  display: inline-block;
}

/* Added styles for rules and disciplines pages */
/* Added padding-top to account for fixed header */
.rules-page,
.disciplines-page {
  padding: 80px 0;
  background: #f8f9fa;
  margin-top: 0;
  padding-top: 166px;
}

.page-title {
  text-align: center;
  font-size: 3rem;
  color: #dc143c;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.rules-content,
.disciplines-content {
  max-width: 1000px;
  margin: 0 auto;
}

.rule-section {
  background: #f8f9fa;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 12px;
  border-left: 5px solid #dc143c;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.rule-section h2 {
  color: #0047ab;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.rule-section p {
  color: #555;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.rule-section ul {
  margin-left: 30px;
  color: #555;
}

.rule-section li {
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.discipline-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.discipline-card:hover {
  border-color: #dc143c;
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.15);
  transform: translateY(-5px);
}

.discipline-card h2 {
  color: #dc143c;
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.discipline-card p {
  color: #555;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.discipline-card ul {
  margin-left: 30px;
  color: #555;
}

.discipline-card li {
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #0047ab;
  font-weight: 500;
}

/* Added new styles for comprehensive disciplines list layout */
.disciplines-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.disciplines-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

.disciplines-category {
  color: #0047ab;
  font-size: 2rem;
  margin: 50px 0 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #dc143c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.discipline-item {
  background: white;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #dc143c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-size: 1.05rem;
  color: #333;
  font-weight: 500;
}

.discipline-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.2);
  border-left-color: #0047ab;
}

.rules-content .btn,
.disciplines-content .btn {
  display: block;
  width: fit-content;
  margin: 60px auto 0;
}

/* Added styles for coaches page */
.coaches-page {
  padding: 80px 0;
  background: #f8f9fa;
  margin-top: 0;
  padding-top: 166px;
}

/* Updated coaches page styles for 2-column grid layout */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px; 
  margin: 60px auto;
  padding: 0 20px;
}

.coach-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.coach-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.coach-card .coach-photo {
  position: relative;
  width: 100%;
  height: 350px;
  min-height: auto;
}

.coach-card .coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-card .coach-info {
  padding: 30px;
  text-align: left;
}

.coach-card .coach-info h3 {
  color: #dc143c;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.coach-card .coach-rank {
  color: #0047ab;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.coach-card .coach-info p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.coach-card .coach-info strong {
  color: #333;
  font-weight: 700;
}

/* Hide zigzag layout styles */
.coaches-zigzag {
  display: none;
}

.all-news-page {
  padding: 80px 0;
  background: #f8f9fa;
  margin-top: 0;
  padding-top: 166px;
}

.all-news-page .news-grid {
  margin-bottom: 60px;
}

/* Added PDF documents section styles */
.pdf-documents-section {
  margin-bottom: 50px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
}

.pdf-documents-section h2 {
  color: #c41e3a;
  margin-bottom: 15px;
  font-size: 28px;
}

.pdf-documents-section p {
  margin-bottom: 30px;
  color: #666;
  font-size: 16px;
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.pdf-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  border: 2px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pdf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(196, 30, 58, 0.2);
  border-color: #c41e3a;
}

.pdf-icon {
  color: #c41e3a;
  margin-bottom: 15px;
}

.pdf-card h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.pdf-card p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

/* Added news gallery slider styles */
.news-gallery {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-gallery-container {
  position: relative;
  width: 100%;
  height: 500px;
}

/* Fixed news gallery slider to use opacity transitions */
.news-gallery-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
}

.news-gallery-slide.active {
  opacity: 1;
  visibility: visible;
}

.news-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(196, 30, 58, 0.8);
  color: white;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s ease;
  z-index: 10;
}

.news-gallery-btn:hover {
  background: rgba(196, 30, 58, 1);
}

.news-gallery-btn.prev {
  left: 10px;
}

.news-gallery-btn.next {
  right: 10px;
}

.news-gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.news-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-dot.active,
.news-dot:hover {
  background: white;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 968px) {
  .president-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .president-info {
    text-align: center;
  }

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

  .coaches-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

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

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .page-title {
    font-size: 2.2rem;
  }

  .news-detail h1 {
    font-size: 2rem;
  }

  .news-gallery-container {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .slide-content h2 {
    font-size: 1.8rem;
  }

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

  .btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .news-gallery-container {
    height: 250px;
  }
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
  z-index: 1001;
  order: 2;
  margin-left: auto;
  position: relative;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.burger:hover {
  opacity: 0.8;
}

.burger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
  position: absolute;
}

.burger span:nth-child(1) {
  top: 14px;
}

.burger span:nth-child(2) {
  top: 21px;
}

.burger span:nth-child(3) {
  top: 28px;
}

.burger.active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Mobile responsive */
@media (max-width: 968px) {
  .burger {
    display: flex;
  }

  .header-content {
    position: relative;
  }

  /* Скрыть десктопную навигацию на мобильных */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(30, 30, 30, 0.98);
    transition: right 0.3s ease;
    padding-top: 80px;
    z-index: 1000;
    overflow-y: auto;
    margin-left: 0;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  nav li {
    width: 100%;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 15px 30px;
    border-radius: 0;
    font-size: 1.1rem;
  }

  .logo {
    height: 60px;
  }
}

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

  nav {
    width: 250px;
  }
}


/* Контейнер слайдера */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
}

/* Обертка слайдов */
.news-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

/* Отдельный слайд */
.news-slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.news-slide.active {
    z-index: 1;
}

/* Кнопки навигации */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Для мобильных */
@media (max-width: 768px) {
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
}

/* Индикаторы слайдов (точки) - опционально */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}