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

body {
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

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

/* Content wrapper - centered display */
.content-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
}

/* Logo container */
.logo-container {
  max-width: 90%;
  text-align: center;
}

.logo-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive scaling */
@media (max-width: 768px) {
  .logo-container {
    max-width: 95%;
  }
}
