        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #0a0f20;
            color: #ffffff;
            overflow: hidden;
        }

        .container {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 50px;
            animation: fadeIn 1s ease-in-out;
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(-50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

.logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #00bfff;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px #00bfff;
    animation: pulseShadow 2.5s infinite;
}

@keyframes pulseShadow {
    0%, 100% {
        box-shadow: 0 0 20px #00bfff;
    }
    50% {
        box-shadow: 0 0 40px #00bfff;
    }
}


        .logo span {
            color: #00bfff;
            font-size: 48px;
            font-weight: bold;
            text-shadow: 0 0 10px #00bfff;
        }

        h1 {
            color: #00bfff;
            font-size: 36px;
            margin-bottom: 10px;
            text-shadow: 0 0 20px #00bfff;

        }

        p {
            font-size: 18px;
            color: #d0d0d0;
            margin-bottom: 20px;

        }

        a {
            color: #00bfff;
            text-decoration: none;
        }

        .flags {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            margin-top: 40px;
            animation: fadeIn 1s ease-in-out;
        }

        .flags img {
            width: 30px;
            height: 20px;
            margin: 0 10px;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .flags img:hover {
            transform: scale(1.2);
        }
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  z-index: -2;  
  background: #0a0f20; 
}
        .button {
            display: inline-block;
            background: transparent;
            border: 2px solid #00bfff;
            color: #00bfff;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: bold;
            border-radius: 10px;
            text-decoration: none;
            transition: background 0.3s, color 0.3s, box-shadow 0.3s;

        }

        .button:hover {
            background: #00bfff;
            color: #0a0f20;
            box-shadow: 0 0 20px #00bfff;
        }
        footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #101a35; /* ceva un pic mai închis */
  color: #6a6a6a;
  font-size: 14px;
  padding: 10px 0;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 191, 255, 0.5);
  z-index: 100;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
#social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
  }
  #social-icons a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  #social-icons a img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 2px currentColor);
  }
  /* Hover efect */
  #social-icons a:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px currentColor);
  }
.icon-left {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1.5s forwards ease-out;
}

.icon-center {
    opacity: 0;
    animation: fadeIn 1.5s forwards ease-out;
}

.icon-right {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 1.5s forwards ease-out;
}

@keyframes containerDrop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}






        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://upload.wikimedia.org/wikipedia/commons/e/e1/Stars_1920x1080.png') repeat;
            opacity: 0.1;
            z-index: -1;
        }
        @media (max-width: 600px) {
  .container {
    padding: 20px;
    max-width: 95%;
  }

  .logo {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .logo span {
    font-size: 32px;
  }

  h1 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }

  .flags {
    margin-top: 20px;
  }

  .flags img {
    width: 25px;
    height: 16px;
    margin: 0 5px;
  }

  .icons img {
    width: 30px;
    height: 30px;
  }

  .button {
    padding: 12px 25px;
    font-size: 16px;
  }

  footer {
    font-size: 12px;
    padding: 8px 0;
  }
}
