/*==========CINZEL DECORATIVE==========*/
@font-face {
  font-display: swap;
  font-family: "Cinzel Decorative";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/cinzel-decorative-v19-latin-regular.woff2") format("woff2");
}
/*==========PLAYFAIR DISPLAY==========*/
/*==========PLAYFAIR DISPLAY -> REGULAR==========*/
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/playfair-display-v40-latin-regular.woff2") format("woff2");
}
/*==========PLAYFAIR DISPLAY -> ITALIC==========*/
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  src: url("../../fonts/playfair-display-v40-latin-italic.woff2") format("woff2");
}
/*==========PLAYFAIR DISPLAY -> BOLD==========*/
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/playfair-display-v40-latin-500.woff2") format("woff2");
}
/*==========PLAYFAIR DISPLAY -> ITALIC BOLD==========*/
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 500;
  src: url("../../fonts/playfair-display-v40-latin-500italic.woff2") format("woff2");
}
/*==========PLAYFAIR DISPLAY -> BOLDER==========*/
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 800;
  src: url("../../fonts/playfair-display-v40-latin-800.woff2") format("woff2");
}
/*==========POPPINS==========*/
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/poppins-v24-latin-regular.woff2") format("woff2");
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*==========FOR EVERY SINGLE PAGE==========*/
body {
  background-color: #000000;
  color: #DAAF50;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  body {
    padding: 0 40px;
  }
}
body .spotlight {
  position: fixed;
  z-index: -1;
  width: 400px;
  height: 400px;
  border-radius: 500%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 220, 120, 0.18) 0%, rgba(255, 200, 80, 0.07) 40%, transparent 70%);
  opacity: 0;
  transition: all 0.8s ease-out;
}
body a {
  text-decoration: none;
  color: #DAAF50;
}
body h2 {
  font-family: "Playfair Display";
  font-size: 1.8rem;
  font-weight: 400;
}
@media (min-width: 1024px) {
  body h2 {
    font-size: 2.5rem;
    margin-top: 280px;
  }
}
body .underLine {
  height: 1px;
  background-color: #DAAF50;
  width: 100%;
  margin: -12px 0 32px 0;
}
@media (min-width: 1024px) {
  body .underLine {
    width: 70%;
  }
}
body .underLineSmall {
  height: 1px;
  background-color: #DAAF50;
  width: 10%;
}
body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body .italicBig {
  font-style: italic;
  font-size: 130%;
}
body .italicBold {
  font-style: italic;
  font-weight: bold;
}
body .bold {
  font-weight: bold;
}
body .big {
  font-size: 120%;
}
body .gold {
  color: #DAAF50;
}
body .signatureFont {
  font-family: "Playfair Display";
}
body button:hover,
body a:hover, body:hover {
  transition: all 1s ease;
}
body input:focus {
  outline: none;
  border: 1px solid #d4af37;
  box-shadow: 0 1px 4px rgba(212, 175, 55, 0.7137254902);
  transition: all 1s ease;
}
body textarea:focus {
  outline: none;
  border: 1px solid #d4af37;
  box-shadow: 0 1px 4px rgba(212, 175, 55, 0.7137254902);
  transition: all 1s ease;
}
body .logoHeaderFooter {
  width: 40px !important;
  height: auto !important;
  object-fit: unset !important;
}
@media (min-width: 1024px) {
  body .logoHeaderFooter {
    width: 56px !important;
  }
}
body #categoriesNav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
body #categoriesNav a {
  font-family: "Poppins";
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(218, 175, 80, 0.15);
  padding: 6px 12px;
  transition: color 0.25s ease, border-color 1s ease, background 1s ease;
}
@media (min-width: 1024px) {
  body #categoriesNav a {
    font-size: 1rem;
    padding: 8px 16px;
  }
}
body #categoriesNav a:hover, body #categoriesNav a.active {
  color: #000000;
  background: #DAAF50;
  border-color: #DAAF50;
}
body #likeBlock {
  margin-top: 32px;
  font-family: "Poppins";
}
body #likeBlock a {
  text-decoration: none;
  color: #DAAF50;
  margin-left: 16px;
  font-weight: bold;
}

button {
  background-color: #DAAF50;
  border: 1px solid #AF7F26;
  padding: 8px 16px;
  cursor: pointer;
  font-family: "Poppins";
  font-size: 1rem;
  color: #000000;
  text-decoration: none;
  transition: all 1s ease;
}
button a {
  color: #000000;
  text-decoration: none;
}
button:hover {
  background-color: #000000;
  color: #DAAF50;
}
button:hover a {
  color: #DAAF50;
}

/*==========HEADER==========*/
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}
@media (min-width: 1024px) {
  header {
    height: 128px;
  }
}
header #logoAndTitle {
  display: flex;
  align-items: center;
  gap: 8px;
}
header #logoAndTitle h1 {
  display: none;
}
@media (min-width: 1024px) {
  header #logoAndTitle h1 {
    display: flex;
    align-items: end;
    margin: 0 0 4px 8px;
    font-family: "Cinzel Decorative", serif;
    font-weight: lighter;
    background: linear-gradient(to left, #AF7F26 30%, #F5DBAA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
header #navHeader {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1280px) {
  header #navHeader {
    gap: 2.5rem;
  }
}
header #navHeader #burgerBtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
@media (min-width: 1280px) {
  header #navHeader #burgerBtn {
    display: none;
  }
}
header #navHeader #burgerBtn span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #DAAF50;
  transition: all 0.3s ease;
  transform-origin: center;
}
header #navHeader #burgerBtn.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
header #navHeader #burgerBtn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
header #navHeader #burgerBtn.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
header #navHeader #menuHeader {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
header #navHeader #menuHeader.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: #000000;
  border-top: 1px solid rgba(218, 175, 80, 0.3);
  border-bottom: 1px solid rgba(218, 175, 80, 0.3);
  padding: 1rem 0;
  z-index: 100;
  animation: fadeUp 0.2s ease;
}
header #navHeader #menuHeader.open li {
  padding: 0;
  border-bottom: 0.5px solid rgba(218, 175, 80, 0.1);
}
header #navHeader #menuHeader.open li a {
  display: block;
  padding: 1rem 1.5rem;
  font-family: "Playfair Display";
  font-size: 2.5rem;
  color: #FFFFFF;
}
header #navHeader #menuHeader.open li a:hover {
  color: #DAAF50;
  background-color: rgba(218, 175, 80, 0.05);
}
@media (min-width: 1280px) {
  header #navHeader #menuHeader {
    display: flex;
    flex-direction: row;
    gap: 64px;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    animation: none;
  }
  header #navHeader #menuHeader li {
    border: none;
    font-family: "Playfair Display";
    font-size: 1.2rem;
    cursor: pointer;
  }
  header #navHeader #menuHeader li a {
    display: block;
    padding: 0;
    color: #FFFFFF;
  }
  header #navHeader #menuHeader li a:hover {
    color: #DAAF50;
  }
}
header #navHeader button:not(#burgerBtn) {
  background-color: #DAAF50;
  border: 1px solid #AF7F26;
  padding: 8px 12px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  header #navHeader button:not(#burgerBtn) {
    padding: 8px 16px;
  }
}
header #navHeader button:not(#burgerBtn) a {
  color: #000000;
  font-family: "Poppins";
  font-size: 0.9rem;
}
@media (min-width: 1024px) {
  header #navHeader button:not(#burgerBtn) a {
    font-size: 1rem;
  }
}
header #navHeader button:not(#burgerBtn):hover {
  background-color: transparent;
}
header #navHeader button:not(#burgerBtn):hover a {
  color: #DAAF50;
}

/*==========FOOTER==========*/
.footer {
  margin-top: 80px;
}
@media (min-width: 1024px) {
  .footer {
    margin-top: 160px;
  }
}
.footer .footerContainer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .footer .footerContainer {
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 0;
  }
}
.footer .footerContainer h3 {
  font-family: "Playfair Display";
  font-weight: bolder;
  font-size: 1.2rem;
}
.footer .footerContainer ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (min-width: 1024px) {
  .footer .footerContainer ul {
    justify-content: space-between;
    height: 100%;
    gap: 0;
  }
}
.footer .footerContainer ul li {
  font-family: "Poppins";
  font-size: 1rem;
  font-weight: lighter;
  list-style-type: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .footer .footerContainer ul li {
    font-size: 1.1rem;
  }
}
.footer .footerContainer ul li a {
  color: #FFFFFF;
}
.footer .footerContainer ul li a:hover {
  color: #DAAF50;
}
.footer .footerContainer #footerFirstColumn {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
}
@media (min-width: 1024px) {
  .footer .footerContainer #footerFirstColumn {
    justify-content: space-around;
    height: 110%;
    margin: 50px 0 0 50px;
    gap: 0;
  }
}
.footer .footerContainer #footerFirstColumn #footerLogo {
  display: flex;
  align-items: center;
}
.footer .footerContainer #footerFirstColumn #footerLogo #footerWebsiteName {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.2rem;
  background: linear-gradient(to left, #AF7F26 30%, #F5DBAA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 8px;
}
@media (min-width: 1024px) {
  .footer .footerContainer #footerFirstColumn #footerLogo #footerWebsiteName {
    padding-top: 64px;
  }
}
.footer .footerContainer #footerFirstColumn #footerCatchyPhrase {
  font-family: "Poppins";
  font-size: 1rem;
  font-weight: bolder;
  color: #FFFFFF;
}
@media (min-width: 1024px) {
  .footer .footerContainer #footerFirstColumn #footerCatchyPhrase {
    font-size: 1.1rem;
  }
}
.footer .footerContainer #footerFirstColumn #footerSocials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer .footerContainer #footerFirstColumn #footerSocials a {
  border: 1px solid #DAAF50;
  padding: 10px 14px;
  color: #DAAF50;
}
@media (min-width: 1024px) {
  .footer .footerContainer #footerFirstColumn #footerSocials a {
    padding: 12px 16px;
    margin-right: 24px;
  }
}
.footer .footerContainer #footerFirstColumn #footerSocials a:hover {
  background-color: #DAAF50;
  color: #000000;
}
.footer .footerContainer #footerSecondColumn,
.footer .footerContainer #footerThirdColumn {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (min-width: 1024px) {
  .footer .footerContainer #footerSecondColumn,
  .footer .footerContainer #footerThirdColumn {
    justify-content: space-between;
    height: 130%;
    gap: 0;
  }
}
.footer .footerContainer #footerFourthColumn {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (min-width: 1024px) {
  .footer .footerContainer #footerFourthColumn {
    justify-content: space-around;
    height: 77%;
    gap: 0;
  }
}
.footer #footerCopyrights {
  text-align: center;
  font-family: "Playfair Display";
  margin-top: 48px;
  color: #FFFFFF;
}
@media (min-width: 1024px) {
  .footer #footerCopyrights {
    margin-top: 152px;
  }
}
.footer #footerCopyrights #creditWebsiteTitle {
  font-family: "Cinzel Decorative", serif;
  font-weight: bolder;
}

/*==========ERROR PAGES==========*/
#errorBlock {
  padding: 2rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  #errorBlock {
    padding: 4rem 6rem;
  }
}
#errorBlock .errorCode {
  font-family: "Cinzel Decorative", serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(218, 175, 80, 0.2);
  line-height: 1;
  margin: 0 0 1rem;
}
@media (min-width: 1024px) {
  #errorBlock .errorCode {
    font-size: 10rem;
  }
}
#errorBlock h2 {
  font-family: "Playfair Display";
  font-size: 1.5rem;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 0.5rem;
}
@media (min-width: 1024px) {
  #errorBlock h2 {
    font-size: 2rem;
  }
}
#errorBlock .underLine {
  width: 60px;
  margin: 0 auto 2rem;
}
#errorBlock .errorMessage {
  font-family: "Poppins";
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 3rem;
}
#errorBlock button {
  background-color: #DAAF50;
  color: #000000;
  border: 1px solid #DAAF50;
  padding: 10px 28px;
  font-family: "Poppins";
  font-size: 1rem;
  cursor: pointer;
}
#errorBlock button:hover {
  background-color: #000000;
  color: #DAAF50;
}

/*==========LEGAL==========*/
#legalBlock {
  padding: 2rem 1rem 4rem;
  max-width: 860px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #legalBlock {
    padding: 4rem 8vw 7rem;
  }
}
#legalBlock .legal-hero {
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  #legalBlock .legal-hero {
    margin-bottom: 4rem;
  }
}
#legalBlock .legal-hero__eyebrow {
  font-family: "Poppins";
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #DAAF50;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}
#legalBlock .legal-hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #DAAF50;
}
#legalBlock .legal-hero h2 {
  font-family: "Playfair Display";
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 0.5rem;
}
#legalBlock .legal-hero .underLine {
  width: 60px;
  margin: 0;
}
#legalBlock .legal-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
#legalBlock .legal-section {
  border-top: 0.5px solid rgba(218, 175, 80, 0.25);
  padding: 2rem 0;
}
@media (min-width: 1024px) {
  #legalBlock .legal-section {
    padding: 2.5rem 0;
  }
}
#legalBlock .legal-section:last-of-type {
  border-bottom: 0.5px solid rgba(218, 175, 80, 0.25);
}
#legalBlock .legal-section h3 {
  font-family: "Poppins";
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #DAAF50;
  margin: 0 0 1.2rem;
  font-weight: 400;
}
#legalBlock .legal-section p {
  font-family: "Poppins";
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  margin: 0 0 0.8rem;
}
#legalBlock .legal-section p:last-of-type {
  margin-bottom: 0;
}
#legalBlock .legal-section p strong {
  color: #FFFFFF;
  font-weight: 600;
}
#legalBlock .legal-section ul {
  margin: 0 0 0.8rem;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
#legalBlock .legal-section ul li {
  font-family: "Poppins";
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}
#legalBlock .legal-section ul li strong {
  color: #DAAF50;
  font-weight: 600;
}
#legalBlock .legal-section a {
  color: #DAAF50;
  border-bottom: 0.5px solid rgba(218, 175, 80, 0.3);
  transition: border-color 0.2s ease;
}
#legalBlock .legal-section a:hover {
  border-color: #DAAF50;
}

/*==========HOME PAGE==========*/
#homeMain {
  margin: 0;
  font-family: "Playfair Display";
}
@media (min-width: 1024px) {
  #homeMain {
    margin: 16px 0 0 40px;
  }
}
#homeMain #makeupWidget {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
}
@media (min-width: 1024px) {
  #homeMain #makeupWidget {
    bottom: 2rem;
    right: 2rem;
  }
}
#homeMain #makeupWidget #makeupBtn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #DAAF50;
  border: 1px solid #DAAF50;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
@media (min-width: 1024px) {
  #homeMain #makeupWidget #makeupBtn {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
}
#homeMain #makeupWidget #makeupBtn:hover {
  transform: scale(1.1);
  background: rgb(222.4504716981, 184.6226415094, 101.0495283019);
}
#homeMain #makeupPopup {
  position: fixed;
  bottom: 4rem;
  right: 1rem;
  z-index: 99;
  width: 90vw;
  max-width: 320px;
  background: #000000;
  border: 1px solid rgba(218, 175, 80, 0.3);
  padding: 1.2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (min-width: 1024px) {
  #homeMain #makeupPopup {
    bottom: 5.5rem;
    right: 2rem;
    width: 320px;
    padding: 1.5rem;
  }
}
#homeMain #makeupPopup.hidden {
  display: none;
}
#homeMain #makeupPopup #makeupClose {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: transparent;
  border: none;
  color: rgba(218, 175, 80, 0.5);
  font-size: 0.9rem;
  cursor: pointer;
}
#homeMain #makeupPopup #makeupClose:hover {
  color: #DAAF50;
}
#homeMain #makeupPopup #makeupLabel {
  font-family: "Poppins";
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #DAAF50;
  margin: 0 0 1.2rem;
}
#homeMain #makeupPopup #makeupLoading {
  font-family: "Poppins";
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 1rem 0;
}
#homeMain #makeupPopup #makeupProduct {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#homeMain #makeupPopup #makeupProduct.hidden {
  display: none;
}
#homeMain #makeupPopup #makeupProduct img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: #111;
  display: block;
}
#homeMain #makeupPopup #makeupInfo {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
#homeMain #makeupPopup #makeupInfo #makeupBrand {
  font-family: "Poppins";
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #DAAF50;
  margin: 0;
}
#homeMain #makeupPopup #makeupInfo #makeupName {
  font-family: "Playfair Display";
  font-size: 1rem;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0;
}
#homeMain #makeupPopup #makeupInfo #makeupType,
#homeMain #makeupPopup #makeupInfo #makeupPrice {
  font-family: "Poppins";
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  text-transform: capitalize;
}
#homeMain #makeupPopup #makeupInfo #makeupLink {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: "Poppins";
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #DAAF50;
  border-bottom: 0.5px solid rgba(218, 175, 80, 0.3);
  transition: border-color 0.2s ease;
}
#homeMain #makeupPopup #makeupInfo #makeupLink:hover {
  border-color: #DAAF50;
}
#homeMain #firstBlock {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: auto;
  align-items: flex-start;
  padding-top: 2rem;
}
@media (min-width: 1280px) {
  #homeMain #firstBlock {
    flex-direction: row;
    gap: 176px;
    height: 840px;
    align-items: flex-end;
    padding-top: 0;
  }
}
#homeMain #firstBlock #firstBlockPart1 {
  width: 100%;
}
@media (min-width: 1280px) {
  #homeMain #firstBlock #firstBlockPart1 {
    width: 58%;
  }
}
#homeMain #firstBlock #firstBlockPart1 #subBlock1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  color: #FFFFFF;
}
#homeMain #firstBlock #firstBlockPart1 #subBlock1 .underLineSmall {
  background-color: #FFFFFF;
  width: 40px;
  display: block;
  align-self: center;
}
@media (min-width: 1024px) {
  #homeMain #firstBlock #firstBlockPart1 #subBlock1 .underLineSmall {
    width: 60px;
  }
}
#homeMain #firstBlock #firstBlockPart1 #subBlock1 h2 {
  font-size: 1.2rem;
  margin-top: 16px;
}
@media (min-width: 1024px) {
  #homeMain #firstBlock #firstBlockPart1 #subBlock1 h2 {
    font-size: 1.5rem;
  }
}
#homeMain #firstBlock #firstBlockPart1 h6 {
  font-size: 2rem;
  font-weight: lighter;
  margin: 0 0 32px 0;
}
@media (min-width: 1024px) {
  #homeMain #firstBlock #firstBlockPart1 h6 {
    font-size: 4rem;
    margin: 0 0 48px 0;
  }
}
#homeMain #firstBlock #firstBlockPart1 button {
  width: auto;
  padding: 10px 16px;
  font-family: "Poppins";
  font-size: 0.9rem;
}
@media (min-width: 1024px) {
  #homeMain #firstBlock #firstBlockPart1 button {
    width: 30%;
    font-size: 1rem;
  }
}
#homeMain #firstBlock #firstBlockPart1 button a {
  border: none;
}
#homeMain #firstBlock #firstBlockPart1 #discoverButton {
  background-color: #DAAF50;
  border: 1px solid #AF7F26;
}
#homeMain #firstBlock #firstBlockPart1 #discoverButton a {
  color: #000000;
}
#homeMain #firstBlock #firstBlockPart1 #discoverButton:hover {
  background-color: #000000;
}
#homeMain #firstBlock #firstBlockPart1 #discoverButton:hover a {
  color: #DAAF50;
}
#homeMain #firstBlock #firstBlockPart1 #contactButton {
  background-color: #000000;
  border: 1px solid #AF7F26;
}
#homeMain #firstBlock #firstBlockPart1 #contactButton a {
  color: #DAAF50;
}
#homeMain #firstBlock #firstBlockPart1 #contactButton:hover {
  background-color: #DAAF50;
}
#homeMain #firstBlock #firstBlockPart1 #contactButton:hover a {
  color: #000000;
}
#homeMain #firstBlock #firstBlockPart2 {
  width: 100%;
  height: 400px;
  border: 1px solid #DAAF50;
}
@media (min-width: 1280px) {
  #homeMain #firstBlock #firstBlockPart2 {
    width: 32%;
    height: 800px;
  }
}
#homeMain #firstBlock #firstBlockPart2 a {
  text-decoration: none;
}
#homeMain #firstBlock #firstBlockPart2 #lastArticle {
  position: relative;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
}
#homeMain #firstBlock #firstBlockPart2 #lastArticle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#homeMain #firstBlock #firstBlockPart2 #lastArticle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgb(0, 0, 0), transparent);
}
#homeMain #firstBlock #firstBlockPart2 #lastArticle h3 {
  position: absolute;
  bottom: 12px;
  left: 16px;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  color: #DAAF50;
  font-family: "Poppins";
  z-index: 1;
}
#homeMain .soloLine {
  height: 1px;
  background-color: #DAAF50;
  margin: 80px -80px 16px -16px;
}
@media (min-width: 1024px) {
  #homeMain .soloLine {
    margin: 200px -40px 16px -40px;
  }
}
#homeMain .ribbon {
  background-color: #DAAF50;
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  margin: 0 -80px;
}
@media (min-width: 1024px) {
  #homeMain .ribbon {
    padding: 24px 0;
    margin: 0 -40px;
  }
}
#homeMain .ribbon-track {
  display: inline-block;
  animation: scroll 40s linear infinite;
}
#homeMain .ribbon-track span {
  margin: 0 16px;
  font-size: 0.85rem;
  text-transform: lowercase;
  color: black;
  font-family: "Playfair Display";
}
@media (min-width: 1024px) {
  #homeMain .ribbon-track span {
    margin: 0 24px;
    font-size: 0.95rem;
  }
}
#homeMain .ribbon-track .star {
  margin: 0;
}
#homeMain #secondBlock {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
  gap: 16px;
  margin: 60px auto;
}
@media (min-width: 1024px) {
  #homeMain #secondBlock {
    flex-direction: row;
    height: 1280px;
    width: 80%;
    margin: 160px auto;
  }
}
#homeMain #secondArticleColumn #secondArticle,
#homeMain #secondArticleColumn #thirdArticle,
#homeMain #secondArticleColumn #fourthArticle, #homeMain #firstArticleColumn #firstArticle,
#homeMain #firstArticleColumn #fourthArticle {
  position: relative;
  border: 1px solid #c9a84c;
  box-sizing: border-box;
  overflow: hidden;
}
#homeMain #secondArticleColumn #secondArticle img,
#homeMain #secondArticleColumn #thirdArticle img,
#homeMain #secondArticleColumn #fourthArticle img, #homeMain #firstArticleColumn #firstArticle img,
#homeMain #firstArticleColumn #fourthArticle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#homeMain #secondArticleColumn #secondArticle::after,
#homeMain #secondArticleColumn #thirdArticle::after,
#homeMain #secondArticleColumn #fourthArticle::after, #homeMain #firstArticleColumn #firstArticle::after,
#homeMain #firstArticleColumn #fourthArticle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgb(0, 0, 0), transparent);
}
#homeMain #secondArticleColumn #secondArticle h4,
#homeMain #secondArticleColumn #thirdArticle h4,
#homeMain #secondArticleColumn #fourthArticle h4, #homeMain #firstArticleColumn #firstArticle h4,
#homeMain #firstArticleColumn #fourthArticle h4 {
  position: absolute;
  bottom: 12px;
  left: 16px;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  font-family: "Poppins";
  color: #c9a84c;
  z-index: 1;
}
#homeMain #firstArticleColumn {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  #homeMain #firstArticleColumn {
    flex: 1;
    gap: 0;
  }
}
#homeMain #firstArticleColumn #firstArticle,
#homeMain #firstArticleColumn #fourthArticle {
  height: 300px;
  flex: 1;
}
@media (min-width: 1024px) {
  #homeMain #firstArticleColumn #firstArticle,
  #homeMain #firstArticleColumn #fourthArticle {
    height: auto;
    margin-bottom: 16px;
  }
}
#homeMain #secondArticleColumn {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  #homeMain #secondArticleColumn {
    flex: 1.4;
  }
}
#homeMain #secondArticleColumn #secondArticle,
#homeMain #secondArticleColumn #thirdArticle,
#homeMain #secondArticleColumn #fourthArticle {
  height: 200px;
}
@media (min-width: 1024px) {
  #homeMain #secondArticleColumn #secondArticle,
  #homeMain #secondArticleColumn #thirdArticle,
  #homeMain #secondArticleColumn #fourthArticle {
    flex: 1;
    height: auto;
  }
}
#homeMain #secondArticleColumn p {
  margin-bottom: -16px;
  font-size: 1.2rem;
  color: #c9a84c;
  letter-spacing: 0.04em;
}
@media (min-width: 1024px) {
  #homeMain #secondArticleColumn p {
    font-size: 1.5rem;
  }
}
#homeMain #secondArticleColumn h5 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  #homeMain #secondArticleColumn h5 {
    font-size: 3rem;
  }
}
#homeMain #communityBlock {
  margin: 16px -16px 0 -16px;
  background: linear-gradient(135deg, #2a2200 0%, #1a1500 50%, #0a0900 100%);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  #homeMain #communityBlock {
    margin: 0 -40px;
    padding: 48px 64px;
  }
}
#homeMain #communityBlock #communityLabelRow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  #homeMain #communityBlock #communityLabelRow {
    margin-bottom: 64px;
  }
}
#homeMain #communityBlock #communityLabel {
  font-family: "Playfair Display";
  font-size: 0.8rem;
  color: #DAAF50;
  margin: 0;
}
#homeMain #communityBlock #communityContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 32px;
}
@media (min-width: 1024px) {
  #homeMain #communityBlock #communityContent {
    padding-bottom: 56px;
  }
}
#homeMain #communityBlock #communityContent h2 {
  font-family: "Playfair Display";
  font-size: 2.5rem;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 1.5rem;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  #homeMain #communityBlock #communityContent h2 {
    font-size: 4rem;
  }
}
#homeMain #communityBlock #communityContent h2 span {
  color: #DAAF50;
  font-weight: 700;
}
#homeMain #communityBlock #communityContent p {
  font-family: "Poppins";
  font-size: 14px;
  color: #FFFFFF;
  opacity: 0.8;
  line-height: 1.8;
  margin: 0 0 2rem;
}
#homeMain #communityBlock #communityContent button {
  padding: 12px 16px;
  font-family: "Poppins";
  font-size: 1rem;
}
@media (min-width: 1024px) {
  #homeMain #communityBlock #communityContent button {
    font-size: 1.1rem;
  }
}
#homeMain #communityBlock #communityContent #subscribeButton {
  background-color: #DAAF50;
  color: #000000;
  border: 1px solid #AF7F26;
}
#homeMain #communityBlock #communityContent #subscribeButton:hover {
  background-color: #000000;
  color: #DAAF50;
}

/*==========ADMIN DASHBOARD==========*/
#dashboard-container {
  padding: 2rem 1rem;
}
@media (min-width: 1024px) {
  #dashboard-container {
    padding: 4rem 6rem;
  }
}
#dashboard-container h3 {
  font-family: "Playfair Display";
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 1.5rem;
}
@media (min-width: 1024px) {
  #dashboard-container h3 {
    font-size: 24px;
    letter-spacing: 1px;
  }
}
#dashboard-container #manageArticles {
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  #dashboard-container #manageArticles {
    margin-top: 3rem;
  }
}
#dashboard-container #manageArticles .articleRow {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 0.5px solid rgba(218, 175, 80, 0.3);
  padding: 1rem;
  margin-bottom: 1px;
  background-color: rgb(5.1, 5.1, 5.1);
}
@media (min-width: 1024px) {
  #dashboard-container #manageArticles .articleRow {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 1.2rem 2rem;
  }
}
#dashboard-container #manageArticles .articleRow:hover {
  border-color: rgba(218, 175, 80, 0.6);
}
#dashboard-container #manageArticles .articleRow p {
  font-family: "Poppins";
  margin: 0;
}
#dashboard-container #manageArticles .articleRow p:first-of-type {
  font-size: 15px;
  color: #FFFFFF;
  flex: 1;
}
#dashboard-container #manageArticles .articleRow p:last-of-type {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #DAAF50;
  opacity: 0.6;
}
#dashboard-container #manageArticles .articleRow a {
  font-family: "Poppins";
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 6px 12px;
  border: 0.5px solid rgba(218, 175, 80, 0.4);
  color: #DAAF50;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  #dashboard-container #manageArticles .articleRow a {
    padding: 6px 16px;
  }
}
#dashboard-container #manageArticles .articleRow a:hover {
  background-color: rgba(218, 175, 80, 0.1);
}
#dashboard-container #manageArticles .articleRow a:last-of-type {
  border-color: rgba(255, 0, 0, 0.4);
  color: #ff6666;
}
#dashboard-container #manageArticles .articleRow a:last-of-type:hover {
  background-color: rgba(255, 0, 0, 0.1);
}
#dashboard-container #manageArticles > a {
  display: inline-block;
  margin-top: 2rem;
  border: 1px solid #DAAF50;
  background-color: #DAAF50;
  color: #000000;
  padding: 8px 16px;
  font-size: 1rem;
  font-family: "Poppins";
}
#dashboard-container #manageArticles > a:hover {
  background-color: #000000;
  color: #DAAF50;
}

#manageUsers {
  padding-top: 40px;
}
@media (min-width: 1024px) {
  #manageUsers {
    padding-top: 80px;
  }
}
#manageUsers .userRow {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 0.5px solid rgba(218, 175, 80, 0.3);
  padding: 1rem;
  margin-bottom: 1px;
  background-color: rgb(5.1, 5.1, 5.1);
}
@media (min-width: 1024px) {
  #manageUsers .userRow {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 1.2rem 2rem;
  }
}
#manageUsers .userRow:hover {
  border-color: rgba(218, 175, 80, 0.6);
}
#manageUsers .userRow p {
  font-family: "Poppins";
  margin: 0;
}
#manageUsers .userRow p:first-of-type {
  font-size: 15px;
  color: #FFFFFF;
  flex: 1;
}
#manageUsers .userRow p:last-of-type {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #DAAF50;
  opacity: 0.6;
}

/*==========CREATE ARTICLE==========*/
#createArticleView {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #createArticleView {
    padding: 4rem 6rem;
  }
}
#createArticleView .error {
  font-family: "Poppins";
  font-size: 12px;
  color: red;
  margin-bottom: 1rem;
}
#createArticleView form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
#createArticleView form input[type=text],
#createArticleView form input[type=file] {
  background-color: rgb(7.65, 7.65, 7.65);
  border: 0.5px solid rgba(218, 175, 80, 0.4);
  color: #FFFFFF;
  padding: 12px 16px;
  font-family: "Poppins";
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
#createArticleView form input[type=text]::placeholder,
#createArticleView form input[type=file]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#createArticleView form input[type=text]:focus,
#createArticleView form input[type=file]:focus {
  border-color: #DAAF50;
}
#createArticleView form textarea {
  background-color: rgb(7.65, 7.65, 7.65);
  border: 0.5px solid rgba(218, 175, 80, 0.4);
  color: #FFFFFF;
  padding: 12px 16px;
  font-family: "Poppins";
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
#createArticleView form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#createArticleView form textarea:focus {
  border-color: #DAAF50;
}
#createArticleView form textarea {
  resize: vertical;
  min-height: 300px;
}
@media (min-width: 1024px) {
  #createArticleView form textarea {
    min-height: 400px;
  }
}
#createArticleView form label {
  font-family: "Poppins";
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #DAAF50;
  opacity: 0.7;
  margin-bottom: -0.8rem;
}
#createArticleView form select {
  background-color: rgb(7.65, 7.65, 7.65);
  border: 0.5px solid rgba(218, 175, 80, 0.4);
  color: #FFFFFF;
  padding: 12px 16px;
  font-family: "Poppins";
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
#createArticleView form select::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#createArticleView form select:focus {
  border-color: #DAAF50;
}
#createArticleView form select {
  cursor: pointer;
}
#createArticleView form select option {
  background-color: #000000;
  color: #FFFFFF;
}
#createArticleView form p {
  font-family: "Poppins";
  margin-top: -8px;
}
#createArticleView form button {
  display: block;
  align-self: flex-start;
  border: 1px solid #DAAF50;
  background-color: #DAAF50;
  color: #000000;
  padding: 8px 16px;
  font-size: 1rem;
  cursor: pointer;
  font-family: "Poppins";
  margin-top: 0.5rem;
}
#createArticleView form button:hover {
  background-color: rgba(218, 175, 80, 0.1);
}

/*==========EDIT ARTICLE==========*/
#editArticleBlock {
  padding: 2rem 1rem;
}
@media (min-width: 1024px) {
  #editArticleBlock {
    padding: 4rem 6rem;
  }
}
#editArticleBlock h1 {
  font-family: "Cinzel Decorative", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #DAAF50;
  letter-spacing: 2px;
  margin: 0 0 0.5rem;
}
@media (min-width: 1024px) {
  #editArticleBlock h1 {
    font-size: 48px;
  }
}
#editArticleBlock .underLine {
  height: 1px;
  background-color: #DAAF50;
  margin: 0 0 3rem;
}
#editArticleBlock .error {
  font-family: "Poppins";
  font-size: 12px;
  color: red;
  margin-bottom: 1rem;
}
#editArticleBlock form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
}
#editArticleBlock form label {
  font-family: "Poppins";
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #DAAF50;
  opacity: 0.7;
  margin-bottom: -0.8rem;
}
#editArticleBlock form input[type=text],
#editArticleBlock form select {
  background-color: rgb(7.65, 7.65, 7.65);
  border: 0.5px solid rgba(218, 175, 80, 0.4);
  color: #FFFFFF;
  padding: 12px 16px;
  font-family: "Poppins";
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
#editArticleBlock form input[type=text]::placeholder,
#editArticleBlock form select::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#editArticleBlock form input[type=text]:focus,
#editArticleBlock form select:focus {
  border-color: #DAAF50;
}
#editArticleBlock form textarea {
  background-color: rgb(7.65, 7.65, 7.65);
  border: 0.5px solid rgba(218, 175, 80, 0.4);
  color: #FFFFFF;
  padding: 12px 16px;
  font-family: "Poppins";
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
#editArticleBlock form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#editArticleBlock form textarea:focus {
  border-color: #DAAF50;
}
#editArticleBlock form textarea {
  resize: vertical;
  min-height: 300px;
}
#editArticleBlock form img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 1024px) {
  #editArticleBlock form img {
    width: 200px;
    height: 130px;
  }
}
#editArticleBlock form input[type=file] {
  font-family: "Poppins";
  font-size: 12px;
  color: #FFFFFF;
}
#editArticleBlock form button {
  display: block;
  align-self: flex-start;
  background-color: #DAAF50;
  color: #000000;
  padding: 8px 16px;
  font-size: 1rem;
  cursor: pointer;
  font-family: "Poppins";
  margin-top: 1rem;
}
@media (min-width: 1024px) {
  #editArticleBlock form button {
    padding: 10px 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
}
#editArticleBlock form button:hover {
  border: 1px solid #DAAF50;
  background-color: #000000;
}

/*==========LOGIN/REGISTER==========*/
#auth-container {
  gap: 30px;
  margin: 40px auto;
  width: 90%;
}
@media (min-width: 1024px) {
  #auth-container {
    margin: 80px auto;
    width: 25%;
  }
}
#auth-container h2 {
  margin-top: 0;
}
#auth-container #form-login,
#auth-container #form-register {
  font-family: "Playfair Display";
  padding-bottom: 40px;
}
#auth-container #form-login input,
#auth-container #form-register input {
  padding: 10px;
  margin: 10px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #DAAF50;
  background-color: #000000;
  color: #DAAF50;
  font-size: 0.9rem;
  background: #211d0d;
  background: linear-gradient(90deg, rgb(33, 29, 13) 26%, rgb(0, 0, 0) 100%);
  box-sizing: border-box;
}
#auth-container #form-login #checkboxGroup,
#auth-container #form-register #checkboxGroup {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin: 8px 0;
}
#auth-container #form-login input[type=checkbox],
#auth-container #form-register input[type=checkbox] {
  width: auto;
  margin-top: 3px;
  accent-color: #DAAF50;
  cursor: pointer;
  flex-shrink: 0;
}
#auth-container #form-login label,
#auth-container #form-register label {
  font-family: "Poppins";
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  cursor: pointer;
}
#auth-container #form-login label a,
#auth-container #form-register label a {
  color: #DAAF50;
  text-decoration: underline;
}
#auth-container #form-login label a:hover,
#auth-container #form-register label a:hover {
  opacity: 0.7;
}
#auth-container button {
  display: block;
  margin: 16px auto;
  padding: 12px 16px;
  border: 1px solid #DAAF50;
  background-color: #000000;
  color: #DAAF50;
  font-size: 1rem;
  font-family: "Poppins";
}
#auth-container button:hover {
  background-color: #DAAF50;
  color: #000000;
}

#quoteCoco {
  display: none;
}
@media (min-width: 1280px) {
  #quoteCoco {
    display: block;
    margin: 0 auto;
    padding-left: 80px;
    width: 35%;
    font-family: "Playfair Display";
    font-size: 3.8rem;
  }
}
#quoteCoco #quoteAuthor {
  display: flex;
}
#quoteCoco .underLineAuthor {
  height: 1px;
  background-color: #DAAF50;
  width: 40%;
}
#quoteCoco h4 {
  margin: -40px 0 0 16px;
  font-size: 3rem;
}

/*==========BLOG==========*/
#blogBlock #categoriesNav {
  margin: 0 0 32px 0;
}
#blogBlock > p {
  font-family: "Poppins";
}
#blogBlock form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  #blogBlock form {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}
#blogBlock form input[type=text] {
  background-color: rgb(7.65, 7.65, 7.65);
  border: 0.5px solid rgba(218, 175, 80, 0.4);
  color: #FFFFFF;
  padding: 12px 16px;
  font-family: "Poppins";
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
#blogBlock form input[type=text]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#blogBlock form input[type=text]:focus {
  border-color: #DAAF50;
}
#blogBlock form input[type=text] {
  width: 100%;
}
@media (min-width: 1024px) {
  #blogBlock form input[type=text] {
    width: 40%;
  }
}
#blogBlock form button {
  display: block;
  border: 1px solid #DAAF50;
  background-color: #000000;
  color: #DAAF50;
  padding: 8px 16px;
  font-size: 1rem;
  cursor: pointer;
  font-family: "Poppins";
  width: 100%;
}
@media (min-width: 1024px) {
  #blogBlock form button {
    width: auto;
  }
}
#blogBlock form button:hover {
  background-color: #DAAF50;
  color: #000000;
}
#blogBlock .articleCard {
  width: 100%;
  border: 0.5px solid rgba(218, 175, 80, 0.3);
  padding: 20px;
  margin: 8px auto;
  background-color: rgb(5.1, 5.1, 5.1);
  transition: border-color 0.2s;
}
@media (min-width: 1024px) {
  #blogBlock .articleCard {
    width: 70%;
    padding: 32px;
  }
}
#blogBlock .articleCard:hover {
  border-color: rgba(218, 175, 80, 0.6);
}
#blogBlock .articleCard .articleContent {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#blogBlock .articleCard .articleContent h3 {
  font-family: "Playfair Display";
  font-size: 1.3rem;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0;
}
@media (min-width: 1024px) {
  #blogBlock .articleCard .articleContent h3 {
    font-size: 26px;
    letter-spacing: 1px;
  }
}
#blogBlock .articleCard .articleContent p {
  font-family: "Poppins";
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #DAAF50;
  opacity: 0.6;
  margin: 0;
  text-transform: uppercase;
}
#blogBlock .articleCard .articleContent p:first-of-type {
  font-size: 1rem;
  font-weight: bold;
  color: #DAAF50;
}
#blogBlock .articleCard .articleContent p:last-of-type {
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
  color: #FFFFFF;
  line-height: 1.8;
}
#blogBlock .articleCard .articleContent a {
  display: inline-block;
  align-self: flex-start;
  border: 1px solid #DAAF50;
  color: #000000;
  padding: 8px 16px;
  font-size: 0.9rem;
  background-color: #DAAF50;
  font-family: "Poppins";
  margin-top: 16px;
}
@media (min-width: 1024px) {
  #blogBlock .articleCard .articleContent a {
    font-size: 1rem;
  }
}
#blogBlock .articleCard .articleContent a:hover {
  background-color: #000000;
  color: #DAAF50;
}

/*==========SHOW ARTICLE==========*/
#showArticleBlock {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #showArticleBlock {
    padding: 4rem 6rem;
  }
}
#showArticleBlock > p {
  font-family: "Poppins";
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #DAAF50;
  opacity: 0.6;
  margin: 0 0 2rem;
}
#showArticleBlock > img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  #showArticleBlock > img {
    height: 500px;
    margin-bottom: 3rem;
  }
}
#showArticleBlock #articleContent {
  border-left: 2px solid rgba(218, 175, 80, 0.5);
  padding: 0 0 0 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  #showArticleBlock #articleContent {
    padding: 0 0 0 2rem;
    margin-bottom: 4rem;
  }
}
#showArticleBlock #articleContent p {
  font-family: "Poppins";
  font-size: 15px;
  line-height: 2;
  color: #FFFFFF;
  margin: 0;
}
@media (min-width: 1024px) {
  #showArticleBlock #articleContent p {
    font-size: 16px;
  }
}
#showArticleBlock #commentsBlock {
  border-top: 0.5px solid rgba(218, 175, 80, 0.3);
  padding-top: 2rem;
}
@media (min-width: 1024px) {
  #showArticleBlock #commentsBlock {
    padding-top: 3rem;
  }
}
#showArticleBlock #commentsBlock h2 {
  font-family: "Playfair Display";
  font-size: 1.5rem;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 1.5rem;
}
@media (min-width: 1024px) {
  #showArticleBlock #commentsBlock h2 {
    font-size: 28px;
    margin: 0 0 2rem;
    letter-spacing: 1px;
  }
}
#showArticleBlock #commentsBlock > p {
  font-family: "Poppins";
  font-size: 13px;
  color: #FFFFFF;
  opacity: 0.5;
}
#showArticleBlock #commentsBlock .commentCard {
  border: 0.5px solid rgba(218, 175, 80, 0.2);
  padding: 1rem;
  margin-bottom: 1px;
  background-color: rgb(5.1, 5.1, 5.1);
}
@media (min-width: 1024px) {
  #showArticleBlock #commentsBlock .commentCard {
    padding: 1.5rem 2rem;
  }
}
#showArticleBlock #commentsBlock .commentCard:hover {
  border-color: rgba(218, 175, 80, 0.5);
}
#showArticleBlock #commentsBlock .commentCard .commentAuthor {
  font-family: "Poppins";
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 0.3rem;
}
#showArticleBlock #commentsBlock .commentCard .commentAuthor a {
  color: #DAAF50;
}
#showArticleBlock #commentsBlock .commentCard .commentAuthor a:hover {
  opacity: 0.7;
}
#showArticleBlock #commentsBlock .commentCard .commentDate {
  font-family: "Poppins";
  font-size: 10px;
  letter-spacing: 1px;
  color: #DAAF50;
  opacity: 0.5;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}
#showArticleBlock #commentsBlock .commentCard .commentContent {
  font-family: "Poppins";
  font-size: 14px;
  line-height: 1.8;
  color: #FFFFFF;
  margin: 0 0 1rem;
}
#showArticleBlock #commentsBlock .commentCard a {
  font-family: "Poppins";
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff6666;
  border-bottom: 0.5px solid rgba(255, 0, 0, 0.3);
}
#showArticleBlock #commentsBlock .commentCard a:hover {
  border-color: red;
}
#showArticleBlock #commentsBlock #commentForm {
  margin-top: 2rem;
  border-top: 0.5px solid rgba(218, 175, 80, 0.2);
  padding-top: 1.5rem;
}
@media (min-width: 1024px) {
  #showArticleBlock #commentsBlock #commentForm {
    margin-top: 3rem;
    padding-top: 2rem;
  }
}
#showArticleBlock #commentsBlock #commentForm h3 {
  font-family: "Playfair Display";
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 1.5rem;
}
@media (min-width: 1024px) {
  #showArticleBlock #commentsBlock #commentForm h3 {
    font-size: 22px;
  }
}
#showArticleBlock #commentsBlock #commentForm .error {
  font-family: "Poppins";
  font-size: 12px;
  color: red;
  margin-bottom: 1rem;
}
#showArticleBlock #commentsBlock #commentForm textarea {
  background-color: rgb(7.65, 7.65, 7.65);
  border: 0.5px solid rgba(218, 175, 80, 0.4);
  color: #FFFFFF;
  padding: 12px 16px;
  font-family: "Poppins";
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
#showArticleBlock #commentsBlock #commentForm textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#showArticleBlock #commentsBlock #commentForm textarea:focus {
  border-color: #DAAF50;
}
#showArticleBlock #commentsBlock #commentForm textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 1rem;
}
#showArticleBlock #commentsBlock #commentForm button {
  display: block;
  color: #000000;
  background-color: #DAAF50;
  padding: 8px 16px;
  font-size: 1rem;
  cursor: pointer;
  font-family: "Poppins";
}
@media (min-width: 1024px) {
  #showArticleBlock #commentsBlock #commentForm button {
    padding: 10px 28px;
  }
}
#showArticleBlock #commentsBlock #commentForm button:hover {
  background-color: #000000;
  border: 1px solid #DAAF50;
}
#showArticleBlock #commentsBlock > p:last-of-type {
  margin-top: 2rem;
  font-family: "Poppins";
  font-size: 12px;
  color: #DAAF50;
  opacity: 0.6;
}
#showArticleBlock #commentsBlock > p:last-of-type a {
  color: #DAAF50;
  text-decoration: underline;
}
#showArticleBlock #commentsBlock > p:last-of-type a:hover {
  opacity: 1;
}

/*==========FORUM==========*/
#introForum p {
  color: #FFFFFF;
  font-family: "Playfair Display";
  font-size: 1.4rem;
  margin: 32px 0;
}
@media (min-width: 1024px) {
  #introForum p {
    font-size: 2rem;
    margin: 48px 0;
  }
}
#introForum p .big {
  text-transform: uppercase;
}
#introForum .underLineSmall {
  width: 60%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #introForum .underLineSmall {
    width: 40%;
  }
}
#introForum h3 {
  color: #FFFFFF;
  font-family: "Poppins";
  text-align: center;
  font-size: 1.2rem;
}
@media (min-width: 1024px) {
  #introForum h3 {
    font-size: 1.6rem;
  }
}

#categoriesNavForum {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 32px 0 16px 0;
}
@media (min-width: 1024px) {
  #categoriesNavForum {
    margin: 64px 0 16px 64px;
  }
}
#categoriesNavForum a {
  font-family: "Poppins";
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(218, 175, 80, 0.15);
  padding: 6px 12px;
  transition: color 0.25s ease, border-color 1s ease, background 1s ease;
}
@media (min-width: 1024px) {
  #categoriesNavForum a {
    font-size: 1rem;
    padding: 8px 16px;
  }
}
#categoriesNavForum a:hover, #categoriesNavForum a.active {
  color: #000000;
  background: #DAAF50;
  border-color: #DAAF50;
}

#forumBlock {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 0;
  padding: 16px;
}
@media (min-width: 1280px) {
  #forumBlock {
    grid-template-columns: 2.2fr 0.8fr;
    gap: 80px;
    margin-top: -32px;
    padding: 32px 64px;
  }
}
#forumBlock p {
  font-family: "Poppins";
  font-size: 1rem;
  color: #DAAF50;
}
#forumBlock h3 {
  font-family: "Playfair Display";
  font-size: 1.2rem;
  color: #FFFFFF;
  font-weight: 400;
}
#forumBlock h3 span {
  color: #DAAF50;
}
#forumBlock #mainForumBlock {
  display: flex;
  flex-direction: column;
}
#forumBlock #mainForumBlock .messageCard {
  border: 1px solid #c9a84c;
  background: #211d0d;
  background: linear-gradient(90deg, rgb(33, 29, 13) 26%, rgb(0, 0, 0) 100%);
  box-sizing: border-box;
  position: relative;
  padding: 12px 16px;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  #forumBlock #mainForumBlock .messageCard {
    padding: 8px 48px;
  }
}
#forumBlock #mainForumBlock .messageCard h4 {
  font-family: "Poppins";
  font-size: 1rem;
  color: #DAAF50;
  font-weight: bold;
  margin: 0;
}
@media (min-width: 1024px) {
  #forumBlock #mainForumBlock .messageCard h4 {
    font-size: 1.2rem;
  }
}
#forumBlock #mainForumBlock .messageCard > p:first-of-type {
  font-size: 0.85rem;
  font-weight: bold;
  color: #DAAF50;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  #forumBlock #mainForumBlock .messageCard > p:first-of-type {
    font-size: 1rem;
  }
}
#forumBlock #mainForumBlock .messageCard p {
  color: #FFFFFF;
  font-size: 0.9rem;
}
@media (min-width: 1024px) {
  #forumBlock #mainForumBlock .messageCard p {
    font-size: 1rem;
  }
}
#forumBlock #mainForumBlock .messageCard p a {
  color: #FFFFFF;
  font-weight: 800;
}
#forumBlock #mainForumBlock .messageCard button {
  background-color: #DAAF50;
  border: 1px solid #AF7F26;
  padding: 8px 16px;
  margin-bottom: 16px;
  cursor: pointer;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  #forumBlock #mainForumBlock .messageCard button {
    margin-bottom: 24px;
  }
}
#forumBlock #mainForumBlock .messageCard button a {
  color: #000000;
  font-family: "Poppins";
  font-size: 0.9rem;
}
@media (min-width: 1024px) {
  #forumBlock #mainForumBlock .messageCard button a {
    font-size: 1rem;
  }
}
#forumBlock #mainForumBlock .messageCard button:hover {
  background-color: #000000;
}
#forumBlock #mainForumBlock .messageCard button:hover a {
  color: #DAAF50;
}
#forumBlock #sidebarForumBlock p {
  font-size: 1rem;
}
#forumBlock #sidebarForumBlock #sidenavBlock {
  border: 1px solid #c9a84c;
  background: #211d0d;
  background: linear-gradient(90deg, rgb(33, 29, 13) 26%, rgb(0, 0, 0) 100%);
  box-sizing: border-box;
  position: relative;
}
#forumBlock #sidebarForumBlock #sidenavBlock p {
  font-size: 0.9rem;
  color: #FFFFFF;
  padding: 4px;
  margin: 0;
}
@media (min-width: 1024px) {
  #forumBlock #sidebarForumBlock #sidenavBlock p {
    font-size: 1rem;
  }
}
#forumBlock #sidebarForumBlock #sidenavBlock p a {
  font-weight: bold;
  color: #DAAF50;
}
#forumBlock #speakUp p {
  font-size: 1rem;
}
#forumBlock #speakUp #speakUpCase {
  border: 1px solid #AF7F26;
  background: #211d0d;
  background: linear-gradient(90deg, rgb(33, 29, 13) 26%, rgb(0, 0, 0) 100%);
  box-sizing: border-box;
  height: auto;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  #forumBlock #speakUp #speakUpCase {
    height: 240px;
  }
}
#forumBlock #speakUp #speakUpCase p {
  text-align: center;
  font-size: 3rem;
  margin: 16px 0;
  font-family: "Playfair Display";
  font-style: italic;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  #forumBlock #speakUp #speakUpCase p {
    font-size: 5rem;
  }
}
#forumBlock #speakUp #speakUpCase h6 {
  text-align: center;
}
#forumBlock #speakUp #speakUpCase h6 a {
  color: #DAAF50;
  font-family: "Poppins";
  font-size: 1rem;
}
#forumBlock #speakUp #speakUpCase h6:hover a {
  color: #FFFFFF;
}
#forumBlock #speakUp #speakUpCase button {
  background-color: #000000;
  width: auto;
  margin: 0 auto;
  border: 1px solid #AF7F26;
  padding: 8px 16px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  #forumBlock #speakUp #speakUpCase button {
    width: 14%;
  }
}
#forumBlock #speakUp #speakUpCase button a {
  color: #DAAF50;
  font-family: "Poppins";
  font-size: 1rem;
}
@media (min-width: 1024px) {
  #forumBlock #speakUp #speakUpCase button a {
    font-size: 1.1rem;
  }
}
#forumBlock #speakUp #speakUpCase button:hover {
  background-color: #DAAF50;
}
#forumBlock #speakUp #speakUpCase button:hover a {
  color: #000000;
}
#forumBlock #pagination a {
  color: #AF7F26;
}
#forumBlock #joinOrContact p {
  font-size: 1rem;
}
#forumBlock #joinOrContact #joinOrContactCase {
  border: 1px solid #AF7F26;
  position: relative;
  height: auto;
  padding-bottom: 40px;
  background-image: url(../../images/img_signin_sidebar.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  #forumBlock #joinOrContact #joinOrContactCase {
    padding-bottom: 56px;
  }
}
#forumBlock #joinOrContact #joinOrContactCase h5 {
  font-size: 1.2rem;
  font-family: "Poppins";
  text-align: center;
  color: #FFFFFF;
}
@media (min-width: 1024px) {
  #forumBlock #joinOrContact #joinOrContactCase h5 {
    font-size: 1.5rem;
  }
}
#forumBlock #joinOrContact #joinOrContactCase h5 #join {
  font-family: "Playfair Display";
  font-weight: bold;
  text-transform: uppercase;
  font-size: 2rem;
  color: #DAAF50;
}
@media (min-width: 1024px) {
  #forumBlock #joinOrContact #joinOrContactCase h5 #join {
    font-size: 2.5rem;
  }
}
#forumBlock #joinOrContact #joinOrContactCase h5 #joinAlliegators {
  text-transform: uppercase;
}
#forumBlock #joinOrContact #joinOrContactCase p {
  color: #FFFFFF;
  text-align: center;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  #forumBlock #joinOrContact #joinOrContactCase p {
    font-size: 1.2rem;
  }
}
#forumBlock #joinOrContact #joinOrContactCase button {
  display: block;
  background-color: #DAAF50;
  margin: 0 auto;
  border: 1px solid #AF7F26;
  padding: 8px 16px;
  cursor: pointer;
}
#forumBlock #joinOrContact #joinOrContactCase button a {
  color: #000000;
  font-family: "Poppins";
  font-size: 1rem;
}
@media (min-width: 1024px) {
  #forumBlock #joinOrContact #joinOrContactCase button a {
    font-size: 1.1rem;
  }
}
#forumBlock #joinOrContact #joinOrContactCase button:hover {
  background-color: #000000;
}
#forumBlock #joinOrContact #joinOrContactCase button:hover a {
  color: #DAAF50;
}

/*==========CREATE MESSAGE==========*/
#createMessageBlock {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #createMessageBlock {
    padding: 4rem 6rem;
  }
}
#createMessageBlock .error {
  font-family: "Poppins";
  font-size: 12px;
  color: red;
  margin-bottom: 1rem;
}
#createMessageBlock form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
#createMessageBlock form input[type=text] {
  background-color: rgb(7.65, 7.65, 7.65);
  border: 0.5px solid rgba(218, 175, 80, 0.4);
  color: #FFFFFF;
  padding: 12px 16px;
  font-family: "Poppins";
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
#createMessageBlock form input[type=text]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#createMessageBlock form input[type=text]:focus {
  border-color: #DAAF50;
}
#createMessageBlock form textarea {
  background-color: rgb(7.65, 7.65, 7.65);
  border: 0.5px solid rgba(218, 175, 80, 0.4);
  color: #FFFFFF;
  padding: 12px 16px;
  font-family: "Poppins";
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
#createMessageBlock form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#createMessageBlock form textarea:focus {
  border-color: #DAAF50;
}
#createMessageBlock form textarea {
  resize: vertical;
  min-height: 200px;
}
@media (min-width: 1024px) {
  #createMessageBlock form textarea {
    min-height: 300px;
  }
}
#createMessageBlock form label {
  font-family: "Poppins";
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #DAAF50;
  opacity: 0.7;
  margin-bottom: -0.8rem;
}
#createMessageBlock form select {
  background-color: rgb(7.65, 7.65, 7.65);
  border: 0.5px solid rgba(218, 175, 80, 0.4);
  color: #FFFFFF;
  padding: 12px 16px;
  font-family: "Poppins";
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
#createMessageBlock form select::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#createMessageBlock form select:focus {
  border-color: #DAAF50;
}
#createMessageBlock form select {
  cursor: pointer;
}
#createMessageBlock form select option {
  background-color: #000000;
  color: #FFFFFF;
}
#createMessageBlock form button {
  display: block;
  align-self: flex-start;
  border: 1px solid #DAAF50;
  background-color: #DAAF50;
  color: #000000;
  padding: 8px 16px;
  font-size: 1rem;
  cursor: pointer;
  font-family: "Poppins";
  margin-top: 0.5rem;
}
#createMessageBlock form button:hover {
  background-color: #000000;
  color: #DAAF50;
}

/*==========SHOW MESSAGE==========*/
#showMessageBlock > p {
  font-family: "Poppins";
  font-size: 0.9rem;
  color: #DAAF50;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  #showMessageBlock > p {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}
#showMessageBlock #mainMessage {
  border-left: 1px solid #DAAF50;
  padding: 16px 24px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1024px) {
  #showMessageBlock #mainMessage {
    padding: 32px 64px;
    width: 80%;
  }
}
#showMessageBlock #mainMessage p {
  font-family: "Poppins";
  font-size: 0.95rem;
  line-height: 1.9;
  color: #FFFFFF;
  margin: 0;
}
@media (min-width: 1024px) {
  #showMessageBlock #mainMessage p {
    font-size: 1rem;
  }
}
#showMessageBlock #replies {
  padding: 16px 24px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1024px) {
  #showMessageBlock #replies {
    padding: 32px 64px;
    width: 80%;
  }
}
#showMessageBlock #replies h3 {
  font-family: "Playfair Display";
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFFFFF;
}
@media (min-width: 1024px) {
  #showMessageBlock #replies h3 {
    font-size: 1.5rem;
  }
}
#showMessageBlock #replies .replyCard {
  border: 0.5px solid rgba(218, 175, 80, 0.3);
  padding: 12px 16px;
  margin-bottom: 1px;
  background-color: rgb(12.75, 12.75, 12.75);
}
@media (min-width: 1024px) {
  #showMessageBlock #replies .replyCard {
    padding: 16px 32px;
  }
}
#showMessageBlock #replies .replyCard:hover {
  border-color: rgba(218, 175, 80, 0.6);
}
#showMessageBlock #replies .replyCard > p {
  font-family: "Poppins";
  font-size: 0.8rem;
  color: #DAAF50;
  text-transform: uppercase;
}
#showMessageBlock #replies .replyCard > p:last-of-type {
  font-size: 0.95rem;
  text-transform: none;
  opacity: 1;
  color: #FFFFFF;
  margin-top: 0.8rem;
}
@media (min-width: 1024px) {
  #showMessageBlock #replies .replyCard > p:last-of-type {
    font-size: 1rem;
  }
}
#showMessageBlock #replies .replyCard details summary {
  font-family: "Poppins";
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
}
#showMessageBlock #replies .replyCard details form {
  margin-top: 1rem;
}
#showMessageBlock #replies .replyCard details form textarea {
  background-color: rgb(7.65, 7.65, 7.65);
  border: 0.5px solid rgba(218, 175, 80, 0.4);
  color: #FFFFFF;
  padding: 12px 16px;
  font-family: "Poppins";
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
#showMessageBlock #replies .replyCard details form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#showMessageBlock #replies .replyCard details form textarea:focus {
  border-color: #DAAF50;
}
#showMessageBlock #replies .replyCard details form textarea {
  resize: vertical;
  min-height: 80px;
  margin-bottom: 1rem;
}
#showMessageBlock #replies .replyCard details form button {
  display: block;
  background-color: #DAAF50;
  border: 1px solid #AF7F26;
  padding: 8px 16px;
  cursor: pointer;
  color: #000000;
  font-family: "Poppins";
}
#showMessageBlock #replies .replyCard details form button:hover {
  background-color: #000000;
  color: #DAAF50;
}
#showMessageBlock #replies .replyCard .subReplies {
  padding: 12px 16px;
  margin: 8px auto;
  width: 95%;
  border-left: 1px solid rgba(218, 175, 80, 0.2);
}
@media (min-width: 1024px) {
  #showMessageBlock #replies .replyCard .subReplies {
    padding: 16px 32px;
    width: 90%;
  }
}
#showMessageBlock #replies .replyCard .subReplies .subReplyCard {
  margin: 0;
  border-bottom: 0.5px solid rgba(218, 175, 80, 0.1);
}
#showMessageBlock #replies .replyCard .subReplies .subReplyCard p {
  font-family: "Poppins";
  font-size: 0.8rem;
  color: #DAAF50;
  text-transform: uppercase;
}
#showMessageBlock #replies .replyCard .subReplies .subReplyCard p:last-of-type {
  font-size: 0.95rem;
  color: #FFFFFF;
  text-transform: none;
  letter-spacing: 0;
}
#showMessageBlock #replyForm {
  border-top: 0.5px solid rgba(218, 175, 80, 0.3);
  padding: 16px 24px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1024px) {
  #showMessageBlock #replyForm {
    padding: 32px 64px;
    width: 80%;
  }
}
#showMessageBlock #replyForm h3 {
  font-family: "Playfair Display";
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFFFFF;
}
@media (min-width: 1024px) {
  #showMessageBlock #replyForm h3 {
    font-size: 24px;
  }
}
#showMessageBlock #replyForm .error {
  font-family: "Poppins";
  font-size: 12px;
  color: red;
  margin-bottom: 1rem;
}
#showMessageBlock #replyForm textarea {
  background-color: rgb(7.65, 7.65, 7.65);
  border: 0.5px solid rgba(218, 175, 80, 0.4);
  color: #FFFFFF;
  padding: 12px 16px;
  font-family: "Poppins";
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
#showMessageBlock #replyForm textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#showMessageBlock #replyForm textarea:focus {
  border-color: #DAAF50;
}
#showMessageBlock #replyForm textarea {
  min-height: 120px;
  margin-bottom: 16px;
}
#showMessageBlock #replyForm button {
  display: block;
  background-color: #DAAF50;
  border: 1px solid #AF7F26;
  padding: 8px 16px;
  cursor: pointer;
  color: #000000;
  font-family: "Poppins";
}
#showMessageBlock #replyForm button:hover {
  background-color: #000000;
  color: #DAAF50;
}
#showMessageBlock > p:last-of-type {
  font-family: "Poppins";
  font-size: 12px;
  color: #DAAF50;
  opacity: 0.6;
}
#showMessageBlock > p:last-of-type a {
  color: #DAAF50;
  text-decoration: underline;
}
#showMessageBlock > p:last-of-type a:hover {
  opacity: 1;
}

/*==========ABOUT PAGE==========*/
#aboutPage {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  #aboutPage {
    margin: 280px 0 0 64px;
  }
}
#aboutPage .about-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 10vh;
  overflow: hidden;
}
#aboutPage .about-hero .underLine {
  width: 100%;
}
@media (min-width: 1024px) {
  #aboutPage .about-hero {
    grid-template-columns: 1fr 1fr;
  }
}
#aboutPage .about-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#aboutPage .about-hero__content {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}
#aboutPage .about-hero__eyebrow {
  font-family: "Poppins";
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #DAAF50;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
#aboutPage .about-hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #DAAF50;
}
#aboutPage .about-hero__title {
  font-family: "Playfair Display";
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #DAAF50;
  line-height: 1.1;
  margin: 0 0 2.5rem;
}
#aboutPage .about-hero__title em {
  color: #DAAF50;
  font-style: italic;
}
#aboutPage .about-hero__line {
  width: 60px;
  height: 2px;
  background: #DAAF50;
}
#aboutPage .about-hero__image-wrap {
  position: relative;
  overflow: hidden;
  height: 300px;
}
@media (min-width: 1024px) {
  #aboutPage .about-hero__image-wrap {
    height: auto;
  }
}
#aboutPage .about-hero__image-wrap::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(218, 175, 80, 0.3);
  z-index: 1;
  pointer-events: none;
}
#aboutPage .about-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(20%);
  transition: filter 1s ease;
}
#aboutPage .about-hero__image:hover {
  filter: grayscale(0%);
}
#aboutPage .about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 3rem 1rem;
  border-top: 1px solid rgba(218, 175, 80, 0.15);
}
@media (min-width: 1024px) {
  #aboutPage .about-intro {
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    padding: 6rem 8vw;
  }
}
#aboutPage .about-intro {
  animation: fadeUp 0.8s 0.2s ease both;
}
#aboutPage .about-intro__number {
  font-family: "Playfair Display";
  font-size: 3rem;
  font-weight: 700;
  color: rgba(218, 175, 80, 0.15);
  line-height: 1;
}
@media (min-width: 1024px) {
  #aboutPage .about-intro__number {
    font-size: 5rem;
    padding-top: 0.5rem;
  }
}
#aboutPage .about-intro__title {
  font-family: "Playfair Display";
  font-size: 1.4rem;
  font-weight: 400;
  color: #DAAF50;
  margin: 0 0 1.5rem;
}
@media (min-width: 1024px) {
  #aboutPage .about-intro__title {
    font-size: 1.8rem;
  }
}
#aboutPage .about-intro p {
  font-family: "Poppins";
  font-size: 1rem;
  color: rgba(218, 175, 80, 0.75);
  line-height: 1.8;
  margin: 0 0 1rem;
  max-width: 600px;
}
#aboutPage .about-intro p strong {
  color: #DAAF50;
  font-weight: 600;
}
#aboutPage .about-values {
  padding: 3rem 1rem;
  background: rgba(218, 175, 80, 0.04);
  border-top: 1px solid rgba(218, 175, 80, 0.1);
  border-bottom: 1px solid rgba(218, 175, 80, 0.1);
}
@media (min-width: 1024px) {
  #aboutPage .about-values {
    padding: 5rem 8vw;
  }
}
#aboutPage .about-values__header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  #aboutPage .about-values__header {
    margin-bottom: 4rem;
  }
}
#aboutPage .about-values__header h2 {
  font-family: "Playfair Display";
  font-size: 1.4rem;
  font-weight: 400;
  color: #DAAF50;
  text-transform: lowercase;
  white-space: nowrap;
  margin: 0;
}
#aboutPage .about-values__line {
  flex: 1;
  height: 1px;
  background: rgba(218, 175, 80, 0.25);
}
#aboutPage .about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
@media (min-width: 1024px) {
  #aboutPage .about-values__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
#aboutPage .about-values__card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(218, 175, 80, 0.12);
  transition: border-color 0.3s ease, background 0.3s ease;
}
@media (min-width: 1024px) {
  #aboutPage .about-values__card {
    padding: 3rem 2.5rem;
  }
}
#aboutPage .about-values__card:hover {
  border-color: rgba(218, 175, 80, 0.5);
  background: rgba(218, 175, 80, 0.03);
}
#aboutPage .about-values__card h3 {
  font-family: "Playfair Display";
  font-size: 1.2rem;
  font-weight: 400;
  color: #DAAF50;
  margin: 1rem 0 0.8rem;
}
#aboutPage .about-values__card p {
  font-family: "Poppins";
  font-size: 0.95rem;
  color: rgba(218, 175, 80, 0.65);
  line-height: 1.7;
  margin: 0;
}
#aboutPage .about-values__icon {
  font-size: 1.2rem;
  color: #DAAF50;
  display: block;
}
#aboutPage .about-quote {
  padding: 4rem 1rem;
  text-align: center;
}
@media (min-width: 1024px) {
  #aboutPage .about-quote {
    padding: 7rem 8vw;
  }
}
#aboutPage .about-quote blockquote {
  font-family: "Playfair Display";
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-style: italic;
  color: rgba(218, 175, 80, 0.6);
  line-height: 1.5;
  margin: 0;
  position: relative;
}
#aboutPage .about-quote__mark {
  font-size: 4rem;
  color: rgba(218, 175, 80, 0.15);
  line-height: 0;
  vertical-align: -2.5rem;
  margin-right: 0.2rem;
  font-style: normal;
}
@media (min-width: 1024px) {
  #aboutPage .about-quote__mark {
    font-size: 6rem;
  }
}
#aboutPage .about-quote cite {
  display: block;
  font-family: "Poppins";
  font-size: 0.85rem;
  font-style: normal;
  color: #DAAF50;
  margin-top: 2rem;
}
#aboutPage .about-cta {
  padding: 3rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(218, 175, 80, 0.15);
}
@media (min-width: 1024px) {
  #aboutPage .about-cta {
    padding: 5rem 8vw;
  }
}
#aboutPage .about-cta p {
  font-family: "Poppins";
  font-size: 1rem;
  color: rgba(218, 175, 80, 0.6);
  margin: 0 0 2rem;
}

/*==========CONTACT==========*/
#contactPage .contact-hero {
  position: relative;
  height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 1024px) {
  #contactPage .contact-hero {
    height: 70vh;
  }
}
#contactPage .contact-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
#contactPage .contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}
#contactPage .contact-hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
  width: 100%;
}
@media (min-width: 1024px) {
  #contactPage .contact-hero__content {
    padding: 4rem 8vw;
  }
}
#contactPage .contact-hero__eyebrow {
  font-family: "Poppins";
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #DAAF50;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
#contactPage .contact-hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #DAAF50;
}
#contactPage .contact-hero__title {
  font-family: "Playfair Display";
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  margin: 0 0 1.2rem;
}
#contactPage .contact-hero__title em {
  color: #DAAF50;
  font-style: italic;
}
#contactPage .contact-hero__sub {
  font-family: "Poppins";
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 2.5rem;
}
@media (min-width: 1024px) {
  #contactPage .contact-hero__sub {
    font-size: 1rem;
    letter-spacing: 0.04em;
  }
}
#contactPage .contact-hero__line {
  width: 60px;
  height: 2px;
  background: #DAAF50;
}
#contactPage .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 32px 16px;
}
@media (min-width: 1024px) {
  #contactPage .contact-wrapper {
    grid-template-columns: 1fr 380px;
    gap: 5rem;
    margin: 64px;
  }
}
#contactPage .contact-form-section__title {
  font-family: "Playfair Display";
  font-size: 1.3rem;
  font-weight: 400;
  color: #DAAF50;
  margin: 0 0 2.5rem;
  text-transform: lowercase;
}
#contactPage .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#contactPage .contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  #contactPage .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}
#contactPage .contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#contactPage .contact-form__group label {
  font-family: "Poppins";
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #DAAF50;
}
#contactPage .contact-form__group input,
#contactPage .contact-form__group textarea {
  border: 1px solid #DAAF50;
  color: #DAAF50;
  font-family: "Poppins";
  font-size: 0.95rem;
  padding: 0.9rem 1.2rem;
  outline: none;
  transition: border-color 1s ease;
  resize: none;
  background: #211d0d;
  background: linear-gradient(90deg, rgb(33, 29, 13) 26%, rgb(0, 0, 0) 100%);
  width: 100%;
  box-sizing: border-box;
}
#contactPage .contact-form__group input::placeholder,
#contactPage .contact-form__group textarea::placeholder {
  color: #DAAF50;
}
#contactPage .contact-form__group input:focus,
#contactPage .contact-form__group textarea:focus {
  border-color: #DAAF50;
}
#contactPage .contact-form__submit {
  align-self: flex-start;
  background: #DAAF50;
  color: #000000;
  font-family: "Poppins";
  font-size: 1rem;
  border: 1px solid #DAAF50;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 1s ease, color 1s ease;
  width: 100%;
}
@media (min-width: 1024px) {
  #contactPage .contact-form__submit {
    width: auto;
  }
}
#contactPage .contact-form__submit:hover {
  background: transparent;
  color: #DAAF50;
}
#contactPage .contact-aside {
  position: relative;
}
@media (min-width: 1024px) {
  #contactPage .contact-aside {
    position: sticky;
    top: 2rem;
  }
}
#contactPage .contact-aside__title {
  font-family: "Playfair Display";
  font-size: 1.3rem;
  font-weight: 400;
  color: #DAAF50;
  margin: 0 0 2rem;
  text-transform: lowercase;
}
#contactPage .contact-aside__socials {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 3rem;
}
#contactPage .contact-aside__note {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(218, 175, 80, 0.15);
  align-items: flex-start;
}
#contactPage .contact-aside__note-icon {
  color: #DAAF50;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
#contactPage .contact-aside__note p {
  font-family: "Poppins";
  font-size: 0.85rem;
  color: rgba(218, 175, 80, 0.55);
  line-height: 1.7;
  margin: 0;
}
#contactPage .contact-aside__note p strong {
  color: #DAAF50;
  font-weight: 600;
}
#contactPage .contact-social {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(218, 175, 80, 0.12);
  transition: border-color 1s ease, background 1s ease;
}
@media (min-width: 1024px) {
  #contactPage .contact-social {
    padding: 1.1rem 1.2rem;
  }
}
#contactPage .contact-social:hover {
  border-color: #DAAF50;
  background: rgba(218, 175, 80, 0.04);
}
#contactPage .contact-social:hover .contact-social__icon {
  background: #DAAF50;
  color: #000000;
}
#contactPage .contact-social__icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(218, 175, 80, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins";
  font-size: 0.75rem;
  color: #DAAF50;
  text-transform: lowercase;
  transition: background 1s ease, color 1s ease;
}
#contactPage .contact-social__label {
  font-family: "Poppins";
  font-size: 0.9rem;
  color: #DAAF50;
}
#contactPage .contact-social__handle {
  font-family: "Poppins";
  font-size: 0.78rem;
  color: #DAAF50;
}

/*==========BTN GOLD==========*/
.btn-gold {
  display: inline-block;
  background: #DAAF50;
  color: #000000;
  font-family: "Poppins";
  font-size: 1rem;
  border: 1px solid #DAAF50;
  padding: 8px 16px;
  transition: background 1s ease, color 1s ease;
}
.btn-gold:hover {
  background: transparent;
  color: #DAAF50;
}

/*==========PROFILE==========*/
#profileBlock {
  padding: 2rem 1rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #profileBlock {
    padding: 4rem 8vw 7rem;
  }
}
#profileBlock #profileHeader {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid rgba(218, 175, 80, 0.3);
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  #profileBlock #profileHeader {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 4rem;
  }
}
#profileBlock #profileHeader img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(218, 175, 80, 0.4);
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  #profileBlock #profileHeader img {
    width: 120px;
    height: 120px;
  }
}
#profileBlock #profileHeader #defaultAvatar {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(218, 175, 80, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel Decorative", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #DAAF50;
  background: linear-gradient(135deg, rgb(12.75, 12.75, 12.75), #000000);
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  #profileBlock #profileHeader #defaultAvatar {
    width: 120px;
    height: 120px;
    font-size: 3rem;
  }
}
#profileBlock #profileHeader #profileInfo {
  flex: 1;
}
#profileBlock #profileHeader #profileInfo h1 {
  font-family: "Playfair Display";
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 0.8rem;
}
#profileBlock #profileHeader #profileInfo p {
  font-family: "Poppins";
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
  max-width: 500px;
}
#profileBlock #editProfileForm h2 {
  font-family: "Playfair Display";
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 2rem;
}
@media (min-width: 1024px) {
  #profileBlock #editProfileForm h2 {
    font-size: 1.4rem;
  }
}
#profileBlock #editProfileForm form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 600px;
}
#profileBlock #editProfileForm form label {
  font-family: "Poppins";
  font-size: 10px;
  text-transform: uppercase;
  color: #DAAF50;
  opacity: 0.7;
  margin-bottom: -0.6rem;
}
#profileBlock #editProfileForm form input[type=file] {
  font-family: "Poppins";
  font-size: 12px;
  color: #FFFFFF;
  padding: 8px 0;
}
#profileBlock #editProfileForm form textarea {
  background-color: rgb(7.65, 7.65, 7.65);
  border: 0.5px solid rgba(218, 175, 80, 0.4);
  color: #FFFFFF;
  padding: 12px 16px;
  font-family: "Poppins";
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
#profileBlock #editProfileForm form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
#profileBlock #editProfileForm form textarea:focus {
  border-color: #DAAF50;
}
#profileBlock #editProfileForm form textarea {
  resize: vertical;
  min-height: 150px;
}
#profileBlock #editProfileForm form button {
  align-self: flex-start;
  background-color: #DAAF50;
  border: 1px solid #DAAF50;
  color: #000000;
  padding: 8px 16px;
  font-family: "Poppins";
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  width: 100%;
}
@media (min-width: 1024px) {
  #profileBlock #editProfileForm form button {
    width: auto;
  }
}
#profileBlock #editProfileForm form button:hover {
  background-color: #000000;
  color: #DAAF50;
}

/*==========RULES==========*/
#rulesBlock {
  padding: 2rem 1rem 4rem;
  max-width: 860px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #rulesBlock {
    padding: 4rem 8vw 7rem;
  }
}
#rulesBlock .rules-hero {
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  #rulesBlock .rules-hero {
    margin-bottom: 4rem;
  }
}
#rulesBlock .rules-hero__eyebrow {
  font-family: "Poppins";
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #DAAF50;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}
#rulesBlock .rules-hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #DAAF50;
}
#rulesBlock .rules-hero h2 {
  font-family: "Playfair Display";
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 0.5rem;
}
#rulesBlock .rules-hero .underLine {
  width: 60px;
  margin: 0 0 2rem;
}
#rulesBlock .rules-hero__intro {
  font-family: "Poppins";
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  margin: 0;
  max-width: 640px;
}
#rulesBlock .rules-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
#rulesBlock .rules-section {
  border-top: 0.5px solid rgba(218, 175, 80, 0.25);
  padding: 2rem 0;
  transition: background 0.2s ease;
}
@media (min-width: 1024px) {
  #rulesBlock .rules-section {
    padding: 2.5rem 0;
  }
}
#rulesBlock .rules-section h3 {
  font-family: "Poppins";
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #DAAF50;
  margin: 0 0 1.2rem;
  font-weight: 400;
}
#rulesBlock .rules-section p {
  font-family: "Poppins";
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  margin: 0;
}
#rulesBlock .rules-section p a {
  color: #DAAF50;
  border-bottom: 0.5px solid rgba(218, 175, 80, 0.3);
  transition: border-color 0.2s ease;
}
#rulesBlock .rules-footer {
  border-top: 0.5px solid rgba(218, 175, 80, 0.25);
  border-bottom: 0.5px solid rgba(218, 175, 80, 0.25);
  padding: 2.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
#rulesBlock .rules-footer__icon {
  color: #DAAF50;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}
#rulesBlock .rules-footer p {
  font-family: "Poppins";
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}

/*# sourceMappingURL=style.css.map */
