:root {
    --primary: #FF6B35;
    --primary-glow: rgba(255, 107, 53, 0.15);
    --bg-light: #f9f5ed;
    --bg-card: #ffffff;
    --text-main: #1A1C1E;
    --text-muted: #64748B;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Fondo con efecto sutil */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5), transparent);
    background-image:
        radial-gradient(at 0% 0%, hsla(20, 100%, 80%, 0.05) 0, transparent 50%),
        radial-gradient(at 100% 100%, hsla(210, 30%, 80%, 0.05) 0, transparent 50%);
    z-index: -1;
}

.container {
    max-width: 800px;
    width: 90%;
    text-align: center;
    padding: 2rem;
    z-index: 10;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeIn 1.2s ease-out forwards;
}

.animate-up {
    animation: slideUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Logo */
.logo-section {
    margin-bottom: 3rem;
}

.logo {
    width: 240px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.05));
    transition: transform 0.4s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Contenido */
.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.description-box {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.description {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.developer-note {
    font-size: 1rem;
    color: var(--text-main);
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.final-msg {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Botón/Link */
.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 20px -5px var(--primary-glow);
}

.link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -5px var(--primary-glow);
    filter: brightness(1.1);
}

.link-btn svg {
    transition: transform 0.3s ease;
}

.link-btn:hover svg {
    transform: translate(2px, -2px);
}

/* Footer */
.bottom-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Media Queries para móviles extremos */
@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .logo {
        width: 100px;
    }
}