* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



h1, h2, h3, h4, h5, h6 {
    font-family: "TASA Orbiter", sans-serif; 
    font-weight: 600; 
    font-optical-sizing: auto; 
    font-style: normal;
}


html, body {
    width: 100%;
    height: 100%;
    font-family: "Lexend Deca", sans-serif; 
    font-weight: 300;
    background-color: #1f1e2f;
    color: white;
}


.fullscreen-header p {
    font-family: "Lexend Deca", sans-serif; 
    font-weight: 300;
    font-size: 24px;
    max-width: 800px;
}


header {
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #1F1E2F, rgba(255, 255, 255, 0.141));
}


.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 270px;
}


nav {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 0;
    margin: 0;
}



#lang-switch {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background-color: #ffffffb0;
    color: #1f1e2f;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

#lang-switch:hover {
    background-color: #1f1e2f;
    color: #B2CDFF;
    border: 1px solid #B2CDFF;
}



nav::before,
nav::after {
    content: '';
    position: fixed;     
    left: 0;
    width: 100vw;         
    height: 1px;
    background-color: rgba(255,255,255,0.3);
    z-index: 1;
}

nav::before { top: 0; }
nav::after { bottom: 0; }

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0;
}


nav a {
    color: #1F1E2F;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 0;
}

nav li.active a {
    border-bottom: 2px solid #1F1E2F;
    font-weight: 600;
}



main {
    padding: 40px 20px;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 300;
    max-width: 1080px;
    margin: 0 auto;
}

.fog-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url("../images/fog.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

   
    min-height: auto;
    padding: 10px; 
}


main.fog-background {
    position: relative;
    width: 100vw;            
    min-height: 100vh;       
    background-image: url("../images/fog.png");
    background-size: cover;   
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}


main.fog-background::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 30, 47, 0.6);
    z-index: 0;
}


main.fog-background > * {
    position: relative;
    z-index: 1;
}


.news-section h2,
.news-featured-content h3,
.news-card h3 {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 600;
    color: #ffffff; 
}


.news-section {
    width: 100%;
    max-width: 1080px;
    margin: 60px auto;
    padding: 0 20px;
}
.news-highlight {
  display: flex;
  align-items: center; 
  gap: 12px;           
  margin-bottom: 20px; 
}

.news-title {
  font-family: 'TASA Orbiter', sans-serif; 
  font-weight: 600;
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
}

.highlight-line {
  flex-grow: 1;              
  height: 2px;                
  background: linear-gradient(to right, #ffffff, #ffffff00); 
  border-radius: 1px;
}

.news-section h2 {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #eaff2c;
    margin-bottom: 30px;
    text-align: left;
}


.news-card {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: linear-gradient(to top, #ffffff10, #1f1e2f50); 
    padding: 20px;
    border-radius: 12px;
    align-items: center;
    margin-bottom: 40px;
}


.news-card img {
  width: 200px; 
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.news-card .news-content {
  padding: 20px;
  flex: 1; 
}

.news-card h3 {
  font-family: 'TASA Orbiter', sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.news-card p {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 16px;
  color: #ccc;
}


.news-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


.news-text {
    flex: 1 1 60%;
    font-family: 'Montserrat', sans-serif;
    color: #eee;
}

.news-text h3 {
    font-family: 'TASA Orbiter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffffff;
}

.news-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}


.news-image {
    flex: 1 1 35%;
    display: flex;
    justify-content: flex-end;
}

.news-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.news-link {
    color: #f8ff2b;
}


.message {
    background-color: rgba(44,44,44,0.9);
    color: #f39c12;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

footer {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 300;
}

.fullscreen-header {
    width: 100vw;
    height: 70vh;
    background-image: url("../images/fog.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px 0;
    justify-content: center;
}


.header-top {
    margin-top: 30px;
    margin-bottom: 50px; 
    font-size: 48px;
    width: 100%;
    text-align: center;
}


.header-sub {
    margin-bottom: -20px; 
    font-size: 24px;
}



.photo-carousel {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 20px auto;
  overflow: hidden;
}

.carousel-track-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 200px;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.song-info {
  width: 100%;
  text-align: center;
  margin-top: 8px;
  color: white;
}

.song-info h4 {
  font-size: 16px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }


.slide-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  color: white;
}


.slide-link img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.slide-link:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.song-info {
  margin-top: 8px;
  text-align: center;
  color: white;
}

.song-info h4 {
  font-size: 16px;
}

.song-info small {
  font-size: 14px;
  opacity: 0.8;
}



/* Контейнер секции */
.contact-section {
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    /* glass-эффект */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    padding: 40px 24px;
    max-width: 420px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-section:hover {
    transform: translateY(-4px); /* лёгкое поднятие */
}


.champ {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.champ label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.champ input,
.champ textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 4px;
    font-size: 0.9rem;
    color: #fff;
    outline: none;
    width: 100%;

    transition: box-shadow 0.3s ease;
}

.champ input::placeholder,
.champ textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
    transition: opacity 0.3s ease;
}

.champ::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: width 0.35s ease;
}

.champ:focus-within::after {
    width: 100%;
}

.champ:focus-within label {
    transform: translateY(-2px);
    opacity: 1;
}

.champ:focus-within input::placeholder,
.champ:focus-within textarea::placeholder {
    opacity: 0;
}

.champ input:focus,
.champ textarea:focus {
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.12);
}

.champ input[type="radio"] {
    box-shadow: none !important;
}

.champ:has(input[type="radio"])::after {
    display: none;
}




/* Заголовок */
.contact-section h1 {
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    text-align: center;
    color: #ffffff;
}

/* Форма */
.contact-section form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;

}

/* Группы полей */
.en-tete {
    display: flex;
    gap: 12px;
    
}

/* Поля ввода */
.champ {
    display: flex;
    flex-direction: column;
    gap: 4px;
   
}

.contact-section label {
    font-size: 0.8rem;
    color: #ffffff;
}

.contact-section label span {
    color: rgb(238, 255, 0);
}

/* Инпуты и textarea */
.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea {
    width: 100%;
    padding: 8px;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-section textarea {
    min-height: 100px;
    resize: vertical;
}



/* Кнопка отправки */
.contact-section input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #222;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
}

.contact-section input[type="submit"]:hover {
    background-color: #444;
}

/* Сообщение */
.message {
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: #eee;
    color: #333;
    border-radius: 4px;
    font-weight: bold;
}



#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #1f1e2f; 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


.spinner img {
  width: 100px;            
  height: 100px;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* POPUP */
.popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #d2cee6c8;
    color: #1f1e2f;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.popup-content button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #1f1e2f;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}


.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(0.85);
}



.gallery-caption {
    text-align: center;
    padding: 10px 0;
    background-color: rgba(31, 30, 47, 0.8);
    color: white;
    font-weight: 500;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.gallery-caption:hover {
    background-color: #1f1e2f;
    color: #f39c12;
}


.modal {
    display: none; 
    position: fixed; 
    z-index: 10000; 
    padding-top: 60px; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.7);}
    to {transform: scale(1);}
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* ===== Форма загрузки изображений ===== */
form {
    background: rgba(76, 72, 72, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px 20px;
    border-radius: 14px;
    max-width: 500px;
    margin: 30px auto;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-family: 'Lexend Deca', sans-serif;
    color: #fff;
}

form input[type="file"] {
    width: 90%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    background-color: rgba(255,255,255,0.05);
    color: #fff;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

form input[type="file"]:hover {
    background-color: rgba(255,255,255,0.1);
}

form button {
    background-color: #32303F;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    background-color: #1F1E2F;
    transform: scale(1.05);
}

/* Дополнительно: подсказка или текст */
form p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-top: 10px;
}

/* partenaires */

@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,600);


.snip1336 {
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 230px;
  max-width: 315px;
  width: 100%;
  color: #ffffff;
  text-align: left;
  line-height: 1.4em;
  background-color: #141414;
}


.snip1336 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}


.snip1336 img {
  max-width: 100%;
  vertical-align: top;
  opacity: 0.85;
}


.snip1336 figcaption {
  width: 100%;
  background-color: #141414;
  padding: 25px;
  position: relative;
}


.snip1336 figcaption:before {
  position: absolute;
  content: '';
  bottom: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 55px 0 0 400px;
  border-color: transparent transparent transparent #141414;
}


.snip1336 figcaption a {
  padding: 5px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 0.7em;
  text-transform: uppercase;
  margin: 10px 0;
  display: inline-block;
  opacity: 0.65;
  width: 47%;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
}


.snip1336 figcaption a:hover {
  opacity: 1;
}


.snip1336 .profile {
  border-radius: 50%;
  position: absolute;
  bottom: 100%;
  left: 25px;
  z-index: 1;
  max-width: 90px;
  opacity: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}


.snip1336 .follow {
  margin-right: 4%;
  border-color: #2980b9;
  color: #2980b9;
}


.snip1336 h2 {
  margin: 0 0 5px;
  font-weight: 300;
}


.snip1336 h2 span {
  display: block;
  font-size: 0.5em;
  color: #2980b9;
}


.snip1336 p {
  margin: 0 0 10px;
  font-size: 0.8em;
  letter-spacing: 1px;
  opacity: 0.8;
}


.partenaires {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1080px;
  margin: 40px auto;
  padding: 0 20px;
  justify-items: center;
}


.snip1336 {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: cardAppear 0.6s ease forwards;
  position: relative;
  overflow: hidden;
}

.snip1336:nth-child(1) {
  animation-delay: 0.1s;
}


.snip1336:nth-child(2) {
  animation-delay: 0.2s;
}


.snip1336:nth-child(3) {
  animation-delay: 0.3s;
}


.snip1336:nth-child(4) {
  animation-delay: 0.4s;
}


@keyframes cardAppear {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.snip1336:hover {
  transform: translateY(-15px)  ;
}


.snip1336:hover img {
  transform: scale(1.1);
  opacity: 1;
}


.snip1336:hover .profile {
  transform: scale(1.15) ;
}


.snip1336:hover figcaption a {
  transform: translateY(3px);
  opacity: 1;
}


.snip1336 figcaption a {
  transition: all 0.3s ease;
  text-align: center;
}


.btn {
  display: flex;
  justify-content: center;
}


.snip1336 img {
  transition: all 0.4s ease;
}


.snip1336 .profile {
  transition: all 0.4s ease;
}






.titre_partenaires {
  font-family: "Permanent Marker", cursive;
  text-align: center;
  font-size: 45px;
  letter-spacing: 4px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}




.titre_partenaires::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: 2px;
}

/* =====================================================
   SECTION BOUTONS PDF
   ===================================================== */
.pdf-section {
  margin-top: 50px;
  padding: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 108px;
}


.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  background-color: black;
  font-size: 16px;
  border-radius: 100px;
  font-weight: 600;
  color: white;
  box-shadow: 0 0 0 2px #ffffff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}


.animated-button svg {
  position: absolute;
  width: 24px;
  fill: rgb(255, 255, 255);
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}


.animated-button .arr-1 {
  right: 16px;
}


.animated-button .arr-2 {
  left: -25%;
}


.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}


.animated-button .text {
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}


.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}


.animated-button:hover .arr-1 {
  right: -25%;
}


.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #1f387e;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #1f387e;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

.docs {
  text-decoration: none;
  color: white;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    width: 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-family: 'Lexend Deca', sans-serif;
}

.gallery-item img {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Белый крестик для удаления */
.delete-cross {
    position: absolute;
    top: 8px;
    right: 8px;
    color: white;
    background-color: rgba(0,0,0,0.4); 
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s ease;
}


/* Toutes les images de la galerie */
.gallery-item img {
    transition: filter 0.3s ease; 
}


.gallery-item:hover img {
    filter: grayscale(100%); 
}




section.card3 {
  position: relative;
  margin: 0 auto;
  width: 500px;
  font-family: "Roboto", sans-serif;
  height: 200px;
background-image: url(../images/partner_back.jpg);
  background-repeat: no-repeat;
    border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card3 svg {
  fill: #333;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 3px;
}
.card3:hover {
  transform: scale(1.05);
    color: #ffffff;
}


.card__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #000000;
  transform: rotateX(-90deg);
  transform-origin: bottom;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.card3:hover .card__content {
  transform: rotateX(0deg);
}


.card__title {
  margin: 0 auto;
  text-align: center;
  text-decoration: underline;
  padding-left: 5px;
  font-size: 24px;
  color: var(--white);
  font-weight: 700;
}


.card3:hover svg {
  scale: 0;
}


.card__description {
  margin: 10px 0 0;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.4;
}





.champ .radio-group {
    display: flex;
    flex-direction: column; 
    gap: 5px; 
    margin-top: 4px;
    align-items: center; 
    
}

.champ .radio-group .radio-item {
    display: flex;
    align-items: center;
    gap: 1px; 
}




/* ===== CREDITS PAGE MODERN ===== */
.credits-page {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #1f1e2f 0%, #2c2b3e 100%);
}

.credits-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 2.5rem;
    color: #eaff2c;
    letter-spacing: 3px;
}

/* ===== CREDITS PAGE MODERN - ШРИФТЫ как на сайте ===== */
.credits-page {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #1f1e2f 0%, #2c2b3e 100%);
    font-family: 'Lexend Deca', sans-serif; 
}

.credits-title {
    font-family: 'TASA Orbiter', sans-serif; 
    font-size: 2.5rem;
    color: #eaff2c;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(234, 255, 44, 0.6);
}

/* Грид карточек */
.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    width: 100%;
    max-width: 1080px;
}

/* ===== CREDITS PAGE FULL WIDTH ===== */
.credits-page {
    width: 100vw;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background: transparent;
    font-family: 'Lexend Deca', sans-serif; 
    box-sizing: border-box;
}

/* Заголовок страницы */
.credits-title {
    font-family: 'TASA Orbiter', sans-serif; 
    font-size: 2.8rem;
    color: #eaff2c;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(186, 186, 186, 0.433);
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    width: 100%;
    max-width: 1400px; 
}


.credits-card {
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
    width: 40vw;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.credits-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 14px 50px rgba(234, 255, 44, 0.2),
        0 8px 30px rgba(0,0,0,0.4);
    background: rgba(255,255,255,0.08);
}

.credits-card h2 {
    font-family: 'TASA Orbiter', sans-serif;
    font-size: 1.2rem;
    color: #eaff2c;
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(234, 255, 44, 0.3);
    padding-bottom: 6px;
}

.credits-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credits-card li {
    font-size: 0.9rem;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}


.credits-card strong {
    color: #fff;
}

.credits-card a {
    color: #B2CDFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credits-card a:hover {
    color: #7d7e797d;
    text-decoration: underline;
}
