
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background: radial-gradient(circle, #0A1F3D, #1E467B);
    color: white;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: #8C52FF;
    text-align: center;
    margin: 20px 0;
}

p {
    font-family: 'Lato', sans-serif;
    color: #E0E0E0;
    line-height: 1.6;
    letter-spacing: 0.5px;
    padding: 0 20px;
}

.section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section:nth-child(odd) {
    background: linear-gradient(to bottom right, #0A1F3D, #1E467B);
}

.section:nth-child(even) {
    background: linear-gradient(to top left, #0A1F3D, #1E467B);
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 5s infinite ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-20px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.5; }
}

@media (max-width: 768px) {
    .section {
        padding: 20px;
    }

    h1 {
        font-size: 24px;
    }
}

button {
    background-color: #FF9900;
    color: white;
    border: none;
    padding: 10px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #00BFFF;
}

.navbar {
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100%;
    background-color: #1E467B;
    transition: right 0.3s ease;
    z-index: 1000;
}

.navbar.active {
    right: 0;
}

.menu-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

.code-block {
    background: #1E467B;
    color: white;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 800px;
    overflow-x: auto;
}

code {
    font-family: 'Courier New', Courier, monospace;
    color: #8C52FF;
}

img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.footer {
    background: linear-gradient(to bottom, #0A1F3D, black);
    padding: 20px;
    text-align: center;
}

/* Aurora Background Animation */
.aurora {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(255, 87, 34), transparent);
    animation: aurora-move 15s linear infinite;
    z-index: -1;
}

@keyframes aurora-move {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.title-container {
    position: relative;
    text-align: center;
    margin-top: 50px;
}

.title-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 5px;
    background: linear-gradient(to right, #8C52FF, #00BFFF);
}

