body.loading {
  overflow: hidden;
  height: 100vh;
}

/* Reset + Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Particles canvas */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Header */
header {
  padding: 20px 0;
  border-bottom: 1px solid #333;
}
header h1 {
  font-size: 1.8rem;
}
header nav {
  float: right;
}
header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}
header nav a:hover {
  color: #fff;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  text-align: center;
}
.hero h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.btn {
  padding: 10px 20px;
  background: #fff;
  color: #000;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  background: #ccc;
}

/* Sections */
.section {
  padding: 60px 0;
}
h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.skills li {
  list-style: none;
  margin-bottom: 10px;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
}
input, textarea {
  padding: 10px;
  margin-bottom: 15px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
}
button[type="submit"] {
  background: #fff;
  color: #000;
}



/* Splash Screen Styles */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  pointer-events: all;
}


#lottie-container {
  width: 80vw;
  max-width: 600px;
  height: auto;
}

@media (max-width: 768px) {
  #lottie-container {
    width: 95vw;
  }
}

.fade-out {
  animation: fadeOut 1s ease forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/* Responsive */