.glass-container {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 20px;
    margin-top: 20px;
}

.glass-button {
    background: linear-gradient(45deg, #aaffaa, #ffffaa);
    border: none;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.glass-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 170, 0.7);
}

.explore-pages ul li a {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333;
}

.explore-pages ul li a:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

body {
    background: linear-gradient(45deg, #003300, #333300);
    color: white;
}

.header, .footer {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.page-navigation {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}