.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 4s ease-in-out infinite;
}

.glow-orb-1 {
    top: 80px;
    left: 40px;
    width: 384px;
    height: 384px;
    background: var(--cyan-glow);
}

.glow-orb-2 {
    top: 160px;
    right: 80px;
    width: 320px;
    height: 320px;
    background: var(--purple-glow);
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.main-content {
    position: relative;
    z-index: 10;
    margin-top: 4rem;
}

.top-header {
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.back-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-tree {
    width: 35px;
    height: 35px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--cyan-primary);
    letter-spacing: 1px;
}

.logo-text-sub {
    font-size: 11px;
    color: var(--cyan-primary);
    font-weight: 600;
}

.site-url {
    text-align: center;
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
}

.last-updated {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.content-card {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cyan-primary);
    margin: 2rem 0 1rem;
}

.section-title:first-child {
    margin-top: 0;
}

.content-text {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-list {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-list li {
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) {

    .bottom-nav {
        display: none;
    }

    .content-card {
        padding: 2.5rem;
    }
}
@media(max-width: 768px){
    .main-content {
        margin-top: 3rem;
    }
}