@font-face 
{
    font-family: 'Inter';
    src: url('fonts/Comfortaa-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face 
{
    font-family: 'GhastlyPanicCyr';
    src: url('fonts/GhastlyPanicCyr.otf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face 
{
    font-family: 'Lost';
    src: url('fonts/Lost....ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face
{
  font-family:'Asimovian';
  src: url('fonts/Asimovian-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face
{
  font-family:'Ogonyok';
  src: url('fonts/Ogonyok-Regular_bold_plus.ttf.otf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face
{
  font-family:'Monkrita';
  src: url('fonts/MonkritaPursuitNC.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
body
{
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    height: auto;
    overflow-x: hidden;
}
h1
{
    color: #333;
    font-family: 'Lost', sans-serif;
    text-align: center;
    margin-top: 15px;
    font-size: 90px;
    position: center;
    word-spacing: 15px; /* или 0.5em */
}
nav {
background-color: #000000;
color: #ffffff;
padding: 27px 10px;
text-align: center;
font-family: 'Lost', sans-serif;
word-spacing: 130px; /* или 0.5em */
box-shadow: 0 2px 8px rgba(255, 191, 191, 0.2);
text-transform: uppercase;
letter-spacing: 1px;
font-size: 35px;
opacity: 0.95;
top: 0;
width: 100%;
z-index: 10000;
position:fixed;
}
a {
text-decoration: none;
font-weight: bold;
color:#ffffff;

}
nav a:hover {
  color: #ff3434;
  text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
  transition: text-shadow 0.5s ease;
}
.custom-font {
    font-family: 'GhastlyPanicCyr', sans-serif;
    font-size: 200px;
    color: #000000;
    text-align: center;
    margin-top: -10px;
    letter-spacing: 15px;
    opacity:0.8;
}
.locked-image img {
    display: block;
    margin: 40px auto;
    transform: translateX(600px);
    opacity: 0.6;
    margin-bottom: 0;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  font-family : 'Lost', sans-serif;
  margin-top: 120px;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
p {
    font-family: 'Lost', sans-serif;
    font-size: 41px;
    color: #333;
    text-align:center;
    margin: -2% auto;
    max-width: 600px;
    line-height: 2;
}
.locked-image {
  position: fixed;         /* 📌 Закрепляет фото на экране */
  top: 62%;                /* Центр по вертикали */
  left: 46%;               /* Центр по горизонтали */
  transform: translate(-50%, -50%); /* Точное центрирование */
  width: 400px;            /* Фиксированный размер */
  height: auto;
  z-index: 9999;           /* Поверх всего */
  pointer-events: none;    /* Нельзя случайно кликнуть или перетащить */
  opacity: 0.4;
}
.content
{
    padding: 20px;
    box-sizing: border-box;
    font-family: 'Lost', sans-serif;
    font-size: 35px;
    margin-bottom: 0;
}
.vertical-text {
  position: fixed;
  display:block;
  left: -18.67%;
  top: 53%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 3.1em;
  letter-spacing: 16px;
  color: #333;
  opacity: 0.4;
  font-family: 'Monkrita', sans-serif;
  z-index: 9998; /* Поверх всего, но под логотипом */
    pointer-events: none; /* Нельзя случайно кликнуть или перетащить */
    
}
@media (max-width: 1000px) {
  .nav {
    flex-direction: column;
    gap: 10px;
  }

  .title {
    font-size: 8vw;
    text-align: center;
  }

  .quote-image-block {
    flex-direction: column;
    align-items: center;
  }

  .vertical-text {
    display: none;
    letter-spacing: 13px;
    font-size: 1em;
    left: 40px;
  }
  .locked-image {
    width: 50px; /* уменьшаем размер на мобилке */
  }
  .content {
    font-size: 20px; /* уменьшаем размер шрифта на мобилке */
  }
  .nav a {
    font-size: 20px; /* уменьшаем размер шрифта в навигации на мобилке */
  }
}
.fade-in1{
    opacity: 0.6;
    animation: fadeIn1 2s easy alternate  forwards;
}

@keyframes fadeIn1 {
  to {
    opacity: 1;
  }
}
.logo {
  font-size: 1em;
  font-family: 'GhastlyPanicCyr', sans-serif;
  letter-spacing: 10px;
  text-align: left;
}
.product-card {
  display: block;
  width: 350px;
  margin: 0px;
  text-align: center;
  font-family: 'Lost', sans-serif;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
    margin: 0;
  max-width: 350px;
  width: 100%;
}

.product-card:hover {
  transform: scale(1.02);
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.main-img {
  opacity: 1;
  z-index: 1;
}

.hover-img {
  opacity: 0;
  z-index: 2;
}

.product-card:hover .main-img {
  opacity: 0;
}

.product-card:hover .hover-img {
  opacity: 1;
}

.product-info {
  background-color: #fff;
  padding: 15px;
}

.product-info h5 {
  font-size: 20px;
  margin: 0px 0;
  font-family: 'Monkrita', sans-serif;
  letter-spacing: 0px;
  line-height: 0.9;
}

.price {
  font-size: 22px;
  color: #333;
  margin: 0;
  font-family: 'Monkrita', sans-serif;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 2 карточки в ряд */
  gap: 0; /* ← регулируй расстояние между карточками */
  padding: 40px;
  margin-left:300px;
  transform: translateX(-20px);
}
.vertical-img {
  position: fixed;
  display:block;
  left: -18.67%;
  top: 53%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 3.1em;
  letter-spacing: 16px;
  color: #333;
  opacity: 0.4;
  font-family: 'Monkrita', sans-serif;
  z-index: 9998; /* Поверх всего, но под логотипом */
    pointer-events: none; /* Нельзя случайно кликнуть или перетащить */
      
    
}
ul {
  list-style: none;
}

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.example-2 .icon-content {
  margin: 0 10px;
  position: relative;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}
.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}
.example-2 .icon-content a:hover {
  color: white;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}
.example-2 .icon-content a[data-social="spotify"] .filled,
.example-2 .icon-content a[data-social="spotify"] ~ .tooltip {
  background-color: #1db954;
}
.example-2 .icon-content a[data-social="pinterest"] .filled,
.example-2 .icon-content a[data-social="pinterest"] ~ .tooltip {
  background-color: #bd081c;
}
.example-2 .icon-content a[data-social="dribbble"] .filled,
.example-2 .icon-content a[data-social="dribbble"] ~ .tooltip {
  background-color: #ea4c89;
}
.example-2 .icon-content a[data-social="telegram"] .filled,
.example-2 .icon-content a[data-social="telegram"] ~ .tooltip {
  background-color: #0088cc;
}

ul {
  list-style: none;
}

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.example-2 .icon-content {
  margin: 0 10px;
  position: relative;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}
.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}
.example-2 .icon-content a:hover {
  color: white;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social="discord"] .filled,
.example-2 .icon-content a[data-social="discord"] ~ .tooltip {
  background-color: #7289da;
}

.example-2 .icon-content a[data-social="steam"] .filled,
.example-2 .icon-content a[data-social="steam"] ~ .tooltip {
  background-color: #171d25;
}
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}
.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ff0000;
}
