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

html, body {
    height: 100%;
    height: 100dvh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: fixed;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 90%;
    z-index: 10;
}

.brand-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 460px;
    z-index: 10;
}

.brand-pre {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #555555; /* Darker gray */
    margin-bottom: 4px;
}

.brand {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -3px;
    text-transform: lowercase;
    line-height: 1;
}

.brand .dan {
    color: #d13b85; /* Rosado púrpura */
}

.brand .ros {
    color: #ff6a00; /* Naranja */
}

.brand .co {
    color: #ffffff; /* Blanco */
}

.brand sup {
    font-size: 1.8rem;
    font-weight: 600;
    vertical-align: super;
    margin-left: 2px;
    color: #ffffff;
}

.intro-text {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: #555555;
    margin-top: 15px;
}

.counter-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.contact-email {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #555555;
    text-decoration: none;
    margin-top: 15px;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.contact-email:hover {
    color: #ffffff;
}

/* Flip clock container styles */
.flip-clock {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.flip-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flip-card {
    position: relative;
    background: linear-gradient(180deg, #1b1b1b 0%, #0d0d0d 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    min-width: 60px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.08);
}

.flip-card span {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.flip-divider {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #000000;
    top: 50%;
    left: 0;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.flip-colon {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -16px;
}

.flip-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
    opacity: 0.4;
}

/* Background floating icons container */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: #ffffff;
    opacity: 0.05;
    font-size: 2rem;
    pointer-events: none;
    will-change: transform;
}

@media (min-width: 901px) {
    .container {
        align-items: flex-start;
    }
    .counter-column {
        margin-top: 42px;
    }
}

@media (max-width: 900px) {
    .container {
        gap: 35px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .brand-column {
        align-items: center;
        text-align: center;
    }
    .brand {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }
    .intro-text {
        font-size: 1rem;
    }
    .flip-card {
        min-width: 50px;
        height: 44px;
    }
    .flip-card span {
        font-size: 1.8rem;
    }
}

/* Pulsing furnace fire glow from bottom/center background */
.fire-glow {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 74, 25, 0.22) 0%, rgba(230, 74, 25, 0.06) 45%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 2;
    filter: blur(50px);
    animation: firePulse 6s infinite alternate ease-in-out;
}

@keyframes firePulse {
    0% {
        opacity: 0.65;
        transform: translate(-50%, 0) scale(1);
    }
    100% {
        opacity: 1.0;
        transform: translate(-50%, -15px) scale(1.2);
    }
}




