/* Base Styling */
.smap-body {
    background: var(--smap-dark);
    color: #fff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: var(--smap-line-height-base);
    font-size: var(--smap-font-size-base);
    overflow-x: hidden;
}

/* Header Styles */
.smap-header {
    background: var(--smap-gradient-dark);
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.smap-glow-text {
    background: var(--smap-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

/* Floating Decorations */
.smap-floating-decoration {
    position: fixed;
    width: clamp(200px, 30vw, 300px);
    height: clamp(200px, 30vw, 300px);
    background: var(--smap-gradient-primary);
    filter: blur(150px);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.smap-decoration-1 { 
    top: 10%; 
    right: -50%; 
}

.smap-decoration-2 { 
    bottom: 10%; 
    left: -50%; 
}

/* Sitemap Sections */
.smap-section {
    background: rgba(26, 11, 46, 0.5);
    border: 1px solid rgba(154, 8, 215, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.smap-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Typography and Links */
.smap-section-title {
    color: var(--smap-purple-light);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.smap-list {
    list-style: none;
    padding-left: 0;
}

.smap-list > li {
    margin-bottom: 1rem;
}

.smap-page-link {
    color: var(--smap-purple-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.smap-page-link:hover {
    color: var(--smap-orange);
    transform: translateX(5px);
}

.smap-page-icon {
    margin-right: 0.5rem;
    display: inline-block;
}

.smap-sublist {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    position: relative;
}

.smap-sublist::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(154, 8, 215, 0.2);
}

.smap-sublist > li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.smap-sublist > li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: var(--smap-purple-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .smap-header {
        padding: 2rem 1rem;
    }

    .smap-floating-decoration {
        width: 200px;
        height: 200px;
    }

    .smap-decoration-1 { 
        top: 5%; 
        right: -70%; 
    }

    .smap-decoration-2 { 
        bottom: 5%; 
        left: -70%; 
    }

    .smap-section {
        padding: 1rem;
    }

    .smap-section-title {
        font-size: 1.25rem;
    }
}

/* Accessibility and Print Styles */
@media print {
    .smap-body {
        background: #fff;
        color: #000;
    }

    .smap-floating-decoration {
        display: none;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--smap-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--smap-gradient-primary);
    border-radius: 4px;
}