body {
    padding-top: 60px;
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(120deg, #3a1c71, #5f2c82, #8e44ad);
}

html, body {
    overflow-x: hidden;
    overscroll-behavior-y: auto;
}

.staticbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 6px 32px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(2px);
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(2px);
    position: fixed;      /* keeps it stuck */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.navbar .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.site-title {
    color: violet;
    font-size: clamp(20px, 3vw, 36px);
    font-weight: bold;
    text-decoration: none;
}

.text-section {
    padding: 16px 32px;
    color: white;
    font-size: clamp(16px, 2vw, 26px);
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.text-section h2 {
    font-size: clamp(24px, 3vw, 32px);
    color: white;
}

.text-section .divider {
    width: 240px;
    height: 4px;
    background-color: #8e44ad;
    margin: 12px auto 24px;
    border-radius: 2px;
}

.text-section p {
    padding: 8px 16px;
    color: lightgray;
    font-size: clamp(14px, 1.5vw, 24px);
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.divider {
    background-color: violet;
    margin: 12px 0;
    border-radius: 2px;
    opacity: 50%;
}

.page-container {
    max-width: 95vw;
    margin: 0 auto;
    padding: 10px 20px;
    box-sizing: border-box;
}

.page-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-card {
    background: rgba(58,28,113,0.8);
    flex: 1 1 45%;        /* grow/shrink, roughly half width */
    max-width: 500px;     /* prevent it from getting too wide */
    text-align: center;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: white;
    transition: transform 0.2s ease;
}

.page-card img {
    max-width: 120px;
    margin-bottom: 16px;
    border-radius: 8px;
}

.page-card h3 {
    margin: 8px 0;
    font-size: 1.5rem;
}

.page-card p {
    font-size: 1rem;
}

.page-card:hover {
    transform: translateY(-6px);
    background: rgba(104, 58, 147, 0.85);
}

@media (max-width: 768px) {
    .page-card {
        flex: 1 1 100%;
    }
}

.icons-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
    flex-wrap: wrap;
}

.icons-section h2 {
    font-size: clamp(24px, 3vw, 32px);
    color: white;
}

.icons-section .divider {
    width: 240px;
    height: 4px;
    background-color: #8e44ad;
    margin: 12px auto 24px;
    border-radius: 2px;
}

.icons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, filter 0.2s ease;
    cursor: default;
}

.icon img {
    width: 45px;
    height: 45px;
    background: rgba(142, 68, 173, 0.2);
    padding: 10px;
    border-radius: 50%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon p {
    margin: 0;
    color: white;
    font-size: 0.9rem;
}

.icon:hover img {
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(142,68,173,0.7);
}