body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #2d2d2d;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    overflow-y: auto;
}

h1 {
    color: #66b3ff;
    margin-bottom: 20px;
}

h2 {
    color: #99ccff;
    margin-top: 20px;
}

p, ul {
    line-height: 1.6;
    color: #e0e0e0;
}

ul {
    padding-left: 20px;
}

footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #404040;
    text-align: center;
}

footer p {
    color: #66b3ff;
}.dropdown {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.dropbtn {
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropbtn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 15px;
    margin-top: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dropdown-content a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

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