* {
    box-sizing: border-box;
}

::selection {
    background-color: #0d1e3d;
    color: #ffc400;
}

.background-fix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('background.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.65);
    background-blend-mode: darken;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: white;
    transform: translateZ(0);
}

button {
    all: unset;
    cursor: pointer;
    display: inline-block;
    position: relative;
    user-select: none;
}

.live-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    background-color: #ffc400;
    color: #0d1e3d;
    border-radius: 14px;
    box-shadow: 0 8px 0 #cc9900, 0 12px 25px rgba(255, 196, 0, 0.55);
    width: 90%;
    max-width: 460px;
    height: 88px;
    transition: transform 0.22s cubic-bezier(.2, .9, .3, 1.3), background-color 0.18s ease-out, color 0.18s ease-out, box-shadow 0.22s ease-out;
}

.live-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0ac00;
    color: #0d1e3d;
    height: 100%;
    width: 82px;
    font-size: 2.6rem;
    font-weight: bold;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    transition: background-color .18s ease-out, color .18s ease-out;
}

.live-button-text {
    padding-left: 20px;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-grow: 1;
    text-align: left;
    animation: livePulse 1.4s infinite ease-in-out alternate;
    transform-origin: left center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.live-button:hover {
    transform: translateY(-5px) scale(1.02);
    background-color: #0d1e3d;
    color: #ffc400;
    box-shadow: 0 12px 0 #071221, 0 22px 45px rgba(13, 30, 61, 0.65);
}

.live-button:hover .live-button-icon {
    background-color: #071221;
    color: #ffc400;
}

.live-button:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 3px 0 #071221, 0 6px 12px rgba(13, 30, 61, 0.3);
    background-color: #0d1e3d;
}

@keyframes livePulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.06); opacity: 0.92; }
}

@media (min-width: 768px) {
    .live-button {
        height: 105px;
        max-width: 580px;
    }
    .live-button-icon {
        width: 110px;
        font-size: 3.2rem;
    }
    .live-button-text {
        font-size: 2.3rem;
    }
}
