/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background: #121212; 
}
::-webkit-scrollbar-thumb {
    background: #27272a; 
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ffcc00; 
}

.sidebar-transition {
    transition: width 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* NEW Spinsy Header Button Style (Matches Image) */
.btn-spinsy {
    background-color: #333333;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.2) 2px,
        rgba(0, 0, 0, 0.2) 4px
    );
    border: 1px solid #444;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 4px 6px rgba(0, 0, 0, 0.3);
    color: #e0e0e0;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
    border-radius: 6px; 
    transition: all 0.2s ease;
}

.btn-spinsy:hover {
    background-color: #444;
    color: white;
    border-color: #555;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 4px 8px rgba(0, 0, 0, 0.4);
}

.btn-spinsy:active {
    transform: translateY(1px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

/* URUS Promo Card Styling */
.urus-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}
.urus-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 100%;
    height: 100%;
    background: url('https://cdn-icons-png.flaticon.com/512/3085/3085333.png') no-repeat right center;
    background-size: 60%;
    opacity: 0.8;
    pointer-events: none;
    filter: grayscale(100%) sepia(100%) hue-rotate(5deg) saturate(500%) contrast(0.8);
}

/* SEO Content Styling */
.seo-content {
    background-color: #121212;
    padding: 2.5rem;
    border-radius: 8px;
    color: #9ca3af;
    line-height: 1.8;
    font-size: 0.95rem;
    border: 1px solid #27272a;
}
.seo-content h1 {
    font-size: 2rem;
    color: white;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Kanit', sans-serif;
    text-transform: uppercase;
}
.seo-content h2 {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ffcc00;
    padding-left: 15px;
    display: block;
}

.seo-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}
.seo-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
}
.seo-content ul li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ffcc00;
    font-weight: bold;
}

.seo-content ol {
    list-style: none;
    counter-reset: spinsy-counter;
    padding-left: 0;
    margin-bottom: 2rem;
}
.seo-content ol li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
}
.seo-content ol li::before {
    counter-increment: spinsy-counter;
    content: counter(spinsy-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 1.8rem;
    height: 1.8rem;
    background: #ffcc00;
    color: #000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: #1f1f1f;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}
.seo-content th {
    background-color: #27272a;
    color: #ffcc00;
    padding: 15px;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-bottom: 2px solid #ffcc00;
}
.seo-content td {
    padding: 15px;
    border-bottom: 1px solid #333;
    color: white;
}
.seo-content tr:last-child td { border-bottom: none; }

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
