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

body {
    overflow: hidden;
    background: #000;
    font-family: 'Segoe UI', Roboto, Helvetica, sans-serif;
    letter-spacing: 0.5px;
    color: #E6D3E2;
}

.haga {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.huje {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 90%;
    max-width: 500px;
}

.hctl {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.hhf,
.hytd {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(135deg, #8A2078 0%, #58DBD2 100%);
    color: #000;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 32, 120, 0.4);
    text-transform: uppercase;
    font-family: inherit;
}

.hytd {
    background: linear-gradient(135deg, #58DBD2 0%, #D3F0EE 100%);
    color: #000;
}

.hhf:hover,
.hytd:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

.hrec-active {
    animation: pulseRec 1.5s infinite;
    background: #8A2078;
    color: #fff;
}

@keyframes pulseRec {
    0% {
        box-shadow: 0 0 0 0 rgba(138, 32, 120, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(138, 32, 120, 0);
    }
}

.hjiu {
    font-size: 13px;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 20px;
    border-radius: 20px;
    border: 1px solid #58DBD2;
}

.hprg {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 15px;
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #58DBD2;
    cursor: pointer;
    margin-top: -5px;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #8A2078;
    border-radius: 2px;
}

.hinf {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    background: rgba(138, 32, 120, 0.2);
    backdrop-filter: blur(8px);
    padding: 15px 25px;
    border-radius: 12px;
    border-left: 4px solid #58DBD2;
}

#trackName {
    font-weight: bold;
    font-size: 16px;
    color: #D3F0EE;
    margin-bottom: 4px;
}

#timeDisplay {
    font-size: 12px;
    color: #E6D3E2;
}

.hdrp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(88, 219, 210, 0.2);
    backdrop-filter: blur(10px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #D3F0EE;
    border: 5px dashed #58DBD2;
}

.hqst {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E6D3E2;
    color: #8A2078;
    font-weight: bold;
    font-size: 20px;
    border: none;
    cursor: pointer;
    z-index: 105;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s;
}

.hqst:hover {
    transform: scale(1.1);
}

.hmod {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 320px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid #8A2078;
    padding: 20px;
    border-radius: 15px;
    z-index: 110;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.hmod h3 {
    color: #58DBD2;
    margin-bottom: 12px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.hmod p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #E6D3E2;
}