* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  50% { border-color: transparent }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  background-color: #0A0B16;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  margin: 0;
  overflow-x: hidden;
}

.container {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.typing-container {
  display: inline-block;
  margin: 0 auto;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(to right, #4287f5, #6ea7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  overflow: hidden;
  animation: 
    typing 3.5s steps(40, end),
    blink .75s step-end infinite;
}

.subtitle {
  font-size: 1.25rem;
  color: #8B8D98;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 3.5s;
}

.buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 4s;
}

.button {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.primary-button {
  background-color: #4287f5;
  color: white;
  box-shadow: 0 4px 15px rgba(66, 135, 245, 0.3);
  border: none;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 135, 245, 0.4);
  background-color: #5494f7;
}

.secondary-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary-button:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 4.2s; }
.feature-card:nth-child(2) { animation-delay: 4.4s; }
.feature-card:nth-child(3) { animation-delay: 4.6s; }
.feature-card:nth-child(4) { animation-delay: 4.8s; }
.feature-card:nth-child(5) { animation-delay: 5.0s; }
.feature-card:nth-child(6) { animation-delay: 5.2s; }
.feature-card:nth-child(7) { animation-delay: 5.4s; }
.feature-card:nth-child(8) { animation-delay: 5.6s; }
.feature-card:nth-child(9) { animation-delay: 5.8s; }
.feature-card:nth-child(10) { animation-delay: 6.0s; }

.feature-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-card:hover h3 {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(
    to right,
    #4287f5 20%,
    #6ea7ff 40%,
    #6ea7ff 60%,
    #4287f5 80%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.feature-card h3 {
  color: #4287f5;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-card p {
  color: #8B8D98;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2.5rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 2rem;
  background: rgba(10, 11, 22, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  animation: slideDown 0.8s ease forwards;
  animation-delay: 0.5s;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 1s;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4287f5, #6ea7ff);
  padding: 2px;
}

.logo img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  background: linear-gradient(to right, #4287f5, #6ea7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.auth-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 1.3s;
}

.login-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.stats-overview {
  margin: 2rem 1rem;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1s;
}

.stats-overview h1 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(to right, #4287f5, #6ea7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  animation: 
    typing 3.5s steps(40, end),
    blink .75s step-end infinite;
}

.total-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 2s;
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(to right, #4287f5, #6ea7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #8B8D98;
  margin-top: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.search-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 2.5s;
}

.search-box {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  max-width: 180%;
}

.search-box:focus {
  outline: none;
  border-color: #4287f5;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(66, 135, 245, 0.15);
}

.commands-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 95%;
}

.category {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  backdrop-filter: blur(10px);
}

.category:nth-child(n) {
  animation-delay: calc(3s + (0.2s * var(--index, 0)));
}

.category:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.category:hover .category-title {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(
    to right,
    #4287f5 20%,
    #6ea7ff 40%,
    #6ea7ff 60%,
    #4287f5 80%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.category-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.category-title-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #4287f5, #6ea7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
  flex: 1;
  text-align: left;
  word-break: break-word;
  min-width: 200px;
}

.command-count {
  background: rgba(66, 135, 245, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  color: #4287f5;
  white-space: nowrap;
  flex-shrink: 0;
}

.show-more-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(66, 135, 245, 0.1);
  color: #4287f5;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
}

.show-more-btn:hover {
  background: rgba(66, 135, 245, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 135, 245, 0.2);
}

.show-more-btn:active {
  transform: translateY(0);
}

.commands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  display: none;
  transition: all 0.3s ease;
}

.category.expanded .commands-grid {
  display: grid;
}

.command-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.command-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(66, 135, 245, 0.1);
}

.command-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #4287f5;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.command-item:hover .command-name {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(
    to right,
    #4287f5 20%,
    #6ea7ff 40%,
    #6ea7ff 60%,
    #4287f5 80%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.command-description {
  color: #8B8D98;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 6s;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding: 0 2rem;
}

.footer-section {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.footer-section:nth-child(1) { animation-delay: 6.2s; }
.footer-section:nth-child(2) { animation-delay: 6.4s; }
.footer-section:nth-child(3) { animation-delay: 6.6s; }
.footer-section:nth-child(4) { animation-delay: 6.8s; }

.footer-section h4 {
  color: white;
  background: linear-gradient(to right, #4287f5, #6ea7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: #8B8D98;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #8B8D98;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #4287f5;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: #4287f5;
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 4rem;
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #8B8D98;
  font-size: 0.9rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 7s;
  background: rgba(255, 255, 255, 0.01);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .footer {
    padding: 2rem 0 0;
  }
}

.commands-section {
  margin: 6rem 2rem;
  padding: 4rem 4rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 5.8s;
  position: relative;
  overflow: hidden;
  max-width: 2400px;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 4rem);
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 8rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .commands-section {
    margin: 4rem 1rem;
    padding: 3rem 1.5rem;
    width: calc(100% - 2rem);
  }
  
  .stats-container {
    gap: 3rem;
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(to right, #4287f5, #6ea7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #8B8D98;
  font-size: 1rem;
  font-weight: 500;
}

.commands-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #4287f5, #6ea7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}

.commands-section p {
  color: #8B8D98;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.view-commands-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #4287f5, #6ea7ff);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(66, 135, 245, 0.3);
}

.view-commands-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 135, 245, 0.4);
}

.view-commands-btn svg {
  transition: transform 0.3s ease;
}

.view-commands-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .container {
    padding: 1rem;
    max-width: 100%;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .commands-section {
    padding: 3rem 2rem;
  }

  .commands-container {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }

  h1 {
    font-size: 2rem;
    white-space: normal;
    animation: fadeIn 1s ease forwards;
  }

  .subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .buttons {
    flex-direction: column;
    padding: 0 2rem;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .stats-container {
    gap: 2rem;
    flex-direction: column;
  }

  .stat-number {
    font-size: 2rem;
  }

  .header {
    padding: 0.75rem 1rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo {
    width: 32px;
    height: 32px;
  }

  .auth-container {
    margin-left: auto;
  }
  
  .commands-container {
    padding: 0 1rem;
    margin: 1rem;
  }
  
  .stats-overview h1 {
    font-size: 2rem;
    white-space: normal;
    padding: 0 1rem;
  }
  
  .total-stats {
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
  }
  
  .stat-box {
    width: 100%;
  }
  
  .category {
    margin: 1rem 0;
    padding: 1.25rem;
  }
  
  .commands-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .command-item {
    padding: 1.25rem;
  }
  
  .command-name {
    font-size: 1rem;
  }
  
  .command-description {
    font-size: 0.9rem;
  }

  .search-container {
    max-width: 100%;
    padding: 0 1rem;
  }

  .search-box {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .commands-section {
    margin: 2rem 1rem;
    padding: 2rem 1rem;
  }

  .commands-section h2 {
    font-size: 1.8rem;
  }

  .commands-section p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .view-commands-btn {
    padding: 0.75rem 1.5rem;
    width: 100%;
    justify-content: center;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-card h3 {
    font-size: 1.25rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .social-links {
    justify-content: left;
  }

  .search-box {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  h1 {
    font-size: 3rem;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  body {
    padding-top: 50px;
  }

  .container {
    padding: 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .buttons {
    flex-direction: row;
    padding: 0 1rem;
  }
  .stats-overview {
    margin: 1rem;
    padding: 1.5rem;
  }

  .total-stats {
    flex-direction: row;
    gap: 4rem;
  }

  .commands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.header {
  flex-wrap: wrap;
}

.auth-container {
  margin-left: auto;
}

@media (max-width: 360px) {
  .logo-text {
    display: none;
  }
  
  .header {
    padding: 0.5rem;
  }
  
  .buttons {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (min-width: 768px) {
  .category-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .category-title-section {
    justify-content: flex-start;
  }

  .show-more-btn {
    width: auto;
    min-width: 120px;
  }
}

@media (max-width: 767px) {
  .commands-container {
    max-width: 100%;
    width: calc(100% - 2rem);
    margin: 0 1rem;
    padding: 0;
  }

  .category {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }

  .category-title-section {
    gap: 0.75rem;
  }

  .category-title {
    font-size: 1.1rem;
    min-width: 150px;
    line-height: 1.3;
  }

  .command-count {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    margin-left: auto;
  }

  .show-more-btn {
    margin-top: 0.75rem;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .commands-grid {
    gap: 0.75rem;
    margin-top: 0.75rem;
  }
}

@media (max-width: 360px) {
  .commands-container {
    width: calc(100% - 1.5rem);
    margin: 0 0.75rem;
  }

  .category {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }

  .category-title-section {
    gap: 0.5rem;
  }

  .category-title {
    font-size: 1rem;
    min-width: 120px;
  }

  .command-count {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }

  .show-more-btn {
    padding: 0.9rem 0.75rem;
    font-size: 0.85rem;
  }
}

@media (min-width: 1400px) {
  .commands-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1600px) {
  .commands-container {
    max-width: 1600px;
  }
}

@media (min-width: 1920px) {
  .commands-container {
    max-width: 1800px;
  }
}

/* Styles for the registration and login forms */
form {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: 2rem auto;
  max-width: 400px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ffffff;
}

/* Styles for input containers with icons */
.input-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-container i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
}

.input-container i:hover {
  color: #4287f5;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  padding: 0.75rem 0.75rem 0.75rem 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: border-color 0.3s ease, background 0.3s ease;
  font-size: 1rem;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  outline: none;
  border-color: #4287f5;
  background: rgba(255, 255, 255, 0.15);
}

button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  background-color: #4287f5;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  font-size: 1rem;
  width: 100%;
  box-shadow: 0 4px 15px rgba(66, 135, 245, 0.3);
}

button:hover {
  background-color: #5494f7;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 135, 245, 0.4);
}

/* Additional hover effects for form */
form:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.profile-container {
    position: relative;
    display: inline-block;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.profile-pic:hover {
    transform: scale(1.1);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: rgba(66, 135, 245, 0.1);
}

.redirect-message {
    margin-top: 1.5rem;
    color: #8B8D98;
    font-size: 0.9rem;
}

.redirect-message a {
    color: #4287f5;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: bold;
}

.redirect-message a:hover {
    color: #5494f7;
}