/* Reset and basic styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
}

body::-webkit-scrollbar {
    width: 0px;
}

header {
    position: fixed;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #1e1e1e;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #b3b3b3;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffffff;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-buttons a {
    text-decoration: none;
    color: #ffffff;
    background: #333333;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background 0.3s;
}

.nav-buttons a:hover {
    background: #444444;
}

#button-account{
    display: none;
}

.intro {
    text-align: center;
    background: linear-gradient(45deg, purple, violet, blue, cyan);
}

.intro h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.intro p {
    font-size: 18px;
    margin-bottom: 30px;
}

.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 40px 20px;
}

.platform {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.platform h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.platform p {
    font-size: 16px;
    margin-bottom: 20px;
}

.platform-center
{
    display: flex;
    justify-content: center;
}

.platform a {
    text-decoration: none;
    color: #ffffff;
    background: #333333;
    padding: 20px 0px;
    border-radius: 4px;
    width: 160px;
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform a:hover {
    background: #444444;
}

.platform img
{
    height: 50px; 
    width: 50px; 
}

.platform:hover {
    transform: scale(1.05);
    background: #292929;
}

.about {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    width: 800px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
    display: flex; /* Enable flexbox */
    flex-direction: column; /* Stack children vertically */
    gap: 10px; /* Space between links */
    align-items: center; /* Center links horizontally */
}

.about h2{
    margin-bottom: 0px;
}

.about:hover {
    transform: scale(1.05);
    background: #292929;
}

.about p{
    line-height: 24px;
    margin-bottom: 40px;
}

.paragraph {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    transition: transform 0.3s, background 0.3s;
}

.paragraph p{
    line-height: 24px;
    margin-bottom: 40px;
}

.account {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
    padding: 10px;
    border: 1px solid #ccc;
    border-color: purple;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select{
    border-color: cyan;

}

button {
    width: 100%;
    padding: 12px 18px;
    background: linear-gradient(45deg, purple, violet, blue, cyan);
    background-size: 300% 300%;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: gradientShift 6s ease infinite;
}

    /* Hover effect */
    button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        opacity: 0.9;
    }

    /* Click effect */
    button:active {
        transform: scale(0.96);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

/* Gradient animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.account-links {
    display: flex;
    flex-direction: column;
}

.account-links a{
    color: #b3b3b3;
 }

.settings-element {
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 10px;
    margin-left: 10px;
    color:white;
}

.settings-element-button
{
    background-color: transparent;
    color: transparent;
    border: none;
}

.about-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid currentColor;
  border-radius: 0.5rem;
  text-decoration: none;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: inherit;
  background: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
  max-width: 80%;
}

.about-link:hover,
.about-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.about-link:active {
  transform: translateY(0);
  box-shadow: none;
}

.about-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .about-link {
    display: block;
    width: 100%;
    text-align: center;
  }
}


footer {
    text-align: center;
    padding: 20px;
    background: #1e1e1e;
    color: #b3b3b3;
}
