/* General Styling */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    /* حركة انسيابية للخلفية */
    background: linear-gradient(135deg, #6DD5FA, #2980B9, #8E44AD);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

/* Animation for the background */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 90%;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Logo Styling */
.logo {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    /* توهج خفيف للشعار */
    animation: glow 2s ease-in-out infinite alternate;
}

/* Animation for the logo glow */
@keyframes glow {
    from {
        text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
    }
    to {
        text-shadow: 0 0 20px #FFD700, 0 0 30px #FFD700;
    }
}

/* Content Styling */
.content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.content p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 10px;
}

.content p:last-of-type {
    margin-bottom: 30px;
}

/* Footer Styling */
.footer-text {
    font-size: 0.9em;
    margin-top: 40px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container { padding: 30px 40px; }
    .logo { font-size: 2.5em; }
    .content h2 { font-size: 1.8em; }
    .content p { font-size: 1em; }
}

@media (max-width: 480px) {
    .container { padding: 20px 25px; }
    .logo { font-size: 2em; margin-bottom: 20px; }
    .content h2 { font-size: 1.5em; }
    .content p { font-size: 0.9em; }
}/* General Styling */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    /* حركة انسيابية للخلفية */
    background: linear-gradient(135deg, #6DD5FA, #2980B9, #8E44AD);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

/* Animation for the background */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 90%;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Logo Styling */
.logo {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    /* توهج خفيف للشعار */
    animation: glow 2s ease-in-out infinite alternate;
}

/* Animation for the logo glow */
@keyframes glow {
    from {
        text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
    }
    to {
        text-shadow: 0 0 20px #FFD700, 0 0 30px #FFD700;
    }
}

/* Content Styling */
.content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.content p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 10px;
}

.content p:last-of-type {
    margin-bottom: 30px;
}

/* Footer Styling */
.footer-text {
    font-size: 0.9em;
    margin-top: 40px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container { padding: 30px 40px; }
    .logo { font-size: 2.5em; }
    .content h2 { font-size: 1.8em; }
    .content p { font-size: 1em; }
}

@media (max-width: 480px) {
    .container { padding: 20px 25px; }
    .logo { font-size: 2em; margin-bottom: 20px; }
    .content h2 { font-size: 1.5em; }
    .content p { font-size: 0.9em; }
}