body {
  background-color: black;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  background-image: url("../images/fetique.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: black;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

footer {
  border-width: 0%;
  width: 100%;
  text-align: center;
  padding: 30px 0;
  background-color: #000000b3;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
}

.tg-text {
  font-family: "Segoe UI", "Helvetica Neue", "Roboto", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #fff9c4 0%, #ffd700 50%, #b8860b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 10px #ffd7004d;
  animation: shimmer var(--shine-duration) var(--shine-timing) infinite;
}

@keyframes shimmer {
  0%, 100% {
    background-position: -200% center;
    opacity: 0.9;
  }
  50% {
    background-position: 200% center;
    opacity: 1;
  }
}

.tg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #161616;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.tg-btn:hover {
  transform: scale(1.1);
  background-color: #ffd700;
}

.tg-btn:active {
  transform: scale(0.9);
  background-color: #161616;
}

.tg-btn img {
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
}

.tg-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ffd70080;
}

.tg-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 30%,
    #ffd90031 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  z-index: 0;
  animation: shine var(--shine-duration) var(--shine-timing) infinite;
}

@keyframes shine {
  0% { 
    left: -100%;
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% { 
    left: 100%;
    opacity: 0.5;
  }
}



.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  position: relative;
  perspective: 800px;
  margin-bottom: 20px;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 3s infinite linear;
}

.face {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  background-color: transparent;
  border: 2px solid #ffd700;
  background: linear-gradient(to bottom, #fff9c4, #ffd700, #b8860b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.front {
  transform: rotateY(0deg) translateZ(40px);
}
.back {
  transform: rotateY(180deg) translateZ(40px);
}
.right {
  transform: rotateY(90deg) translateZ(40px);
}
.left {
  transform: rotateY(-90deg) translateZ(40px);
}
.top {
  transform: rotateX(90deg) translateZ(40px);
}
.bottom {
  transform: rotateX(-90deg) translateZ(40px);
}

@keyframes rotate {
  from {
    transform: rotateX(-30deg) rotateY(0) rotateZ(0);
  }
  to {
    transform: rotateX(-30deg) rotateY(360deg) rotateZ(0deg);
  }
}

.preloader-text {
  color: #ffd700;
  font-size: 16px;
  letter-spacing: 2px;
  margin-top: 20px;
}

.preloader.hidden-preloader {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scale-up {
  from { 
    opacity: 0;
    transform: scale(0.8); 
  }
  to { 
    opacity: 1;
    transform: scale(1); 
  }
}

@keyframes text-shine {
  0% { background-position: -150% center; }
  100% { background-position: 150% center; }
}

.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.transition-overlay.active {
  opacity: 1;
}

.transition-content {
	text-align: center;
}

.company-name {
  opacity: 0;
  font-family: "Segoe UI", "Helvetica Neue", "Roboto", Arial, sans-serif;
  font-size: 122px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 8px;
  background: linear-gradient(
	90deg,
	#fff9c4 0%,
	#ffd700 50%,
	#b8860b 100%);
	background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 10px #ffd7004d;
  animation: text-shine 7s ease-in-out, scale-up 1s ease-out;
	z-index: 1000;
}

.copyright {
	font-family: "Segoe UI", "Helvetica Neue", "Roboto", Arial, sans-serif;
	letter-spacing: 3px;
	font-size: 15px;
  font-weight: 400;
	background: linear-gradient(
	135deg,
	#fff9c4 0%,
	#ffd700 50%,
	#b8860b 100%);
	  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.transition-overlay.active .company-name {
  opacity: 1;
}

.hidden {
  display: none;
}

:root {
  --shine-duration: 3s;
  --shine-timing: ease-in-out;
}

@media (max-width: 768px) {
  .footer-content {
    gap: 10px;
  }
  .tg-text {
    font-size: 16px;
  }
  .tg-btn {
    width: 60px;
    height: 60px;
  }
  .tg-btn img {
    width: 50px;
    height: 50px;
  }
	.company-name {
		font-size: 62px;
	}
}