.hash-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hash-input {
    width: 100%;
    min-height: 120px;
    resize: vertical;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}
.hash-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.hash-btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg,
        rgba(102, 126, 234, 0.6) 0%,
        rgba(240, 147, 251, 0.5) 50%,
        rgba(0, 242, 254, 0.55) 100%);
    border: 2.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Trebuchet MS', sans-serif;
}
.hash-btn:hover {
    background: linear-gradient(135deg,
        rgba(102, 126, 234, 0.8) 0%,
        rgba(240, 147, 251, 0.7) 50%,
        rgba(0, 242, 254, 0.75) 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}
.hash-btn:active {
    transform: translateY(0);
}
.hash-btn.generate-all {
    background: linear-gradient(135deg,
        rgba(0, 255, 100, 0.5) 0%,
        rgba(0, 242, 254, 0.5) 50%,
        rgba(102, 126, 234, 0.6) 100%);
}
.hash-btn.generate-all:hover {
    background: linear-gradient(135deg,
        rgba(0, 255, 100, 0.7) 0%,
        rgba(0, 242, 254, 0.7) 50%,
        rgba(102, 126, 234, 0.8) 100%);
}
.hash-btn.clear-btn {
    background: linear-gradient(135deg,
        rgba(245, 87, 108, 0.5) 0%,
        rgba(240, 147, 251, 0.4) 100%);
}
.hash-btn.clear-btn:hover {
    background: linear-gradient(135deg,
        rgba(245, 87, 108, 0.7) 0%,
        rgba(240, 147, 251, 0.6) 100%);
}
.result-block {
    margin-top: 12px;
}
.result-label {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    color: #00f2fe;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
    margin-bottom: 6px;
}
.result-value {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    padding: 12px 16px;
    color: #a0d0ff;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    word-break: break-all;
    min-height: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.5;
}
.result-value:hover {
    border-color: rgba(0, 242, 254, 0.6);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}
.result-value.copied {
    border-color: rgba(0, 255, 100, 0.8);
    box-shadow: 0 0 20px rgba(0, 255, 100, 0.3);
}
.copy-hint {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    margin-top: 4px;
    letter-spacing: 1px;
}
.copy-hint.copied-text {
    color: rgba(0, 255, 100, 0.8);
}
.hash-disclaimer {
    margin-top: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}
