* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /*min-height: 100vh;*/
}

.fa-youtube {
  font-size: 40px;
  background: -moz-linear-gradient(top, #ff0000 0%, #ff0000 100%);
  background: -webkit-linear-gradient(top, #ff0000 0%, #ff0000 100%);
  background: linear-gradient(to bottom, #e72c83 0%, #ff0000 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fa-youtube:before {
  display: inline;
}

.fa-instagram {
  font-size: 40px;
  background: #833ab4;
background: linear-gradient(
  to right,
  #833ab4,#fd1d1d,#fcb045
);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fa-instagram:before {
  display: inline;
}


.fa-whatsapp {
  font-size: 40px;
  background: #833ab4;
  background:linear-gradient(45deg, #E5FFCC, #1EBEA5, #00E676, #D0E9EA, #EDF8F5, #ffffff);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fa-whatsapp:before {
  display: inline;
}


.fa-envelope {
  font-size: 40px;
  background: #833ab4;
  background:linear-gradient(45deg, #E5FFCC, #1e73be, #aae2e4, #0462aa, #237af5, #ffffff);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fa-envelope:before {
  display: inline;
}



.fa-location-arrow {
  font-size: 40px;
  background: #833ab4;
  background:linear-gradient(45deg, #23e606, #23e606, #23e606, #23e606, #23e606, #ffffff);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fa-location-arrow:before {
  display: inline;
}

.light-effect {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(60, 255, 0, 0.1) 0%, rgba(3, 237, 77, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: clamp(1rem, 5vw, 2rem);
}

.logo {
  margin-bottom: clamp(1.5rem, 5vw, 2rem);
  width: 100%;
  max-width: min(200px, 90vw);
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(60, 255, 0, 0.3));
  animation: glow 2s ease-in-out infinite alternate;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  width: 100%;
  max-width: min(300px, 90vw);
}

.social-link {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(0.9rem, 2vw, 1rem);
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  height: clamp(50px, 8vw, 60px);
  width: 100%;
}

.social-link i {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  width: clamp(20px, 4vw, 24px);
  text-align: center;
  margin-right: clamp(0.5rem, 2vw, 1rem);
}

.social-link span {
  font-weight: 500;
  letter-spacing: 0.5px;
  flex: 1;
  text-align: left;
}

.social-link:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-link:hover i {
    transition: .2s ease all;
  transform: scale(1.1);
}

@keyframes glow {
  from {
      filter: drop-shadow(0 0 10px rgba(60, 255, 0, 0.3));
  }
  to {
      filter: drop-shadow(0 0 20px rgba(60, 255, 0, 0.5));
  }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 1024px) {
  .social-links {
      grid-template-columns: repeat(2, 1fr);
      max-width: min(600px, 90vw);
  }
}

/* Desktop */
@media (min-width: 1025px) {
  .social-links {
      display: flex;
      flex-direction: row;
      max-width: 100%;
      gap: 1.5rem;
      justify-content: center;
      align-items: center;
      padding: 0 1rem;
  }
  
  .social-link {
      width: 300px;
      flex-shrink: 0;
  }
  
  .logo {
  margin-bottom: clamp(1.5rem, 5vw, 2rem);
  width: 100%;
  max-width: min(400px, 90vw);
}
  
  
  body {
  font-family: 'Arial', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
min-height: 100vh;
}
  
} 