@import url(https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap);
:root {
  --dark-bg: #001a0f;
  --neon-green: #00ff9d;
  --text-color: #e6fff2;
  --grid-color: rgba(0, 255, 157, 0.1);
  --header-height: 80px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family: "Share Tech Mono", monospace;
  background: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='8' stroke='%2300ff9d' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='3' fill='%2300ff9d'/%3E%3C/svg%3E")
      12 12,
    auto;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at center,
      transparent 0%,
      rgb(0 26 15 / 0.8) 100%
    ),
    linear-gradient(90deg, rgb(0 255 157 / 0.03) 1px, transparent 1px) 0 0 /
      40px 40px,
    linear-gradient(rgb(0 255 157 / 0.03) 1px, transparent 1px) 0 0 / 40px 40px;
  pointer-events: none;
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200vmax;
  height: 200vmax;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgb(0 255 157 / 0.1) 10deg,
    transparent 20deg
  );
  animation: radarSweep 8s linear infinite;
  transform-origin: center;
  pointer-events: none;
  z-index: -1;
}
.radar-dot {
  position: fixed;
  width: 2px;
  height: 2px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: dotPulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
.radar-circles {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200vmax;
  height: 200vmax;
  pointer-events: none;
  z-index: -1;
}
.radar-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgb(0 255 157 / 0.1);
  border-radius: 50%;
  animation: circleExpand 4s ease-out infinite;
}
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}
.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgb(0 26 15 / 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neon-green);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-text {
  font-size: 1.5rem;
  color: var(--neon-green);
  font-weight: 700;
  font-family: "Cyber", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-link {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--neon-green);
  background: rgb(0 255 157 / 0.1);
}
.hero {
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
}
.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.hero-content {
  flex: 1;
}
.badge-card {
  background: rgb(0 26 15 / 0.9);
  border: 1px solid var(--neon-green);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgb(0 255 157 / 0.1);
}
.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.status-light {
  width: 12px;
  height: 12px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulse 2s infinite;
}
.status-text {
  font-size: 0.8rem;
  color: var(--neon-green);
  letter-spacing: 2px;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
}
.name {
  font-size: 3rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgb(0 255 157 / 0.3);
  font-family: "Cyber", sans-serif;
}
.title {
  font-size: 1.4rem;
  color: var(--neon-green);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Cyber", sans-serif;
}
.contact-info {
  display: grid;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-item i {
  color: var(--neon-green);
}
.radar {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
  background: rgb(0 26 15 / 0.3);
  border-radius: 50%;
  box-shadow: 0 0 30px rgb(0 255 157 / 0.1);
}
.radar-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgb(0 255 157 / 0.3);
  border-radius: 50%;
  box-shadow: inset 0 0 20px rgb(0 255 157 / 0.1);
}
.circle-1 {
  width: 100%;
  height: 100%;
  border-width: 2px;
  animation: pulseCircle 4s infinite linear;
}
.circle-2 {
  width: 70%;
  height: 70%;
  border-width: 1.5px;
  animation: pulseCircle 4s infinite linear 1s;
}
.circle-3 {
  width: 40%;
  height: 40%;
  border-width: 1px;
  animation: pulseCircle 4s infinite linear 2s;
}
.line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgb(0 255 157 / 0.9),
    rgb(0 255 157 / 0.4),
    transparent
  );
  transform-origin: left;
  animation: radarSpin 4s infinite linear;
  box-shadow: 0 0 10px var(--neon-green);
  filter: drop-shadow(0 0 2px var(--neon-green));
}
@keyframes radarSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulseCircle {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.3;
  }
}
.profile-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--neon-green);
  z-index: 2;
  box-shadow: 0 0 20px rgb(0 255 157 / 0.3);
}
.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.profile-container:hover .profile-image {
  transform: scale(1.1);
}
.profile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgb(0 255 157 / 0.2) 0%, transparent 60%);
  mix-blend-mode: screen;
}
.profile-container::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(
    45deg,
    transparent,
    var(--neon-green),
    transparent
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  animation: borderRotate 4s linear infinite;
}
@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.skill-points {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.skill-point {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(var(--angle)) translateX(200px)
    rotate(calc(-1 * var(--angle)));
}
.font-contact {
  font-family: "Share Tech Mono", monospace;
}
.point-label {
  color: var(--neon-green);
  font-size: 0.9rem;
  white-space: nowrap;
  text-shadow: 0 0 5px rgb(0 255 157 / 0.5);
  background: rgb(0 26 15 / 0.7);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgb(0 255 157 / 0.3);
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes radarSweep {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
    box-shadow: 0 0 10px var(--neon-green);
  }
}
@keyframes circleExpand {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}
@media (max-width: 1400px) {
  .section-container {
    max-width: 1200px;
    padding: 2rem 2rem;
  }
  .contact-grid {
    gap: 3rem;
  }
  .project-grid {
    gap: 2rem;
  }
}
@media (max-width: 1200px) {
  .hero-container {
    flex-direction: column;
    gap: 3rem;
  }
  .hero-content {
    text-align: center;
  }
  .radar {
    width: 400px;
    height: 400px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .project-card {
    flex: 0 0 calc(45% - 2rem);
  }
}
@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto;
  }
  .radar {
    width: 350px;
    height: 350px;
  }
  .skill-points {
    transform: scale(0.8);
  }
  .project-card {
    flex: 0 0 calc(100% - 2rem);
  }
}
@media (max-width: 768px) {
  .logo {
    display: none;
  }
  .timeline-header h3 {
    font-size: 18px !important;
    letter-spacing: 1px !important;
  }
  #threejs-cube canvas {
    margin-top: 80px !important;
  }
  .contact-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .nav-links {
    gap: 0.5rem;
  }
  .nav-links span {
    display: none;
  }
  .nav-link {
    padding: 0.5rem;
  }
  .nav-link i {
    font-size: 1.2rem;
  }
  .radar {
    width: 300px;
    height: 300px;
  }
  .name {
    font-size: 2rem;
  }
  .title {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .project-image {
    height: 200px;
  }
  .project-content {
    padding: 1.5rem;
  }
  .project-content h3 {
    font-size: 1.3rem;
  }
  .contact-form-container,
  .contact-info-card {
    padding: 1.5rem;
  }
  .social-links {
    gap: 1.5rem;
  }
  .footer {
    padding: 2rem 1rem;
  }
}
@media (max-width: 576px) {
  .nav-container {
    padding: 1rem;
  }
  .hero-container {
    padding: 1rem;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .radar {
    width: 250px;
    height: 250px;
  }
  .profile-container {
    width: 120px;
    height: 120px;
  }
  .section-container {
    padding: 3rem 1rem;
  }
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .project-card {
    margin: 0.5rem;
  }
  .project-image {
    height: 180px;
  }
  .project-content {
    padding: 1rem;
  }
  .project-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .project-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .project-tags {
    gap: 0.5rem;
  }
  .project-tag {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
  .contact-info-card,
  .contact-form-container {
    padding: 1rem;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .social-links {
    gap: 1rem;
  }
  .social-link {
    font-size: 1.2rem;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .input-container label {
    font-size: 0.9rem;
  }
  .submit-btn {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 400px) {
  .nav-container {
    padding: 0.8rem;
  }
  .nav-links {
    gap: 0.3rem;
  }
  .nav-link {
    padding: 0.4rem;
  }
  .radar {
    width: 220px;
    height: 220px;
  }
  .profile-container {
    width: 100px;
    height: 100px;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .project-image {
    height: 160px;
  }
}
@media (max-height: 600px) and (orientation: landscape) {
  .hero-container {
    min-height: auto;
    padding: 2rem 0;
  }
  .radar {
    width: 200px;
    height: 200px;
  }
  .profile-container {
    width: 100px;
    height: 100px;
  }
}
.section-container {
  max-width: 1400px;
  margin: 0 auto;
}
.section-title {
  font-family: "Cyber", "Share Tech Mono", monospace;
  font-size: 2.5rem;
  color: var(--neon-green);
  margin-bottom: 3rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  text-shadow: 0 0 10px rgb(0 255 157 / 0.3);
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
}
.competences {
  background: rgb(0 26 15 / 0.3);
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 2rem 0;
}
.skills-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.skill-item {
  position: relative;
  padding: 1.2rem;
  background: rgb(0 26 15 / 0.6);
  border: 1px solid rgb(0 255 157 / 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.skill-item:hover {
  background: rgb(0 26 15 / 0.7);
  border-color: var(--neon-green);
  box-shadow: 0 0 15px rgb(0 255 157 / 0.15);
  transform: translateY(-3px);
}
.skill-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.skill-item i {
  font-size: 2rem;
  color: var(--neon-green);
  text-shadow: 0 0 5px var(--neon-green);
}
.skill-icon {
  font-family: "Cyber", sans-serif;
  font-size: 1.8rem;
  color: var(--neon-green);
  text-shadow: 0 0 5px var(--neon-green);
  background: rgb(0 255 157 / 0.05);
  padding: 0.6rem;
  border-radius: 6px;
  min-width: 2.8rem;
  text-align: center;
  border: 1px solid rgb(0 255 157 / 0.2);
}
.skill-name {
  font-size: 1.1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.creative-title {
  margin-top: 3rem;
  font-size: 1.8rem;
  text-transform: uppercase;
  text-align: left;
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
  opacity: 1;
  display: block;
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1rem;
}
.creative-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 1rem;
  width: 100px;
  height: 2px;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
}
.creative-title.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .creative-title {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
  .skill-item {
    padding: 1rem;
    gap: 1rem;
  }
  .skill-item i,
  .skill-icon {
    font-size: 1.5rem;
  }
  .skill-name {
    font-size: 1rem;
  }
}
.radar-chart {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
}
.radar-grid {
  position: relative;
  width: 100%;
  height: 100%;
}
.radar-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgb(0 255 157 / 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.radar-circle:nth-child(1) {
  width: 100%;
  height: 100%;
  animation: pulseCircle 2s infinite ease-in-out;
}
.radar-circle:nth-child(2) {
  width: 66%;
  height: 66%;
  animation: pulseCircle 2s infinite ease-in-out 0.5s;
}
.radar-circle:nth-child(3) {
  width: 33%;
  height: 33%;
  animation: pulseCircle 2s infinite ease-in-out 1s;
}
@keyframes pulseCircle {
  0% {
    border-color: rgb(0 255 157 / 0.2);
    box-shadow: none;
  }
  50% {
    border-color: rgb(0 255 157 / 0.5);
    box-shadow: 0 0 10px rgb(0 255 157 / 0.3);
  }
  100% {
    border-color: rgb(0 255 157 / 0.2);
    box-shadow: none;
  }
}
.radar-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.radar-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 1px;
  background: rgb(0 255 157 / 0.2);
  transform-origin: left;
  transform: rotate(var(--angle));
}
.radar-data {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.data-point {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(var(--angle)) translateX(calc(250px * var(--value)))
    rotate(calc(-1 * var(--angle)));
}
.data-label {
  position: absolute;
  left: 10px;
  transform: translateY(-50%);
  color: var(--neon-green);
  font-size: 0.9rem;
  background: rgb(0 26 15 / 0.8);
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgb(0 255 157 / 0.3);
  white-space: nowrap;
  transition: all 0.3s ease;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.data-value {
  position: absolute;
  left: -30px;
  top: -20px;
  color: var(--neon-green);
  font-size: 0.8rem;
  opacity: 0;
  transition: all 0.3s ease;
}
.data-point:hover .data-label {
  background: rgb(0 255 157 / 0.2);
  box-shadow: 0 0 15px rgb(0 255 157 / 0.3);
  transform: translateY(-50%) scale(1.1);
}
.data-point:hover .data-value {
  opacity: 1;
}
.skills-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.skill-category {
  background: rgb(0 26 15 / 0.5);
  border: 1px solid var(--neon-green);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.skill-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgb(0 255 157 / 0.2);
  border-color: var(--neon-green);
}
.skill-category h3 {
  color: var(--neon-green);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.skill-tag {
  color: var(--text-color);
  background: rgb(0 255 157 / 0.1);
  padding: 1rem;
  border-radius: 50%;
  font-size: 1.2rem;
  border: 1px solid rgb(0 255 157 / 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.skill-tag:hover {
  background: rgb(0 255 157 / 0.2);
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgb(0 255 157 / 0.3);
}
.skill-tag i {
  color: var(--neon-green);
}
.tech-tag {
  color: var(--text-color);
  background: rgb(0 255 157 / 0.1);
  padding: 0.5rem;
  border-radius: 50%;
  font-size: 1rem;
  border: 1px solid rgb(0 255 157 / 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.tech-tag i {
  color: var(--neon-green);
}
.skill-tag.adobe-icon {
  font-family: "Adobe Clean", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--neon-green);
  background: rgb(0 255 157 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .skill-tag.adobe-icon {
    font-size: 0.9rem;
  }
}
.projets {
  padding: 4rem 0;
}
.carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 2rem 0;
}
.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2rem;
}
.project-card {
  min-width: calc(33.333% - 1.33rem);
  background: rgb(0 26 15 / 0.5);
  border: 1px solid var(--neon-green);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgb(0 255 157 / 0.1);
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 30px rgb(0 255 157 / 0.2);
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-image {
  position: relative;
  height: 250px;
  width: 100%;
  overflow: hidden;
}
.project-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card:hover .project-image img {
  transform: scale(1.1);
}
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgb(0 26 15 / 0.9));
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.project-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 1rem;
}
.tech-tag {
  background: rgb(0 255 157 / 0.2);
  color: var(--neon-green);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  border: 1px solid rgb(0 255 157 / 0.3);
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.project-content {
  padding: 1.5rem;
}
.project-content h3 {
  color: var(--neon-green);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.project-content p {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
  font-family: "Share Tech Mono", monospace;
  letter-spacing: 1px;
}
.project-links {
  display: flex;
  gap: 1rem;
}
.project-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neon-green);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--neon-green);
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.project-link:hover {
  background: rgb(0 255 157 / 0.1);
  box-shadow: 0 0 10px rgb(0 255 157 / 0.2);
}
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(0 26 15 / 0.8);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.carousel-button:hover {
  background: var(--neon-green);
  color: var(--dark-bg);
  transform: translateY(-50%) scale(1.1);
}
.carousel-button.prev {
  left: 1rem;
}
.carousel-button.next {
  right: 1rem;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.dot {
  width: 10px;
  height: 10px;
  background: rgb(0 255 157 / 0.2);
  border: 1px solid var(--neon-green);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
}
.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  max-width: 1400px;
  margin: 0 auto;
}
.carousel-track {
  display: flex;
  gap: 2.5rem;
  transition: transform 0.5s ease;
  padding: 1rem;
}
.project-card {
  flex: 0 0 calc(50% - 1.25rem);
  background: rgb(0 26 15 / 0.9);
  border: 1px solid var(--neon-green);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px rgb(0 255 157 / 0.1);
  transition: transform 0.3s ease;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgb(0 255 157 / 0.2);
  border-color: var(--neon-green);
}
.project-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-image img {
  transform: scale(1.05);
}
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgb(0 26 15 / 0.9));
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-card:hover .project-overlay {
  opacity: 1;
}
.project-tech {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 1rem;
}
.project-tech span {
  background: rgb(0 255 157 / 0.1);
  color: var(--neon-green);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid var(--neon-green);
  transition: all 0.3s ease;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.project-tech span:hover {
  background: var(--neon-green);
  color: var(--dark-bg);
  transform: translateY(-2px);
}
.project-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.project-content h3 {
  color: var(--neon-green);
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  text-shadow: 0 0 10px rgb(0 255 157 / 0.3);
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.project-content p {
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.1rem;
  flex-grow: 1;
  font-family: "Share Tech Mono", monospace;
  letter-spacing: 1px;
}
.project-links {
  display: flex;
  gap: 1.5rem;
  margin-top: auto;
}
.project-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--text-color);
  text-decoration: none;
  padding: 1rem;
  border-radius: 10px;
  background: rgb(0 255 157 / 0.1);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.project-link:hover {
  background: var(--neon-green);
  color: var(--dark-bg);
  transform: translateY(-2px);
}
.project-link i {
  font-size: 1.2rem;
}
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(0 26 15 / 0.9);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
  font-size: 1.5rem;
}
.carousel-button:hover {
  background: var(--neon-green);
  color: var(--dark-bg);
  transform: translateY(-50%) scale(1.1);
}
.carousel-button.prev {
  left: 2rem;
}
.carousel-button.next {
  right: 2rem;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgb(0 255 157 / 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
  transform: scale(1.2);
}
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--neon-green);
  transition: width 0.3s ease;
  z-index: 2;
  box-shadow: 0 0 10px var(--neon-green);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 3;
}
.dot-container {
  position: relative;
  cursor: pointer;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgb(0 255 157 / 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding: 0;
}
.dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  background: #fff0;
  border: 2px solid var(--neon-green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 2s infinite;
}
@keyframes ripple {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
  100% {
    width: 40px;
    height: 40px;
    opacity: 0;
  }
}
.dot:hover::before,
.dot.active::before {
  opacity: 1;
}
.dot.active {
  background: var(--neon-green);
  box-shadow: 0 0 15px var(--neon-green);
}
.dot-preview {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgb(0 26 15 / 0.95);
  border: 1px solid var(--neon-green);
  padding: 0.5rem;
  width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 5px 15px rgb(0 0 0 / 0.3);
  margin-bottom: 15px;
}
.dot-container:hover .dot-preview {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.preview-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.preview-content img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
}
.preview-content span {
  color: var(--neon-green);
  font-size: 0.9rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.carousel-button {
  opacity: 0;
  transform: translateY(-50%) scale(0.9);
  transition: all 0.3s ease;
}
.carousel-container:hover .carousel-button {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.carousel-button:hover {
  transform: translateY(-50%) scale(1.1);
  background: var(--neon-green);
  color: var(--dark-bg);
  box-shadow: 0 0 20px var(--neon-green);
}
@media (max-width: 768px) {
  .carousel-button {
    opacity: 1;
    transform: translateY(-50%) scale(0.8);
  }
  .dot-preview {
    display: none;
  }
  .carousel-dots {
    margin-top: 1.5rem;
    gap: 0.8rem;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
  .dot::before {
    width: 20px;
    height: 20px;
  }
}
.radar-chart {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
  background: rgb(0 26 15 / 0.9);
  border-radius: 50%;
  box-shadow: 0 0 30px rgb(0 255 157 / 0.2), inset 0 0 50px rgb(0 255 157 / 0.1);
  padding: 20px;
}
.radar-grid {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
}
.radar-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgb(0 255 157 / 0.15);
  border-radius: 50%;
  box-shadow: 0 0 15px rgb(0 255 157 / 0.1);
  transition: all 0.3s ease;
}
.radar-circle:nth-child(1) {
  width: 100%;
  height: 100%;
  animation: pulseCircle 4s infinite;
}
.radar-circle:nth-child(2) {
  width: 66.66%;
  height: 66.66%;
  animation: pulseCircle 4s infinite 0.5s;
}
.radar-circle:nth-child(3) {
  width: 33.33%;
  height: 33.33%;
  animation: pulseCircle 4s infinite 1s;
}
@keyframes pulseCircle {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.02);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
}
.radar-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--neon-green) 0%,
    rgb(0 255 157 / 0.5) 50%,
    transparent 100%
  );
  transform-origin: left center;
  animation: radarScan 4s linear infinite;
  box-shadow: 0 0 10px var(--neon-green);
}
.data-point {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--neon-green);
  border-radius: 50%;
  transform: rotate(var(--angle)) translateX(calc(250px * var(--value)))
    rotate(calc(-1 * var(--angle)));
  box-shadow: 0 0 15px var(--neon-green);
  transition: all 0.3s ease;
  z-index: 2;
}
.data-point::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #fff0;
  border: 2px solid var(--neon-green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 2s infinite;
}
@keyframes ripple {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
  100% {
    width: 40px;
    height: 40px;
    opacity: 0;
  }
}
.data-label {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neon-green);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  text-shadow: 0 0 10px rgb(0 255 157 / 0.5);
  transition: all 0.3s ease;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.data-value {
  position: absolute;
  left: -40px;
  top: -30px;
  background: rgb(0 26 15 / 0.9);
  color: var(--neon-green);
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 10px;
  border: 1px solid var(--neon-green);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 0 15px rgb(0 255 157 / 0.2);
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.data-point:hover {
  transform: rotate(var(--angle)) translateX(calc(260px * var(--value)))
    rotate(calc(-1 * var(--angle))) scale(1.2);
}
.data-point:hover .data-value {
  opacity: 1;
  transform: translateY(0);
}
.radar-scanner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--neon-green) 0%,
    rgb(0 255 157 / 0.5) 50%,
    transparent 100%
  );
  transform-origin: left center;
  animation: radarScan 4s linear infinite;
  box-shadow: 0 0 20px var(--neon-green);
}
.radar-scanner::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--neon-green);
}
.radar-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  clip-path: polygon(
    calc(50% + 250px * var(--p1-x)) calc(50% + 250px * var(--p1-y)),
    calc(50% + 250px * var(--p2-x)) calc(50% + 250px * var(--p2-y)),
    calc(50% + 250px * var(--p3-x)) calc(50% + 250px * var(--p3-y)),
    calc(50% + 250px * var(--p4-x)) calc(50% + 250px * var(--p4-y)),
    calc(50% + 250px * var(--p5-x)) calc(50% + 250px * var(--p5-y)),
    calc(50% + 250px * var(--p6-x)) calc(50% + 250px * var(--p6-y))
  );
  background: linear-gradient(
    45deg,
    rgb(0 255 157 / 0.1),
    rgb(0 255 157 / 0.2)
  );
  border: 2px solid var(--neon-green);
  filter: drop-shadow(0 0 10px rgb(0 255 157 / 0.3));
  transition: all 0.3s ease;
}
.skills-details {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.skill-category {
  background: rgb(0 26 15 / 0.9);
  border: 2px solid var(--neon-green);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 0 20px rgb(0 255 157 / 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.skill-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgb(0 255 157 / 0.1) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.skill-category:hover::before {
  transform: translateX(100%);
}
.skill-category h3 {
  color: var(--neon-green);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgb(0 255 157 / 0.5);
  font-family: "Share Tech Mono", monospace;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.skill-tag {
  background: rgb(0 255 157 / 0.1);
  color: var(--text-color);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid var(--neon-green);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.skill-tag::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--neon-green),
    transparent 20%,
    transparent 80%,
    var(--neon-green)
  );
  border-radius: 15px;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
}
@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.skill-tag:hover {
  background: var(--neon-green);
  color: var(--dark-bg);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgb(0 255 157 / 0.3);
}
@media (max-width: 1200px) {
  .skills-details {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .radar-chart {
    width: 300px;
    height: 300px;
  }
  .skills-details {
    grid-template-columns: 1fr;
  }
  .data-point {
    transform: rotate(var(--angle)) translateX(calc(150px * var(--value)))
      rotate(calc(-1 * var(--angle)));
  }
  .data-label {
    font-size: 0.8rem;
  }
}
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.home .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  width: 100%;
}
.competences {
  background: rgb(0 26 15 / 0.3);
}
.skills-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  margin-top: 2rem;
}
@media (max-width: 1400px) {
  .home .section-container,
  .skills-container {
    gap: 6rem;
  }
}
@media (max-width: 1200px) {
  .home .section-container,
  .skills-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.ripple-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}
.ripple {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ripple-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgb(0 255 157 / 0.1) 0%,
    rgb(0 255 157 / 0.05) 50%,
    #fff0 70%
  );
  animation: rippleEffect 1s cubic-bezier(0, 0.5, 0.5, 1) forwards;
}
.ripple-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid rgb(0 255 157 / 0.5);
  border-radius: 50%;
  animation: rippleBorder 1s cubic-bezier(0, 0.5, 0.5, 1) forwards;
}
@keyframes rippleEffect {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 500vmax;
    height: 500vmax;
    opacity: 0;
  }
}
@keyframes rippleBorder {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
    border-width: 2px;
  }
  50% {
    opacity: 0.5;
    border-width: 1px;
  }
  100% {
    width: 500vmax;
    height: 500vmax;
    opacity: 0;
    border-width: 0;
  }
}
.radar-wave {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  animation: radarWave 1.5s linear;
  border: 2px solid var(--neon-green);
  transform: translate(-50%, -50%);
  z-index: 9999;
}
@keyframes radarWave {
  0% {
    width: 0;
    height: 0;
    opacity: 0.8;
    border-width: 2px;
  }
  100% {
    width: 500px;
    height: 500px;
    opacity: 0;
    border-width: 1px;
  }
}
.experiences {
  padding: 4rem 0;
}
.experiences {
  padding: 4rem 0;
  position: relative;
  background: linear-gradient(
    180deg,
    #fff0 0%,
    rgb(0 255 157 / 0.05) 50%,
    #fff0 100%
  );
}
.timeline-wrapper {
  position: relative;
  padding: 20px 0;
}
.timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    #fff0 0%,
    var(--neon-green) 10%,
    var(--neon-green) 90%,
    #fff0 100%
  );
  transform: translateX(-50%);
  box-shadow: 0 0 15px var(--neon-green);
}
.timeline-item {
  display: flex;
  margin-bottom: 100px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 30px);
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 30px);
}
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  min-width: 24px;
  height: 24px;
  background: var(--dark-bg);
  border: 2px solid var(--neon-green);
  margin-top: 20px;
  z-index: 2;
}
.radar-ping {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--neon-green);
  opacity: 0;
  animation: diamondPing 2s ease-out infinite;
}
.timeline-content {
  flex: 1;
  padding: 25px;
  margin: 0 30px;
  background: rgb(13 17 23 / 0.7);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgb(0 255 157 / 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: "Share Tech Mono", monospace;
  letter-spacing: 1px;
  cursor: pointer;
}
.timeline-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgb(0 255 157 / 0.3) 50%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgb(0 255 157 / 0.1);
}
.timeline-header {
  margin-bottom: 20px;
}
.timeline-date {
  display: inline-block;
  padding: 5px 15px;
  background: rgb(0 255 157 / 0.1);
  border-radius: 20px;
  font-size: 0.9em;
  color: var(--neon-green);
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.timeline-header h3 {
  color: var(--neon-green);
  font-size: 1.5em;
  margin: 10px 0;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.timeline-company {
  display: block;
  color: #fff;
  font-size: 1.1em;
  opacity: 0.9;
  font-family: "Share Tech Mono", monospace;
  letter-spacing: 1px;
}
.timeline-body ul {
  list-style: none;
  padding: 0;
}
.timeline-body li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: rgb(255 255 255 / 0.8);
  line-height: 1.5;
  font-family: "Share Tech Mono", monospace;
  letter-spacing: 1px;
}
.timeline-body li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--neon-green);
}
.timeline-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgb(0 255 157 / 0.1);
}
.timeline-tech span {
  padding: 5px 12px;
  background: rgb(0 255 157 / 0.08);
  border: 1px solid rgb(0 255 157 / 0.2);
  border-radius: 20px;
  color: var(--neon-green);
  font-size: 0.85em;
  transition: all 0.3s ease;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.timeline-tech span:hover {
  background: rgb(0 255 157 / 0.15);
  transform: translateY(-2px);
}
@keyframes ping {
  0% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  75%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .timeline-wrapper::before {
    left: 12px;
  }
  .timeline-item {
    padding: 0 0 0 50px !important;
  }
  .timeline-dot {
    position: absolute;
    left: 0;
  }
  .timeline-content {
    margin: 0;
  }
}
.formations {
  padding: 4rem 0;
  position: relative;
  background: linear-gradient(
    180deg,
    #fff0 0%,
    rgb(0 255 157 / 0.05) 50%,
    #fff0 100%
  );
}
.formations .timeline-content {
  border-color: rgb(0 255 157 / 0.3);
}
.formations .timeline-date {
  background: rgb(0 255 157 / 0.15);
}
.formations .timeline-tech span {
  background: rgb(0 255 157 / 0.12);
}
.formations .timeline-item {
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.formations .timeline-item:nth-child(even) {
  transform: translateX(50px);
}
.formations .timeline-item.visible {
  transform: translateX(0);
  opacity: 1;
}
.formations .timeline-item:nth-child(1) {
  transition-delay: 0.1s;
}
.formations .timeline-item:nth-child(2) {
  transition-delay: 0.2s;
}
.formations .timeline-item:nth-child(3) {
  transition-delay: 0.3s;
}
.formations .timeline-item:nth-child(4) {
  transition-delay: 0.4s;
}
@media (max-width: 768px) {
  .formations .timeline-item,
  .formations .timeline-item:nth-child(even) {
    transform: translateY(30px);
  }
  .formations .timeline-item.visible {
    transform: translateY(0);
  }
}
.contact {
  background: linear-gradient(0deg, rgb(0 26 15 / 0.8) 0%, transparent 100%);
  padding: 6rem 0;
}
.contact-info-card {
  background: rgb(0 20 12 / 0.8);
  border: 2px solid var(--neon-green);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 25px rgb(0 255 157 / 0.2);
  animation: borderGlow 4s infinite;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--neon-green),
    transparent 20%,
    transparent 80%,
    var(--neon-green)
  );
  border-radius: 15px;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 0.8rem;
  background: rgb(0 255 157 / 0.1);
  border-radius: 10px;
  border: 1px solid rgb(0 255 157 / 0.3);
}
.signal-indicator {
  position: relative;
  width: 40px;
  height: 40px;
}
.signal-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--neon-green);
}
.signal-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.signal-waves span {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--neon-green);
  border-radius: 50%;
  animation: signalWave 2s infinite;
  opacity: 0;
}
.signal-waves span:nth-child(1) {
  animation-delay: 0s;
}
.signal-waves span:nth-child(2) {
  animation-delay: 0.4s;
}
.signal-waves span:nth-child(3) {
  animation-delay: 0.8s;
}
.card-header h3 {
  color: var(--neon-green);
  font-family: "Share Tech Mono", monospace;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 0 0 10px rgb(0 255 157 / 0.5);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgb(0 255 157 / 0.05);
  border: 1px solid rgb(0 255 157 / 0.2);
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(0 255 157 / 0.2),
    transparent
  );
  transition: 0.5s;
}
.contact-item:hover::before {
  left: 100%;
}
.contact-item:hover {
  transform: translateX(10px);
  background: rgb(0 255 157 / 0.1);
  border-color: var(--neon-green);
}
.contact-item i {
  color: var(--neon-green);
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 255 157 / 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.contact-item:hover i {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgb(0 255 157 / 0.5);
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(0 255 157 / 0.2);
}
.social-link {
  color: var(--neon-green);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}
.social-link::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 10px;
  background: rgb(0 20 12 / 0.9);
  color: var(--neon-green);
  font-size: 0.8rem;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: "Share Tech Mono", monospace;
  border: 1px solid var(--neon-green);
}
.social-link:hover::before {
  opacity: 1;
  visibility: visible;
  bottom: -40px;
}
.social-link:hover {
  transform: translateY(-5px);
  text-shadow: 0 0 10px var(--neon-green);
}
@keyframes signalWave {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
  100% {
    width: 40px;
    height: 40px;
    opacity: 0;
  }
}
@keyframes borderGlow {
  0%,
  100% {
    box-shadow: 0 0 25px rgb(0 255 157 / 0.2);
  }
  50% {
    box-shadow: 0 0 35px rgb(0 255 157 / 0.4);
  }
}
@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .contact-info-card {
    padding: 1.5rem;
  }
  .card-header {
    padding: 0.6rem;
  }
  .contact-item {
    padding: 0.8rem;
  }
  .social-link {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .contact-info-card {
    padding: 1rem;
  }
  .card-header h3 {
    font-size: 1rem;
  }
  .contact-item {
    padding: 0.6rem;
  }
  .contact-item i {
    font-size: 1rem;
  }
}
.footer {
  background: rgb(0 26 15 / 0.9);
  border-top: 1px solid var(--neon-green);
  padding: 2rem 0;
  margin-top: 4rem;
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.footer-line {
  width: 100px;
  height: 1px;
  background: var(--neon-green);
  margin: 0 auto 1rem;
  position: relative;
}
.footer-line::before,
.footer-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--neon-green);
  border-radius: 50%;
  transform: translateY(-50%);
}
.footer-line::before {
  left: -3px;
}
.footer-line::after {
  right: -3px;
}
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  .profile-container {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 768px) {
  .logo {
    display: none;
  }
}
@media (max-width: 1400px) {
  .competences-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .projects-container {
    gap: 2rem;
  }
  .project-card {
    flex: 0 0 calc(33.33% - 2rem);
  }
}
@media (max-width: 1200px) {
  .competences-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .project-card {
    flex: 0 0 calc(50% - 2rem);
  }
  .competence-card {
    padding: 1.5rem;
  }
}
@media (max-width: 992px) {
  .competences-container {
    padding: 2rem;
  }
  .competence-card {
    min-height: auto;
  }
  .competence-icon {
    font-size: 2rem;
  }
  .project-card {
    flex: 0 0 calc(100% - 2rem);
    margin: 1rem;
  }
  .project-content {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .radar-chart {
    display: none;
  }
  .competences-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .competence-card {
    text-align: center;
    padding: 1.2rem;
  }
  .competence-level {
    justify-content: center;
  }
  .projects-container {
    padding: 1rem;
  }
  .project-card {
    margin: 0.5rem;
  }
  .project-image {
    height: 200px;
  }
}
@media (max-width: 576px) {
  .competences-container {
    padding: 1rem;
  }
  .competence-card {
    padding: 1rem;
  }
  .competence-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .competence-name {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .competence-description {
    font-size: 0.9rem;
  }
  .project-card {
    margin: 0.5rem 0;
  }
  .project-image {
    height: 180px;
  }
  .project-content {
    padding: 1rem;
  }
  .project-content h3 {
    font-size: 1.2rem;
  }
  .project-content p {
    font-size: 0.9rem;
    margin: 0.5rem 0;
  }
  .project-tags {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .project-tag {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
  .project-links {
    gap: 0.5rem;
  }
  .project-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 400px) {
  .competence-card {
    padding: 0.8rem;
  }
  .competence-icon {
    font-size: 1.3rem;
  }
  .project-image {
    height: 160px;
  }
  .project-content {
    padding: 0.8rem;
  }
  .project-content h3 {
    font-size: 1.1rem;
  }
  .project-tag {
    padding: 0.2rem 0.4rem;
    font-size: 0.75rem;
  }
}
@media (max-height: 600px) and (orientation: landscape) {
  .competences-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .competence-card {
    padding: 1rem;
  }
  .project-image {
    height: 150px;
  }
}
@media (hover: none) {
  .competence-card:hover,
  .project-card:hover {
    transform: none;
  }
  .project-card:hover .project-image {
    transform: none;
  }
  .project-link:hover {
    transform: none;
  }
}
.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 2rem 1rem;
  perspective: 1200px;
  max-width: 1400px;
  margin: 0 auto;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  padding: 1rem 0.5rem;
}
.project-card {
  flex: 0 0 calc(90% - 1rem);
  background: rgb(0 26 15 / 0.8);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgb(0 255 157 / 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transform-style: preserve-3d;
  min-height: auto;
  display: flex;
  flex-direction: column;
}
.project-image {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.project-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.project-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.project-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: "Share Tech Mono", monospace;
  letter-spacing: 1px;
}
.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: auto;
}
.tech-tag {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .carousel-container {
    padding: 3rem 1.5rem;
  }
  .project-card {
    flex: 0 0 calc(80% - 2rem);
  }
  .project-image {
    height: 250px;
  }
  .project-content {
    padding: 2rem;
  }
  .project-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
  .project-content p {
    font-size: 1rem;
    line-height: 1.7;
  }
  .tech-tag {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}
@media (min-width: 992px) {
  .project-card {
    flex: 0 0 calc(45% - 2rem) !important;
  }
  .project-image {
    height: 300px;
  }
  .project-content {
    padding: 2.5rem;
  }
  /* .project-content h3 {
    font-size: 1.8rem;
  } */
  .project-content p {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  .tech-tag {
    padding: 0.7rem 1.4rem;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .project-image {
    height: 250px;
  }
}
@media (min-width: 1400px) {
  .project-card {
    flex: 0 0 calc(45% - 2.5rem);
  }
  .project-image {
    height: 400px;
  }
  /* .project-content h3 {
    font-size: 2rem;
  } */
}
@media (hover: none) {
  .project-card {
    scroll-snap-align: center;
  }
  .project-card:hover {
    transform: none;
    box-shadow: none;
  }
  .project-card.active {
    transform: scale(1.02);
  }
}
@media (min-width: 1800px) {
  .project-card {
    flex: 0 0 calc(45% - 3rem);
  }
}
section {
  margin-bottom: 2rem;
}
.project-card {
  margin-bottom: 1rem;
  padding: 0;
}
.project-content {
  padding: 2rem;
}
.project-tech {
  gap: 1rem;
  margin-top: 2rem;
}
.skills-container {
  padding: 4rem 2rem;
  gap: 7rem;
}
.skills-grid {
  gap: 2.5rem;
  margin: 3rem 0;
}
.contact-grid {
  gap: 4rem;
  margin-top: 3rem;
}
@media (max-width: 1400px) {
  .project-content {
    padding: 1.8rem;
  }
  .skills-container {
    padding: 3rem 1.5rem;
    gap: 2.5rem;
  }
  .contact-grid {
    gap: 3rem;
  }
}
@media (max-width: 992px) {
  section {
    padding: 4rem 0;
  }
  .project-content {
    padding: 1.5rem;
  }
  .project-tech {
    gap: 0.8rem;
    margin-top: 1.5rem;
  }
  .skills-container {
    padding: 2.5rem 1.2rem;
    gap: 2rem;
  }
  .skills-grid {
    gap: 2rem;
    margin: 2rem 0;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .contact-grid {
    gap: 2.5rem;
  }
}
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  .carousel-container {
    padding: 2rem 1rem;
  }
  .contact-info-card {
    right: 30px;
  }
  .carousel-track {
    gap: 1.5rem;
  }
  .project-content {
    padding: 1.2rem;
  }
  .project-tech {
    gap: 0.6rem;
    margin-top: 1.2rem;
  }
  .skills-container {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }
  .skills-grid {
    gap: 1.5rem;
    margin: 1.5rem 0;
  }
  .contact-grid {
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.contact-info {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}
.ui-button {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  background: rgb(0 26 15 / 0.9);
  border: 1px solid var(--neon-green);
  border-radius: 8px;
  color: var(--neon-green);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Share Tech Mono", monospace;
}
.ui-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(0 255 157 / 0.2),
    transparent
  );
  transition: 0.5s;
}
.ui-button:hover::before {
  left: 100%;
}
.ui-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgb(0 255 157 / 0.3), 0 0 30px rgb(0 255 157 / 0.2);
  background: rgb(0 255 157 / 0.1);
}
.ui-button i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.ui-button:hover i {
  transform: translateX(5px);
}
.ui-button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgb(0 255 157 / 0.1) 50%,
    transparent 100%
  );
  transform: rotate(45deg);
  animation: scanEffect 2s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ui-button:hover::after {
  opacity: 1;
}
@keyframes wave {
  0%,
  100% {
    height: 5px;
  }
  50% {
    height: 15px;
  }
}
@keyframes scanEffect {
  0% {
    transform: rotate(45deg) translateY(-100%);
  }
  100% {
    transform: rotate(45deg) translateY(100%);
  }
}
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }
  .ui-button {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  .ui-button i {
    font-size: 1.1rem;
  }
}
@media (max-width: 576px) {
  .ui-button {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  .ui-button i {
    font-size: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ui-button::before,
  .ui-button::after {
    display: none;
  }
  .ui-button:hover {
    transform: none;
  }
  .ui-button:hover i {
    transform: none;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .title {
    font-size: 1.2rem;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  .project-title {
    font-size: 1.3rem;
  }
  .timeline-title {
    font-size: 1.2rem;
  }
}
a,
button,
.clickable,
.skill-tag,
.nav-link,
.project-card,
.social-link,
.contact-info-card {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='16' cy='16' r='12' stroke='%2300ff9d' stroke-width='2'/%3E%3Ccircle cx='16' cy='16' r='4' fill='%2300ff9d'/%3E%3C/svg%3E")
      16 16,
    pointer;
}
.skills-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.skill-item {
  position: relative;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgb(0 255 157 / 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.skill-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.skill-name {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.skill-bar {
  position: relative;
  height: 4px;
  background: rgb(0 255 157 / 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.skill-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--neon-green);
  width: 0;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px var(--neon-green);
}
.skill-item.visible .skill-progress {
  width: var(--skill-value);
}
.creative-title {
  margin-top: 3rem;
  font-size: 1.8rem;
  text-transform: uppercase;
  text-align: left;
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
  opacity: 1;
  display: block;
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1rem;
}
.creative-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 1rem;
  width: 100px;
  height: 2px;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
}
.creative-title.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .creative-title {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}
