@charset "UTF-8";

:root {
  --c-white: #ffffff;
  --c-black: #0a0a0b;
  --c-gray: #666666;
  --c-black-gray: #2d2d2d;
  --c-gray-text: #b0b0b0;
  --backdrop-blur-count: 5px;
  --primary-color: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

body {
  color: var(--c-white);
  background: var(--c-black);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
font-family: 'YourCustomFont', 'Inter', sans-serif;
}

.tw { color: var(--c-white); }
.tg { color: var(--c-gray-text); }
.tg2 { color: var(--c-gray); }

.fs14 { font-size: 14px; }
.fs16 { font-size: 16px; }
.fs18 { font-size: 18px; }
.fs20 { font-size: 20px; }
.fs24 { font-size: 24px; }

.py10 { margin-top: 10px; }
.py13 { margin-top: 13px; }
.py15 { margin-top: 15px; }
.py20 { margin-top: 20px; }
.py25 { margin-top: 25px; }
.py40 { margin-top: 40px; }

.px10 { margin-left: 10px; }
.px25 { margin-left: 25px; }

.c2 { color: var(--c-gray-text); }


.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1200px;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.04);
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0 32px;
  height: 60px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
font-family: 'YourCustomFont', 'Inter', sans-serif;
}

.nav-menu {
  display: flex;
  gap: 48px;
font-family: 'YourCustomFont', 'Inter', sans-serif;
}

.nav-menu a {
  color: var(--c-gray-text);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--c-white);
  transform: translateY(-1px);
}

.nav-right {
  display: flex;
  gap: 24px;
  align-items: center;
font-family: 'YourCustomFont', 'Inter', sans-serif;
}

.home-view {
  min-height: 100vh;
  padding: 140px 0 100px;
  position: relative;
}

.home-view:first-of-type {
  background-image: url("../images/game.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.home-view:first-of-type::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.home-view:first-of-type .container {
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  min-height: 70vh;
}

.hero-content {
  flex: 1;
  max-width: 750px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--c-white);
font-family: 'YourCustomFont', 'Inter', sans-serif;
  line-height: 1.1;
  margin-bottom: 24px;
}

.highlight {
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content > p {
  font-size: 20px;
  color: var(--c-gray-text);
font-family: 'YourCustomFont', 'Inter', sans-serif;
  margin-bottom: 40px;
  line-height: 1.6;
}

.button-container {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
}

.header-link {
  text-decoration: none;
}

.cta-button, .cta-buttonNew {
  backdrop-filter: blur(25px);
  cursor: pointer;
  padding: 16px 32px;
  color: var(--c-white);
  border-radius: 12px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
font-family: 'YourCustomFont', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover, .cta-buttonNew:hover {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.skin-image {
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pickaxe-icon {
  width: 400px;
  height: 400px;
  background-image: url("../images/skin.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 20px rgba(74, 158, 255, 0.1)) drop-shadow(0 0 40px rgba(74, 158, 255, 0.2));
  transition: all 0.3s ease;
}

.pickaxe-icon.custom-image {
  background-image: url('ССЫЛКА_НА_ВАШУ_КАРТИНКУ');
}

.pickaxe-icon:hover {
  filter: drop-shadow(0 0 30px rgba(74, 158, 255, 1)) drop-shadow(0 0 60px rgba(74, 158, 255, 0.6));
  transform: scale(1.05);
}


.features-section {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}


@font-face {
    font-family: 'YourCustomFont';
    src: url("../font/font.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
    }

.section-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--c-white);
  font-family: 'YourCustomFont', 'Inter', sans-serif;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  color: var(--c-gray-text);
  font-family: 'YourCustomFont', 'Inter', sans-serif;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 32px;
  transition: all .3s ease;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(25px);
  position: relative;
}

.feature-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.icon_and_name {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-rect {
  width: 52px;
  height: 52px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  overflow: hidden;
}

.feature-rect img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.feature h3 {
  color: var(--c-white);
font-family: 'YourCustomFont', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.feature p {
  font-size: 16px;
  color: var(--c-gray-text);
  line-height: 1.6;
  margin: 0;
}


.videos-section {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border-color);
}

.videos-grid {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.video-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  width: 100%;
  max-width: 900px;
  transition: all 0.4s ease;
}

.video-container:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}


.footer {
  background-color: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(25px);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 70px;
  height: 70px;
  border-radius: 4px;
  object-fit: contain;
}

.footer-text p {
  margin: 0;
  color: var(--c-white);
font-family: 'YourCustomFont', 'Inter', sans-serif;
  font-size: 16px;
}

.footer-text .copyright {
  margin-top: 8px;
  color: var(--c-gray-text);
  font-size: 14px;
}

.footer-right {
  text-align: right;
}

.footer-right p {
  color: var(--c-white);
font-family: 'YourCustomFont', 'Inter', sans-serif;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
}

.footer-link {
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-link p {
  color: var(--c-gray-text);
  transition: color 0.3s;
  font-size: 14px;
}

.footer-link:hover p {
  color: var(--c-white);
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {
  0%, 100% {
    filter: drop-shadow(0 0 20px color-mix(in srgb, var(--primary-color) 80%, transparent))
            drop-shadow(0 0 40px color-mix(in srgb, var(--primary-color) 40%, transparent));
  }
  50% {
    filter: drop-shadow(0 0 30px color-mix(in srgb, var(--primary-color) 100%, transparent))
            drop-shadow(0 0 60px color-mix(in srgb, var(--primary-color) 60%, transparent));
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.header {
  animation: fadeIn 1s ease-out;
}

.hero-content h1 {
  animation: fadeInLeft 1s ease-out;
}

.hero-content p {
  animation: fadeInLeft 1s ease-out 0.2s both;
}

.button-container {
  animation: fadeInLeft 1s ease-out 0.4s both;
}

.pickaxe-icon {
  animation: fadeInRight 1s ease-out 0.3s both, glow 3s ease-in-out infinite;
}

.section-header {
  animation: fadeInUp 1s ease-out;
}

.videos-grid {
  animation: scaleIn 0.8s ease-out;
}

.feature-card {
  animation: float 4s ease-in-out infinite;
}

.feature-card:nth-child(1) {
  animation-delay: 0s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.5s;
}

.feature-card:nth-child(3) {
  animation-delay: 1s;
}

.feature-card:nth-child(4) {
  animation-delay: 1.5s;
}

.feature-card:nth-child(5) {
  animation-delay: 2s;
}

.feature-card:nth-child(6) {
  animation-delay: 2.5s;
}


@media (max-width: 1200px) {
  .container, .footer-container {
    padding: 0 32px;
  }
  
  .hero-container {
    gap: 60px;
  }
}

@media (max-width: 992px) {
  .header {
    width: calc(100% - 32px);
    padding: 0 24px;
  }

  .nav-menu { 
    display: none; 
  }
  
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }
  
  .hero-content h1 { 
    font-size: 44px; 
  }

  .section-header h1 { 
    font-size: 40px; 
  }
  
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .videos-grid {
    justify-content: center;
  }

  .video-container {
    max-width: 100%;
  }
  
  .skin-image {
    width: 400px;
    height: 400px;
    font-size: 100px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header {
    top: 16px;
    height: 60px;
    padding: 0 20px;
  }

  .home-view {
    padding: 120px 0 80px;
  }

  .container, .footer-container {
    padding: 0 20px;
  }

  .hero-content h1 { 
    font-size: 36px; 
  }

  .section-header h1 { 
    font-size: 32px; 
  }

  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .skin-image {
    width: 320px;
    height: 320px;
    font-size: 80px;
  }

  .feature-card {
    padding: 24px;
  }

  .video-container iframe {
    height: 350px;
  }

  .button-container {
    flex-direction: column;
    align-items: center;
  }

  .cta-button, .cta-buttonNew {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { 
    font-size: 28px; 
  }

  .section-header h1 { 
    font-size: 28px; 
  }

  .language-switcher {
    cursor: pointer;
    user-select: none;
}

.lang-option {
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.lang-option:hover {
    color: var(--c-white);
    background-color: rgba(255, 255, 255, 0.1);
}

.lang-option.active {
    color: rgba(255, 255, 255, 0.932);
    font-weight: 600;
}

.lang-separator {
    opacity: 0.5;
}

  .skin-image {
    width: 280px;
    height: 280px;
    font-size: 70px;
  }

  .video-container iframe {
    height: 250px;
  }
}