:root {
    --bg-dark: #050505;
    --accent-red: #ff0000;
    --accent-blue: #007aff;
    --glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background: var(--bg-dark);
    color: #fff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow: hidden;
}

.app-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    animation: slideUp 0.6s forwards;
}

.view.active { display: flex; }

.glass-form {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    padding: 2rem;
    border-radius: 24px;
    width: 100%;
}

.glitch-text {
    font-family: 'Creepster', cursive;
    font-size: 3.5rem;
    color: var(--accent-red);
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.primary-btn {
    background: var(--accent-blue);
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.3);
}

.primary-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 122, 255, 0.5); }

.danger-btn {
    width: 100%;
    background: var(--accent-red);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    cursor: pointer;
    font-weight: bold;
}

.footer {
    position: fixed;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    opacity: 0.5;
    font-size: 0.8rem;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}.main-logo {
    width: 180px; /* आप इसे कम या ज्यादा कर सकते हैं */
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.6)); /* लाल ग्लो इफ़ेक्ट */
    margin-bottom: 20px;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}