/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-track {
    background: #111425; 
}
::-webkit-scrollbar-thumb {
    background: #2d3748; 
    border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
    background: #fff200; 
}

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

/* SEO Content Styling */
.seo-content {
    background-color: #111425;
    padding: 2.5rem;
    border-radius: 1rem;
    color: #a0aec0;
    line-height: 1.8;
    font-size: 0.95rem;
    border: 1px solid #2d3748;
}
.seo-content h1 {
    font-size: 2rem;
    color: white;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}
.seo-content h2 {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.seo-content h2::before {
    content: '';
    display: block;
    width: 6px;
    height: 24px;
    background-color: #fff200;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 242, 0, 0.5);
}
.seo-content p {
    margin-bottom: 1.5rem;
}

/* Styled Unordered List (Checkmarks) */
.seo-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}
.seo-content ul li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    color: #e2e8f0;
}
.seo-content ul li::before {
    content: '\f00c'; /* FontAwesome Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #000;
    background-color: #fff200;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    box-shadow: 0 0 8px rgba(255, 242, 0, 0.3);
}
.seo-content ul li strong {
    color: #fff200;
    font-weight: 600;
}

/* Styled Ordered List (Badges) */
.seo-content ol {
    list-style: none;
    counter-reset: spin-counter;
    padding-left: 0;
    margin-bottom: 2rem;
}
.seo-content ol li {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 1.2rem;
    color: #e2e8f0;
}
.seo-content ol li::before {
    counter-increment: spin-counter;
    content: counter(spin-counter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 2.2rem;
    height: 2.2rem;
    background-color: #1a1d2e;
    color: #fff200;
    border: 2px solid #fff200;
    font-weight: 800;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    box-shadow: inset 0 0 10px rgba(255, 242, 0, 0.1);
}
.seo-content ol li strong {
    color: white;
}

/* Styled Table */
.seo-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    background-color: #1a1d2e;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2d3748;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.seo-content th {
    background-color: #06070d;
    color: #fff200;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 1.2rem;
    text-align: left;
    border-bottom: 2px solid #2d3748;
}
.seo-content td {
    padding: 1.2rem;
    border-bottom: 1px solid #2d3748;
    color: #ffffff;
    vertical-align: top;
}
.seo-content tr:last-child td {
    border-bottom: none;
}
.seo-content tr:hover td {
    background-color: rgba(255, 255, 255, 0.03);
}

/* Mobile Specific */
@media (max-width: 1024px) {
    #sidebar {
        width: 280px;
    }
    .seo-content {
        padding: 1.5rem;
    }
    .seo-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Spinmama Logo Font Emulation */
.logo-font {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
}
.logo-box {
    border: 2px solid #25d366; 
    padding: 2px 6px;
    border-radius: 4px;
    transform: skew(-5deg);
    display: inline-block;
}

/* SVG Filters for icons */
.icon-shadow {
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.5));
}
