* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background: #000;
    background-image: radial-gradient(circle at 50% -20%, #222, #000);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.container {
    background: rgba(33, 33, 33, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(85, 85, 85, 0.1);
    border-radius: 35px;
    padding: 40px;
    width: 100%;
    max-width: 440px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}
input[type="text"] {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    outline: none;
    transition: all 0.3s ease;
}

input[type="text"]:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}
button {
    width: 100%;
    padding: 16px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: scale(1.02);
    background: #f0f0f0;
}

button:disabled {
    background: #444;
    color: #888;
    cursor: not-allowed;
    transform: none;
}
#resultLink {
    margin-top: 15px;
    font-size: 14px;
}
.qr-actions {
    display: flex;
    justify-content: center;
    gap: 10px;             
    margin-top: 15px;
}

.qr-btn {
    display: inline-flex;   
    align-items: center;      
    justify-content: center;  
    gap: 8px;       
    color: #fff;
    font-size: 14px;
    padding: 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}
.qr-btn svg {
    width: 18px;                
    height: 18px;
    display: block;            
}
.qr-btn.download {
    background: #333;
}
.qr-btn.share {
    background: #555;
}

.qr-btn:hover {
    opacity: 0.85;
}
#resultLink a {
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#resultLink a:hover {
    opacity: 1;
}
.stats-link {
    display: inline-block;
    margin-top: 25px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.stats-link:hover {
    color: #fff;
}
.t-left{
    text-align: left;
}