:root {
    --primary-red: #ff0000;
    --dark-bg: #111111;
    --text-color: #ffffff;
    --font-main: 'Montserrat', sans-serif;
}

body {
    background: radial-gradient(circle at top, #2a0000 0%, #000000 80%);
    color: var(--text-color);
    font-family: var(--font-main);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 400px; /* Mobile default */
    padding: 20px;
    transition: max-width 0.3s ease;
}

.logo {
    width: 100%;
    max-width: 350px;
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease-in-out;
}

.links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.link-button {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--text-color);
    border-radius: 50px;
    color: var(--text-color);
    padding: 16px 24px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    animation: slideUp 1s ease-in-out forwards;
    opacity: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    height: auto;
}

.link-button i {
    font-size: 1.3rem;
    width: 40px; /* Fixed width for perfect vertical alignment */
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* .link-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
} */


.link-button:hover {
    background-color: #e6e6e6;
    border-color: #e6e6e6;
    color: #000;

}



/* .link-button.primary {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000;
} */

/* .link-button.primary:hover {
    background-color: #e6e6e6;
    border-color: #e6e6e6;
    color: #000;
} */

/* Desktop / Tablet View */
@media (min-width: 600px) {
    .container {
        max-width: 700px;
    }

    .links {
        grid-template-columns: 1fr 1fr;
    }

    /* Main CTA spans full width and centers content */
    .link-button:nth-child(1) {
        grid-column: span 2;
        justify-content: center;
    }
}

/* Animaciones para darle vida */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.link-button:nth-child(2) { animation-delay: 0.2s; }
.link-button:nth-child(3) { animation-delay: 0.3s; }
.link-button:nth-child(4) { animation-delay: 0.4s; }
.link-button:nth-child(5) { animation-delay: 0.5s; }


footer {
    margin-top: 50px;
    font-size: 0.8rem;
    opacity: 0.6;
}
