body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #ffffff;
}
h1, h2, h3, .btn-text {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}
.neon-glow {
    box-shadow: 0 0 15px rgba(212, 244, 66, 0.4);
}
.gradient-bg {
    background: linear-gradient(135deg, #2a3d06 0%, #1a2505 100%);
    border: 1px solid #3f5508;
}
/* Gradient overlay for the hero section */
.hero-overlay {
    background: linear-gradient(90deg, #121212 40%, rgba(18,18,18,0.7) 100%);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #121212;
}
::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D4F442; 
}

/* Logo Strikethrough Effect */
.spin-line {
    position: relative;
    display: inline-block;
}
.spin-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    right: -5px;
    height: 2px;
    background-color: #ff0055;
    transform: translateY(-50%);
    z-index: 0;
}
/* SEO Content Block */
.seo-section {
    max-width: 80rem; /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: -2.5rem; /* -mt-10 */
    position: relative;
    z-index: 20;
    margin-bottom: 5rem; /* mb-20 */
}

@media (min-width: 640px) {
    .seo-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .seo-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.seo-card {
    background: linear-gradient(to bottom, #3a4d05, #222e03);
    border-radius: 1.5rem; /* rounded-3xl */
    padding: 2rem; /* p-8 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    border: 1px solid #4d6606;
}

@media (min-width: 768px) {
    .seo-card {
        padding: 3rem; /* md:p-12 */
    }
}

.seo-card h2 {
    font-size: 1.875rem; /* text-3xl */
    line-height: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem; /* mb-6 */
    font-family: 'Oswald', sans-serif; /* font-heading */
    letter-spacing: 0.025em; /* tracking-wide */
}

@media (min-width: 768px) {
    .seo-card h2 {
        font-size: 3rem; /* text-5xl */
        line-height: 1;
    }
}

.seo-card p {
    color: #e5e7eb; /* text-gray-200 */
    font-size: 0.875rem; /* text-sm */
    line-height: 1.625; /* leading-relaxed */
}

.seo-card p + p {
    margin-top: 1rem; /* space-y-4 */
}

@media (min-width: 768px) {
    .seo-card p {
        font-size: 1rem; /* text-base */
    }
}

.seo-card strong {
    color: #D4F442; /* text-samurai-green */
    font-weight: 700;
}

.trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem; /* gap-6 */
    margin-top: 2rem; /* mt-8 */
    padding-top: 2rem; /* pt-8 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-item {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* gap-2 */
}

/* Table Styles */
.seo-card table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    color: #e5e7eb;
    font-size: 0.875rem;
    display: block; /* Enable block formatting context for scrolling */
    overflow-x: auto; /* Allow horizontal scroll */
    white-space: nowrap; /* Prevent text wrapping to keep columns intact initially */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    border-radius: 0.5rem;
    border: 1px solid #4d6606;
}

@media (min-width: 768px) {
    .seo-card table {
        display: table; /* Revert to standard table behavior on desktop */
        white-space: normal;
        overflow-x: visible;
        font-size: 1rem;
    }
}

.seo-card th,
.seo-card td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-card th {
    background-color: rgba(0, 0, 0, 0.3);
    color: #D4F442; /* Samurai Green */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Oswald', sans-serif;
}

.seo-card tr:last-child td {
    border-bottom: none;
}

.seo-card tr:hover td {
    background-color: rgba(212, 244, 66, 0.05); /* Slight green tint on hover */
}

/* List Styles inside SEO Card */
.seo-card ul, .seo-card ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    color: #e5e7eb;
}

.seo-card ul {
    list-style-type: disc;
}

.seo-card ol {
    list-style-type: decimal;
}

.seo-card li {
    margin-bottom: 0.5rem;
    line-height: 1.625;
}

.seo-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}