
/* Container Styles */
.container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: radial-gradient(circle at top, rgba(77, 14, 179, 0.1), rgba(26, 26, 26, 0.1));
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

/* Typography */
.container h1 {
    font-size: 2.5rem;
    color: #debaff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.container h2 {
    font-size: 1.5rem;
    color: #debaff;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(77, 14, 179, 0.3);
}

.container p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #e6e6e6;
}

/* Links */
.container a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.container a:hover {
    color: #debaff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .container h1 {
        font-size: 2rem;
    }

    .container h2 {
        font-size: 1.25rem;
    }
}

/* Animation */
.container {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}