* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    background-color: #0c001f;
    overflow-x: hidden;
}
#particle-canvas {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    background: rgba(12, 0, 31, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.nav-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}
.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}
main {
    padding: 120px 20px 60px;
}
.info-container {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.page-title {
    text-align: center;
    margin-bottom: 40px;
}
.page-title h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
}
.page-title p {
    font-size: 1.1rem;
    color: #e0e0e0;
}
.info-section {
    margin-bottom: 50px;
}
.info-section:last-child {
    margin-bottom: 10px;
}
.info-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.info-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #d1d1d1;
    margin-bottom: 1em;
}
.info-section strong {
    color: #c084fc;
    font-weight: 700;
}
.card-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}
.info-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #e9d5ff;
}
.info-card p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.info-card small {
    font-size: 0.9rem;
    color: #b9bbbe;
}
.community-hub .hub-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}
.hub-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.hub-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}
.hub-icon {
    margin-bottom: 15px;
}
.hub-icon svg {
    width: 48px;
    height: 48px;
    color: #c084fc;
}
.hub-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.hub-card p {
    color: #d1d1d1;
    font-size: 0.9rem;
    line-height: 1.5;
}
.main-footer-bottom {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 40px;
}
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 70%; height: 100vh;
        background: rgba(20, 1, 46, 0.9);
        backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        gap: 30px; transition: right 0.4s ease-in-out;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.5rem; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .info-container { padding: 20px; }
    .page-title h1 { font-size: 2.5rem; }
}