/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #151119;
}
::-webkit-scrollbar-thumb {
    background: #251e2b;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #fca311;
}

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

/* Wild Tokyo Skewed Button Style */
.btn-skew {
    transform: skewX(-20deg);
}
.btn-skew-content {
    transform: skewX(20deg);
    display: inline-block;
}

/* Gradients */
.bg-gold-gradient {
    background: linear-gradient(90deg, #fca311 0%, #ffc857 100%);
}

.nav-item:hover {
    color: #ffc857;
}

/* Collapsed State Styles */
@media (min-width: 1024px) {
    #sidebar.collapsed .nav-text {
        display: none;
    }
    #sidebar.collapsed .nav-item {
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
    }
    #sidebar.collapsed .logo-text {
        display: none;
    }
    #sidebar.collapsed .mobile-auth-buttons {
        display: none;
    }
}

/* SEO Content Block */
.seo-content {
    background-color: #1c1621;
    padding: 2.5rem;
    border-radius: 1rem;
    color: #9ca3af;
    line-height: 1.8;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.05);
}
.seo-content h1 {
    font-size: 2.2rem;
    color: white;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.seo-content h2 {
    font-size: 1.6rem;
    color: white;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #fca311;
    padding-left: 1rem;
}
.seo-content h3 {
    font-size: 1.3rem;
    color: #ffc857;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.seo-content p {
    margin-bottom: 1.2rem;
}
.seo-content ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}
.seo-content ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
}
.seo-content ul li::before {
    content: '➤';
    color: #fca311;
    position: absolute;
    left: 0;
    font-weight: bold;
}
.seo-content ol {
    counter-reset: item;
    margin-bottom: 1.5rem;
    padding-left: 0;
}
.seo-content ol li {
    display: block;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}
.seo-content ol li::before {
    content: counter(item) ".";
    counter-increment: item;
    color: #fca311;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1em;
}
.seo-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.seo-content th {
    background-color: #251e2b;
    color: #ffc857;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.seo-content td {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #e2e8f0;
    font-size: 0.9rem;
}
.seo-content tr:last-child td {
    border-bottom: none;
}
.seo-content tr:hover td {
    background-color: rgba(255,255,255,0.02);
}
.seo-content strong {
    color: white;
    font-weight: 600;
}

@media (max-width: 768px) {
    .seo-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .seo-content {
        padding: 1.5rem;
    }
    .seo-content h1 {
        font-size: 1.6rem;
    }
}
