body {
            margin: 0;
            font-family: 'Arial', sans-serif;
            background: linear-gradient(45deg, #1e2a47, #5d6d7e, #2c3e50, #34495e);
            color: #fff;
            text-align: center;
            line-height: 1.6;
            background-size: 400% 400%;
            animation: gradientAnimation 15s ease infinite;
            overflow-x: hidden;
        }

        /* Enhanced Background Animation */
        @keyframes gradientAnimation {
            0% { background-position: 0% 50%; }
            25% { background-position: 50% 25%; }
            50% { background-position: 100% 50%; }
            75% { background-position: 50% 75%; }
            100% { background-position: 0% 50%; }
        }
        .content {
            margin-top: 100px;
            padding: 40px;
            text-align: left;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transform: translateY(30px);
            opacity: 0;
            animation: slideUp 1s ease-out forwards 0.3s;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        /* Top Bar with Enhanced Animation */
        .topbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            margin-bottom: 100em;
            background: rgba(20, 20, 20, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeIn 0.8s ease-out forwards;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
        }
        hr {
            border-color: rgb(146, 146, 146);
            color: rgb(146, 146, 146);
        }
        .logo {
            height: 40px;
            margin-right: 15px;
            animation: pulse 3s infinite;
        }
        ul {
            list-style-type: none;
            padding: 0;
        }
        .title {
            font-size: 22px;
            font-weight: bold;
            background: linear-gradient(45deg, #f39c12, #e74c3c);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: titleGlow 4s infinite;
        }
        input[type="file"]::file-selector-button, input[type="file"]::-webkit-file-upload-button {
            margin-right: 1em;
            padding: 0.5em 1em;
            background: #1abc9c;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s ease;
            color: white;
            font-family: Arial, sans-serif;
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        input[type="file"]::file-selector-button:hover, input[type="file"]::-webkit-file-upload-button:hover {
            background: #16a085;
        }
        input[type="text"], input[type="password"] {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 16px;
            border-color: rgb(82, 82, 82);
            transition: border-color 0.3s ease;
        }
        input[type="text"]:focus, input[type="password"]:focus {
            border-color: #1abc9c;
            outline: none;
            box-shadow: 0 0 5px rgba(26, 188, 156, 0.5);
        }
        button {
            background: rgb(45, 212, 12);
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        button:hover {
            background: rgb(13, 150, 13);
            transform: scale(1.05);
        }
        /* Content Section with Enhancements */
        .content {
            margin-top: 100px;
            padding: 40px;
            text-align: left;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transform: translateY(30px);
            opacity: 0;
            animation: slideUp 1s ease-out forwards 0.3s;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        p {
            font-family: Arial, sans-serif;
            color: whitesmoke;
        }

        .aibtn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .aibtn:hover {
            background-color: #2980b9;
            transform: scale(1.05);
        }
        /* Particles Background */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        a {
            text-decoration: underline;
            color: #2980b9;
            font-family: sans-serif;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1abc9c;
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .content {
                padding: 20px;
                margin-top: 80px;
            }

            .title {
                font-size: 18px;
            }

            h2 {
                font-size: 24px;
            }

            h3 {
                font-size: 18px;
            }

            p {
                font-size: 16px;
            }

            .scroll-indicator {
                display: none;
            }
        }
        @keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes titleGlow {
  0%, 100% { text-shadow: 0 0 5px rgba(255,255,255,0.5); }
  50%      { text-shadow: 0 0 20px rgba(255,255,255,1); }
}
