body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: url('https://i.ibb.co/5xzWmSxn/20250224-094453.png') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    text-align: center;
    overflow: auto;
    animation: backgroundAnimation 10s infinite alternate;
}

/* Example animation definition */
@keyframes backgroundAnimation {
    0% {
        filter: brightness(1);
    }
    100% {
        filter: brightness(1.2);
    }
}

.container {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    width: 90%;
    max-width: 800px;
    animation: fadeIn 1.5s ease-in-out;
}

hr {
    border: 1px solid #ffffff;
    margin: 20px 0;
}

.profile-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 5px solid #4a90e2;
    animation: pulse 2s infinite;
}

.animated-text img {
    width: 100%;
    max-width: 400px;
    margin: 10px 0;
}

h1 {
    font-size: 2rem; /* Increased font size for better readability */
    font-weight: bold;
    color: #ffffff; /* White text for clear contrast */
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.8), 
                 0 0 20px rgba(155, 89, 182, 0.8); /* Soft glowing effect */
    text-align: center;
    margin-bottom: 10px;
}

h1backup {
    font-size: 2rem;
    background: linear-gradient(45deg, #4a90e2, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 1.5s infinite alternate;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.disabled {
    background: gray;
    cursor: not-allowed;
    pointer-events: none;
}
.btn { display: inline-block; padding: 10px 20px; font-size: 1rem; color: white; background: linear-gradient(45deg, #6a0dad, #1e90ff); border-radius: 10px; text-decoration: none; font-weight: bold; transition: all 0.3s ease-in-out; animation: livelyGradient 3s infinite alternate, pulse 2s infinite; border: none; cursor: pointer; text-align: center; }

@keyframes livelyGradient { 0% { background: linear-gradient(45deg, #6a0dad, #1e90ff); } 50% { background: linear-gradient(45deg, #8a2be2, #4169e1); } 100% { background: linear-gradient(45deg, #6a0dad, #1e90ff); } }
}

@keyframes gradientShift { 0% { background: linear-gradient(45deg, #6a11cb, #2575fc); } 100% { background: linear-gradient(45deg, #2575fc, #6a11cb); } }




..btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 15px rgba(106, 17, 203, 0.6);
}

.warning {
    font-size: 0.9rem;
    color: #ff4c4c;
    animation: shake 1s infinite;
}

pre {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    overflow-x: auto;
    font-family: monospace;
}
footer {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    bottom: 0;
    width: 100%;
    backdrop-filter: blur(5px);
}


/* Particle canvas */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

/* Background sliding animation */
@keyframes slideBg {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-10%); }
}
/* Animations */
@keyframes backgroundAnimation {
    from { filter: brightness(0.8); }
    to { filter: brightness(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes glow {
    from { text-shadow: 0 0 10px #4a90e2, 0 0 20px #9b59b6; }
    to { text-shadow: 0 0 20px #4a90e2, 0 0 30px #9b59b6; }
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-5px); }
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}
