/* HTML Sitemap Page Styles */

.sitemap-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding-top: 80px;
}

/* Hero */
.sitemap-hero {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    padding: 3.5rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sitemap-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sitemap-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Content */
.sitemap-content {
    padding: 3rem 0 4rem;
}

.sitemap-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Sections */
.sitemap-section {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sitemap-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sitemap-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #f59e0b;
    margin-bottom: 1.25rem;
}

/* Sub-sections (for game types) */
.sitemap-subsection {
    margin-bottom: 1.5rem;
}

.sitemap-subsection:last-child {
    margin-bottom: 0;
}

.sitemap-subsection h3 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    padding-left: 0.25rem;
}

/* Link Lists */
.sitemap-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-links--2col {
    columns: 2;
    column-gap: 2rem;
}

.sitemap-links--3col {
    columns: 3;
    column-gap: 2rem;
}

.sitemap-links li {
    break-inside: avoid;
    padding: 0;
    margin: 0;
}

.sitemap-links a {
    display: block;
    padding: 0.4rem 0.25rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.15s ease;
}

.sitemap-links a:hover {
    color: #f59e0b;
}

/* Responsive */
@media (max-width: 1024px) {
    .sitemap-links--3col {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .sitemap-wrapper {
        padding-top: 60px;
    }

    .sitemap-hero {
        padding: 2.5rem 0;
    }

    .sitemap-hero h1 {
        font-size: 2.25rem;
    }

    .sitemap-links--2col,
    .sitemap-links--3col {
        columns: 1;
    }

    .sitemap-content .container {
        padding: 0 0.75rem;
    }
}
