body { 
    background-color: #0b0b13; 
    color: white; 
    -webkit-tap-highlight-color: transparent; 
}

/* Hide Scrollbar but keep functionality */
.no-scrollbar::-webkit-scrollbar { 
    display: none; 
}
.no-scrollbar { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

/* Netflix-style Horizontal Scroll */
.scrolling-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
}
.scrolling-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

/* Holographic Card Effect */
.holo-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Safe Areas */
.pt-safe { 
    padding-top: env(safe-area-inset-top); 
}
.pb-safe { 
    padding-bottom: env(safe-area-inset-bottom); 
}

/* SEO Rich Content */
.seo-content {
    max-width: none;
}

.seo-content h1 {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.seo-content h2 {
    font-size: 1.125rem;
    font-weight: 900;
    color: white;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.seo-content h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.seo-content p {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.seo-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.seo-content ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.seo-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.seo-content strong {
    font-weight: 700;
    color: white;
}

.seo-content .seo-disclaimer {
    font-size: 0.625rem;
    color: #6b7280;
    font-style: italic;
}

/* SEO Content Tables */
.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.75rem;
    color: #9ca3af;
    background-color: rgba(22, 22, 36, 0.5);
    border-radius: 0.5rem;
    overflow: hidden;
}

.seo-content table thead {
    background-color: rgba(76, 29, 149, 0.3);
}

.seo-content table th {
    padding: 0.75rem;
    text-align: left;
    font-weight: 700;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-content table td {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.5;
}

.seo-content table tbody tr:last-child td {
    border-bottom: none;
}

.seo-content table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.seo-content table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}

/* SEO Content Figures and Divs */
.seo-content figure {
    margin: 1rem 0;
}

.seo-content div {
    margin: 0.5rem 0;
}



