* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #1f1c1c;
}

body {
    background-image: url('./assets/pictures/Top-7-Free-Password-Managers-for-iPhone-2024-13.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
}

/* Background overlay taake text saaf dikhe */
body::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.container {
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 600px;
}

h1 {
    font-size: clamp(1.2rem, 5vw, 2.5rem);
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

#pass1 {
    color: #26e8ff;
    word-break: break-all;
}

button {
    padding: 15px 30px;
    font-size: 16px;
    background-color: #26e8ff;
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(38, 232, 255, 0.3);
}

button:hover {
    background-color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(38, 232, 255, 0.5);
}

button:active {
    transform: scale(0.95);
}

/* Responsive adjustments for mobile */
@media (max-width: 480px) {
    h1 { font-size: 1.1rem; }
    button { width: 90%; padding: 12px; }
}