/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Fonts */
body {
  font-family: 'Poppins', sans-serif;
  background: #0e0e0e;
  color: #fff;
  height: 100vh;
  overflow: hidden;
}

/* Background with effect */
.background {
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  position: relative;
  height: 100%;
}

.background::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, rgba(0,212,255,0.2), transparent 70%);
  filter: blur(80px);
  animation: pulse 10s infinite alternate;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* Overlay */
.overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px;
}

/* Main Content */
.container {
  text-align: center;
  margin-top: auto;
}

.container h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  margin-bottom: 20px;
  color: #00d8ff;
  text-shadow: 0 0 8px rgba(0,216,255,0.3);
}

.container p {
  font-size: 18px;
  color: #dddddd;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Buttons */
.buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1f1f1f;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.social-btn i {
  font-size: 18px;
}

/* Hover Effects */
.instagram:hover {
  background: radial-gradient(circle at 30% 30%, #e1306c, #833ab4);
  color: #fff;
}

.twitter:hover {
  background: #1da1f2;
  color: #fff;
}

.contact:hover {
  background: #00c853;
  color: #fff;
}

/* Logo */
.logo {
  text-align: center;
  margin-top: auto;
  padding-bottom: 30px;
}

.logo img {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 600px) {
  .container h1 {
    font-size: 32px;
  }

  .container p {
    font-size: 16px;
  }

  .logo img {
    width: 140px;
  }

  .social-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
