/* =========================================
   ОБЩИЕ СТИЛИ
   ========================================= */

.author-page,
.author-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page-bg-static {
  box-sizing: border-box;
}

body {
  font-family: 'Copperplate';
  background: #0a0a0a;
  color: #F3EBF0;

  overflow-x: hidden;
}

.choice {
  display: none;
}

/* =========================================
   ЗАДНИЙ ФОН
   ========================================= */

.page-bg-static {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  min-height: 2910px;
  height: auto;
  background: #141014;
  border-radius: 0px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 1;
  pointer-events: none;
  transition: width 0.3s ease;
}

/* =========================================
   ОСНОВНОЙ КОНТЕЙНЕР
   ========================================= */

.author-page {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  /*padding: 80px 40px 60px;*/
  margin-top: 100px;
  padding: 30px;
}

/* =========================================
   ЗАГОЛОВОК СТРАНИЦЫ
   ========================================= */

.author-header {
  text-align: center;
  margin-bottom: 60px;
}

.author-title {
  font-size: 36px;
  font-weight: 600;
  color: #ebd0ef;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.author-subtitle {
  font-size: 16px;
  color: #b8a0bc;
  font-weight: 300;
}

/* =========================================
   СЕКЦИИ
   ========================================= */

.author-section {
  margin-bottom: 50px;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: #ebd0ef;
  margin-bottom: 10px;
  text-align: center;
}

.section-desc {
  text-align: center;
  color: #b8a0bc;
  font-size: 14px;
  margin-bottom: 30px;
}

/* =========================================
   ПРИВЕТСТВИЕ
   ========================================= */

.author-greeting p {
  font-size: 15px;
  color: #d4c4d8;
  margin-bottom: 20px;
  line-height: 1.8;
}

.author-greeting p:last-child {
  margin-bottom: 0;
}

/* =========================================
   КАРТОЧКИ АНИМЕ
   ========================================= */

.anime-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.anime-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(235, 208, 239, 0.05);
  border: 1px solid rgba(235, 208, 239, 0.15);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}

.anime-card:hover {
  background: rgba(235, 208, 239, 0.08);
  border-color: rgba(235, 208, 239, 0.25);
  transform: translateX(5px);
}

.anime-number {
  font-size: 28px;
  font-weight: 700;
  color: #ebd0ef;
  min-width: 50px;
  text-align: center;
}

.anime-info h3 {
  font-size: 17px;
  font-weight: 600;
  color: #F3EBF0;
  margin-bottom: 5px;
}

.anime-info p {
  font-size: 13px;
  color: #b8a0bc;
}

/* =========================================
   FAQ
   ========================================= */

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(235, 208, 239, 0.05);
  border: 1px solid rgba(235, 208, 239, 0.15);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(235, 208, 239, 0.08);
  border-color: rgba(235, 208, 239, 0.25);
}

.faq-question {
  font-size: 16px;
  font-weight: 600;
  color: #ebd0ef;
  margin-bottom: 10px;
}

.faq-answer {
  font-size: 14px;
  color: #d4c4d8;
  line-height: 1.7;
}

/* =========================================
   ФОРМА ОБРАТНОЙ СВЯЗИ
   ========================================= */

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #ebd0ef;
}

.form-group input,
.form-group textarea {
  background: rgba(235, 208, 239, 0.05);
  border: 1px solid rgba(235, 208, 239, 0.15);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  color: #F3EBF0;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(235, 208, 239, 0.08);
  border-color: #ebd0ef;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7a6a7e;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #ebd0ef;
  color: #000000;
  border: none;
  border-radius: 3px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  background: #d4b8d9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(235, 208, 239, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-success {
  background: rgba(80, 200, 120, 0.15);
  border: 1px solid rgba(80, 200, 120, 0.3);
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  color: #50c878;
  font-weight: 500;
}

/* =========================================
   ПОДВАЛ
   ========================================= */

.author-footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(235, 208, 239, 0.15);
}

.author-footer p {
  font-size: 15px;
  color: #b8a0bc;
  margin-bottom: 8px;
}

.footer-heart {
  font-size: 14px;
  color: #ebd0ef;
}

/* =========================================
   КЛИКАБЕЛЬНЫЕ КАРТОЧКИ АНИМЕ
   ========================================= */

.anime-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.anime-card {
  cursor: pointer; 
}




/* =========================================
   АДАПТИВНОСТЬ
   ========================================= */

@media screen and (max-width: 810px) {
  .page-bg-static {
    width: max(620px, calc(100vw - 120px));
    min-height: 2950px;
  }

  
  
  .author-page {
    padding: 70px 30px 50px;
    max-width: 620px;
  }
  
  .author-title {
    font-size: 32px;
  }
}

@media screen and (max-width: 620px) {
  .page-bg-static {
    width: max(460px, calc(100vw - 100px));
    min-height: 3310px;
  }
  
  .author-page {
   
    max-width: 460px;
  }
  
  .author-title {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .anime-number {
    font-size: 24px;
    min-width: 40px;
  }
  
  .anime-info h3 {
    font-size: 15px;
  }
}

@media screen and (max-width: 465px) {
  .page-bg-static {
    width: max(400px, calc(100vw - 100px));
    min-height: 3420px;
  }
  
  .author-page {

    max-width: 400px;
  }
  
  .author-title {
    font-size: 24px;
  }
  
  .author-greeting p,
  .faq-answer {
    font-size: 14px;
  }
  
  .anime-card {
    padding: 15px;
  }
}

@media screen and (max-width: 410px) {
  .page-bg-static {
    width: max(370px, calc(100vw - 80px));
    min-height: 3550px;
  }
  
  .author-page {
    
    max-width: 370px;
  }
}

@media screen and (max-width: 375px) {
  .page-bg-static {
    width: max(320px, calc(100vw - 40px));
    min-height: 3850px;
  }
  
  .author-page {
    padding: 90px 15px 25px;
    max-width: 320px;
  }
  
  .author-title {
    font-size: 22px;
  }
  
  .anime-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .anime-number {
    min-width: auto;
  }
}
