/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0b0b; /* Void black */
    color: #f5f5f5; /* Raw white */
    font-family: 'Space Mono', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 24px;
}

.container {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Header */
.header {
    margin-bottom: 40px;
}

.logo-container {
    margin-bottom: 12px;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #f5f5f5;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.tagline {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #ff0000; /* Blood red */
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.subtagline {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: #8a8a8a; /* Ash grey */
    text-transform: uppercase;
}

/* Links List */
.links-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.link-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background-color: #121212; /* Dark container */
    color: #f5f5f5;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid #222222;
    border-radius: 9999px; /* Rounded pill buttons */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-btn:hover {
    background-color: #0b0b0b;
    border-color: #ff0000; /* Blood red */
    color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Highlighted Primary Button (Tienda) */
.primary-btn {
    background-color: #ff0000; /* Blood red background */
    color: #0b0b0b; /* Dark text */
    border-color: #ff0000;
}

.primary-btn:hover {
    background-color: #0b0b0b;
    color: #ff0000;
}

/* Footer */
.footer {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: #444444;
    text-transform: uppercase;
}
