html,
body {
    height: 100%;
    margin: 0;
}

body {
    background-image: url('source/wallpaper.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;

}

.container {
    width: 65%;
    min-width: 280px;
    min-height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
    padding-top: 40px;
    backdrop-filter: brightness(0.7) blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease-out;
}

.container:hover {
    width: 68%;
    min-height: 90%;
    backdrop-filter: brightness(0.3) blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.container h1 {
    font-family: "PT Mono", monospace;
    font-weight: 600;
    font-size: 42px;
    font-style: normal;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.25em;
    text-align: center;
    text-shadow:
        0 0 20px rgba(174, 210, 255, 0.6),
        0 0 60px rgba(174, 210, 255, 0.2);
}

.container h3 {
    font-family: "PT Mono", monospace;
    font-weight: 100;
    font-style: normal;
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 10px;
    text-shadow:
        0 0 20px rgba(174, 210, 255, 0.6),
        0 0 60px rgba(174, 210, 255, 0.2);
}

#rain {
    position: fixed;
    pointer-events: none
}

#overlay {
    position: fixed;
    inset: 0;
    background: #0d1117;
    z-index: 9999;
    transition: opacity 1.5s ease;
}

.player {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;

    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.player button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
}

.player input[type="range"] {
    width: 80px;
    accent-color: rgba(174, 210, 255, 0.8);
    cursor: pointer;
}

.player span {
    font-family: "PT Mono", monospace;
    font-weight: 100;
}

.contact {
    position: fixed;
    bottom: 90px;
    display: flex;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-family: "PT Mono", monospace;
    font-size: 14px;
    cursor: pointer;
    transition: border 0.3s ease, background 0.3s ease;
    margin-top: 12px;
}

.contact:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.copied-toast {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-family: "PT Mono", monospace;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    white-space: nowrap;
}

.copied-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.player input[type="range"] {
    width: 80px;
    height: 2px;
    accent-color: rgba(174, 210, 255, 0.8);
    cursor: pointer;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    outline: none;
}

.player input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(174, 210, 255, 0.9);
    box-shadow: 0 0 6px rgba(174, 210, 255, 0.5);
    cursor: pointer;
}