:root {
  --bg-main: #101010;
  --bg-glass: rgba(51, 137, 94, 0.321);
  --border-glass: rgba(0, 255, 128, 0.2);
  --green: #00ff80;
  --green-dark: #007f40;
  --text-main: #e0ffe0;
  --text-secondary: #b0b0b0;
  --glass-blur: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Arial", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(0, 255, 128, 0.05) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 255, 128, 0.05) 0%,
      transparent 20%
    );
}

header {
  background: var(--bg-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 2px 8px rgba(0, 255, 128, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

header h1 {
  font-size: 24px;
  color: var(--green);
  letter-spacing: 2px;
  font-weight: bold;
  text-shadow: 0 2px 8px var(--green-dark);
  margin: 0;
  display: flex;
  align-items: center;
}

header h1 i {
  margin-right: 10px;
}

main {
  flex: 1;
  padding: 40px 0;
}

section {
  background: var(--bg-glass);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 8px 32px 0 rgba(0, 255, 128, 0.15);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-glass);
  transition: var(--transition);
  margin-bottom: 30px;
}

section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(0, 255, 128, 0.2);
}

section h2 {
  color: var(--green);
  margin-bottom: 15px;
  font-size: 1.8rem;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 10px;
}

section p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
}

#home img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--border-glass);
  object-fit: cover;
  height: 100%;
}

.profile-card {
  background: rgba(10, 20, 15, 0.7);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-glass);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 255, 128, 0.2);
}

.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 2px solid var(--green);
  overflow: hidden;
  background: #152520;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

.profile-img i {
  font-size: 2rem;
  color: var(--green);
  transition: var(--transition);
  z-index: 2;
  position: relative;
}

.profile-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.profile-card:hover .profile-img::before {
  opacity: 1;
}

.profile-card:hover .profile-img i {
  color: transparent;
  border-radius: 50%;
  padding: 10px;
}

.youtube-img::before {
  background-image: url("../../images/21512114.jpg");
}

.instagram-img::before {
  background-image: url("../../images/21512114.jpg");
}

.linkedin-img::before {
  background-image: url("../../images/21512114.jpg");
}

.driver-img::before {
  background-image: url("../../images/21512114.jpg");
}

.github-img::before {
  background-image: url("../../images/21512114.jpg");
}

.profile-card h3 {
  color: var(--text-main);
  margin-bottom: 10px;
}

.profile-card p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.btn-icons {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  border: none;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-icons:hover {
  transform: scale(1.05);
  color: white;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}

/* Coming Soon Tag */
.coming-soon-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Typing Effect Styles */
.typing-container {
  margin-bottom: 20px;
  min-height: 60px;
}

.typing-text {
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  border-right: 2px solid var(--green);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    border-color: var(--green);
  }
  51%,
  100% {
    border-color: transparent;
  }
}

/* Animation for sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeInUp 0.5s ease forwards;
}

/* Responsive design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px;
  }

  .pro-img {
    height: auto;
    overflow: hidden;
  }

  .img-pro {
    height: auto !important;
  }

  header h1 {
    margin-bottom: 10px;
  }

  section {
    padding: 20px;
  }

  .typing-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .typing-text {
    font-size: 1.1rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .coming-soon-tag {
    font-size: 0.6rem;
    padding: 3px 8px;
  }
}
