:root {
    --background-color: #0a1a1a; /* Fondo principal, más oscuro para contraste */
    --background-secondary: #112929; /* Fondo secundario, tono más suave */
    --primary-color: #04ffef; /* Nuevo color principal, vibrante */
    --secondary-color: #00bfae; /* Secundario, tono más profundo del principal */
    --detail-color: #eff7ed; /* Detalle, amarillo vibrante */
    --shadow-color: #022b2b; /* Sombra, tono oscuro verdoso */
    --text-color: #eafffa; /* Texto principal, blanco azulado */
    --white: #ffffff; /* Blanco para detalles claros */
    --btn: #2ba6cc; /* Color de botón, mismo que el primario */
}

body {
    background: var(--background-color);
    color: var(--text-color);
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
}

header {
    background: var(--background-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.brand{
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.brand img {
    width: 64px;
}

main {
    padding: 2rem 1rem 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    background: linear-gradient(120deg, var(--background-secondary) 60%, var(--shadow-color) 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 24px var(--shadow-color);
}
.hero h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.hero p {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.hero img {
    max-width: 220px;
    margin-bottom: 1rem;
}

.btn, .btn-outline {
    display: inline-block;
    padding: 0.7rem 2rem;
    border-radius: 2rem;
    font-weight: bold;
    font-size: 1rem;
    margin: 0.5rem 0.5rem 0 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    text-decoration: none;
}
.btn {
    background: var(--btn);
    color: var(--white);
    border: none;
    box-shadow: 0 2px 8px var(--detail-color);
}
.btn:hover {
    background: var(--secondary-color);
    color: var(--background-color);
}
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.section {
    background: var(--background-secondary);
    border-radius: 1.2rem;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 16px var(--shadow-color);
}

.server {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    justify-items: center;
    align-items: center;
}


.services h2 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
}
.services img {
    display: block;
    margin: 0 auto 2rem auto;
    max-width: 180px;
}
.products {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.card {
    text-align: center; 
    background: var(--background-color);
    border: 1.5px solid var(--primary-color);
    border-radius: 1rem;
    box-shadow: 0 2px 12px var(--shadow-color);
    padding: 0rem 1.5rem 1.5rem;
    max-width: 320px;
    min-width: 240px;
    color: var(--text-color);
    transition: border 0.2s, box-shadow 0.2s;
    margin: 0.5rem 0.5rem;
}
.card a {
    text-decoration: none;
}
.card h3 {
    color: var(--primary-color);
    margin-top: 0;
}
.card svg {
    background: var(--background-color);
    border: 1.5px solid var(--primary-color);
    border-radius: 50%;
    padding: 0.7rem;
    position: relative;
    top: -1.7rem;
    color: var(--secondary-color);
}
.card p {
    color: var(--text-color);
}
.card:hover {
    border: 1.5px solid var(--secondary-color);
    box-shadow: 0 4px 24px var(--detail-color);
}

.about h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}
.info-about {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.info-about article {
    background: var(--background-color);
    border-radius: 1rem;
    padding: 1.2rem;
    min-width: 220px;
    max-width: 340px;
    box-shadow: 0 2px 8px var(--shadow-color);
}
.info-about h3 {
    color: var(--secondary-color);
    margin-top: 0;
}
.info-about p, .info-about ul {
    color: var(--text-color);
}
.info-about ul {
    padding-left: 1.2rem;
}

.server-img {
    width: 100%;
    max-width: 540px;
    border-radius: 0.8rem;
    box-shadow: 0 2px 12px var(--shadow-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

footer {
    background: var(--background-secondary);
    color: var(--text-color);
    padding: 2rem 1rem 1rem 1rem;
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -2px 12px var(--shadow-color);
}
span {
    color: var(--primary-color);
    font-weight: bold;
}
.text-center {
    text-align: center;
}
.discord {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.discord div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer .socials {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}
.socials-aslan {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}
.socials-aslan:hover {
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .products, .info-about {
        flex-direction: column;
        align-items: center;
    }
    main {
        padding: 1rem 0.2rem 2rem 0.2rem;
    }
}