
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    background: #0f0c29;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* Animated Background */
.area {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: linear-gradient(to left, #24243e, #302b63, #0f0c29);
    z-index: -1;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    border-radius: 50%;
}

/* Main Container Styles */
.main-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    position: relative;
}

.logo-animation {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.logo-animation i {
    font-size: 2.5rem;
    color: white;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    color: #b8c6db;
    font-size: 1.1rem;
}

/* QR Section Styles */
.qr-section {
    margin: 2rem 0;
}

.qr-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
}

.qr-frame {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
    animation: scan 2s linear infinite;
}

/* Input Section Styles */
.input-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #b8c6db;
}

input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
}

/* Button Styles */
.button-container {
    display: grid;
    
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

button {
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.generate-btn {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
}

.download-btn {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #0f0c29;
    display: none;
    align-items: center;
    gap: 0.5rem;
    animation: slideIn 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes scan {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        padding: 1.5rem;
        width: 95%;
    }

    h1 {
        font-size: 2rem;
    }

    .button-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 1rem;
    }

    .logo-container {
        width: 60px;
        height: 60px;
    }

    .logo-animation i {
        font-size: 2rem;
    }

    h1 {
        font-size: 1.75rem;
    }
}

/* .footer {
text-align: center;
padding: 1.5rem 0;
margin-top: 2rem;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 12px;
}

.footer-link {
color: white;
text-decoration: none;
font-size: 1.1rem;
transition: all 0.3s ease;
}

.footer-link:hover {
color: #ff8e53;
}

.footer .fa-heart {
color: #ff6b6b;
margin: 0 0.5rem;
animation: heartBeat 1.5s ease infinite;
}

@keyframes heartBeat {
0% { transform: scale(1); }
50% { transform: scale(1.2); }
100% { transform: scale(1); }
}

@media (max-width: 480px) {
.footer {
padding: 1rem 0;
margin-top: 1.5rem;
}

.footer-link {
font-size: 1rem;
}
} */

body {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
padding: 2rem 0;
}

.main-container {
margin-bottom: 2rem;
}

.footer {
text-align: center;
padding: 1.5rem 0;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 12px;
width: 90%;
max-width: 500px;
}

.footer-link {
color: white;
text-decoration: none;
font-size: 1.1rem;
transition: all 0.3s ease;
}

.footer-link:hover {
color: #ff8e53;
}

.footer .fa-heart {
color: #ff6b6b;
margin: 0 0.5rem;
animation: heartBeat 1.5s ease infinite;
}

@keyframes heartBeat {
0% { transform: scale(1); }
50% { transform: scale(1.2); }
100% { transform: scale(1); }
}

@media (max-width: 480px) {
.footer {
padding: 1rem 0;
width: 95%;
}

.footer-link {
font-size: 1rem;
}
}

