* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    /* standard */
    -webkit-user-select: none;
    /* safari */
    -moz-user-select: none;
    /* firefox */
    -ms-user-select: none;
    /* IE/Edge */
}

:root {
    --font-regular: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-condensed: 'Roboto Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

body {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: transparent;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding: 20px; */
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background-color: #495057;
}

.message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: slideIn 0.5s ease;
}

.bomb-image {
    max-width: 250px;


}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.form-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #e9ecef;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group label i {
    color: #667eea;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.login-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.login-button:active {
    transform: translateY(0);
}

.form-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    color: #6c757d;
    font-size: 14px;
}

.form-footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-footer i {
    color: #ffc107;
}

.telegram-login {
    margin: 20px 0;
    text-align: center;
}

.telegram-login iframe {
    height: 50px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px !important;
    color: white !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}


/* Thank you EJS */
.thank-you-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    text-align: center;
}

.verified-badge {
    background: #0088cc;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.user-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 20px auto;
    display: block;
    border: 3px solid #667eea;
}

.user-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: left;
}

@media (max-width: 480px) {
    .login-container {
        padding: 25px;
    }

    .login-container h1 {
        font-size: 24px;
    }

    .form-container {
        padding: 20px;
    }
}