* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #8a3800 0%, #4a1c00 100%); /* naranja oscuro */
    color: #ffffff;
    font-family: "Courier New", Courier, monospace;
}

.app-shell {
    width: 100%;
    max-width: 1200px;
    padding: 2.5rem 1.5rem;
}

.card {
    background: rgba(10, 10, 10, 0.94);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 40px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(0, 0, 0, 0.8);
    padding: 2.8rem 2.4rem 2.4rem;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 193, 112, 0.22), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(0, 200, 150, 0.22), transparent 60%);
    opacity: 0.9;
    mix-blend-mode: screen;
    pointer-events: none;
}

.card-inner {
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

.band-name {
    font-size: clamp(2.2rem, 4vw, 3rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: bold;
}

.band-tagline {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f1e0d0;
}

.divider {
    width: 200px;
    height: 2px;
    margin: 1.2rem auto 0;
    background: linear-gradient(90deg, #00c896, #ffa500);
    border-radius: 999px;
}

.subtitle {
    margin-top: 1.3rem;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    /*text-transform: uppercase;*/
    color: #dddddd;
}

.options-grid {
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

@media (max-width: 1024px) {
    .options-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .card {
        padding: 2.2rem 1.6rem 1.8rem;
        border-radius: 22px;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }
}

.option-card {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.6rem 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.option-card > * {
    position: relative;
    z-index: 1;
}

.option-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, rgba(255, 165, 0, 0.18), transparent 50%);
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
    z-index: 0;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.85),
                0 0 26px rgba(255, 165, 0, 0.35);
    border-color: rgba(255, 165, 0, 0.7);
}

.option-card:hover::before {
    opacity: 1;
}

.option-title {
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    color: #ffa500;
}

.option-subtitle {
    font-size: 0.9rem;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.option-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #bbbbbb;
    margin-bottom: 1.2rem;
}

.option-actions {
    display: flex;
    justify-content: flex-end;
}

.option-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #000;
    background: #ffa500;
    transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.option-link:hover {
    background: #ffbf4d;
    transform: translateY(-1px);
    box-shadow: 0 0 16px rgba(255, 165, 0, 0.6);
}

.option-link span.icon {
    font-size: 1rem;
}

footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.7rem;
    color: #f0e0d0;
    opacity: 0.9;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

