@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Moving gradient circles */
.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
}

.circle.one {
    width: 350px;
    height: 350px;
    background: #ff6b6b;
    animation: moveOne 40s infinite alternate ease-in-out;
}

.circle.two {
    width: 450px;
    height: 450px;
    background: #4facfe;
    animation: moveTwo 50s infinite alternate ease-in-out;
}

.circle.three {
    width: 300px;
    height: 300px;
    background: #43e97b;
    animation: moveThree 60s infinite alternate ease-in-out;
}

@keyframes moveOne {
    0%   { top: 5%; left: -10%; }
    50%  { top: 60%; left: 40%; }
    100% { top: 20%; left: 90%; }
}

@keyframes moveTwo {
    0%   { bottom: -20%; right: -10%; }
    50%  { bottom: 40%; right: 50%; }
    100% { bottom: 10%; right: 80%; }
}

@keyframes moveThree {
    0%   { bottom: 15%; left: 30%; }
    50%  { bottom: 70%; left: 10%; }
    100% { bottom: 20%; left: 60%; }
}

/* Glassmorphic card */
.card {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    padding: 3rem 4rem;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease;
}

.logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* ensures image stays inside */
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.7);
    animation: pulse 2s infinite;
    background-color: #cccccc;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* keeps aspect ratio, fills circle */
}

h1 {
    font-size: 2.2rem;
    margin: 0.5rem 0;
    background: linear-gradient(to right, #feca57, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info {
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 1.2rem;
    margin: 0.4rem;
    font-weight: 500;
    color: #f1f1f1;
    transition: transform 0.3s ease;
}

.tag:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.2);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 107, 107, 0.7); }
    50% { transform: scale(1.1); box-shadow: 0 0 40px rgba(255, 107, 107, 1); }
}