div#container
{
   width: 1200px;
   position: relative;
   margin: 0 auto 0 auto;
   text-align: left;
}
body
{
   background-color: #000000;
   background-image: url('/images/dotally.webp');
   background-attachment: fixed;
   background-position: center center;
   background-repeat: repeat;
   color: #000000;
   font-family: Oswald;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   text-align: center;
}
a
{
   color: #0000FF;
   text-decoration: none;
}
a:visited
{
   color: #800080;
}
a:active
{
   color: #FF0000;
}
a:hover
{
   color: #0000FF;
   text-decoration: none;
}
#mainPageID
{
   background-color: transparent;
   background-image: none;
   border-radius: 0px;
}
.epic-hero {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 20px;
  position: relative;
  overflow: hidden;
}

/* Внутренний контейнер */
.epic-hero__inner {
  max-width: 1400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

/* Статуи */
.epic-hero__image {
  flex: 0 1 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.epic-hero__image img {
  width: 80%;
  max-width: 380px;
  height: auto;
}

/* Текст — эффект гравировки */
.epic-hero__text {
  flex: 0 1 500px;
  text-align: center;
  font-size: 22px;
  line-height: 1.6;
  font-family: "Trajan Pro", "Georgia", serif;
  color: #e0d8c0;
  position: relative;
  text-shadow:
    1px 1px 0 #000,
    2px 2px 0 rgba(0,0,0,0.6),
    0 0 6px rgba(255, 200, 120, 0.3);
}

.epic-hero__text p {
  background: linear-gradient(145deg, rgb(6 6 6), rgb(138 1 0));
  padding: 35px 40px;
  border: 2px solid rgba(255, 215, 120, 0.25);
  border-radius: 14px;
  backdrop-filter: blur(5px);
  box-shadow: inset 0 0 20px rgba(255, 220, 120, 0.2), 0 0 35px rgba(255, 180, 60, 0.15);
  letter-spacing: 0.5px;
}

/* Адаптив */
@media (max-width: 1100px) {
  .epic-hero__inner {
    flex-direction: column;
    gap: 50px;
  }
  
  .epic-hero__text {
  flex: 0 1 100px;
  }

  .epic-hero__text {
    font-size: 20px;
  }

  .epic-hero__image img {
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .epic-hero {
    padding: 50px 15px;
  }
  
  .epic-hero__text {
  flex: 0 1 100px;
  }

  .epic-hero__text p {
    padding: 25px;
    font-size: 16px;
  }

  .epic-hero__image img {
    max-width: 220px;
  }
}
