/* Default Theme */
:root {
    --rws-theme-bg: #f4f4f4;
    --rws-theme-accent: #333;
}

/* NFL Theme */
.theme-nfl {
    --rws-theme-bg: #013369; /* Navy */
    --rws-theme-accent: #d50a0a; /* Red */
}

/* NBA Theme */
.theme-nba {
    --rws-theme-bg: #1d428a; /* Blue */
    --rws-theme-accent: #c8102e; /* Red */
}

/* Dogs Theme */
.theme-dogs {
    --rws-theme-bg: #8B4513; /* SaddleBrown */
    --rws-theme-accent: #DAA520; /* GoldenRod */
}

/* Cars Theme */
.theme-cars {
    --rws-theme-bg: #2b2b2b; /* Dark Gray */
    --rws-theme-accent: #ff0000; /* Racing Red */
}

/* Boobs Theme */
.theme-boobs {
    --rws-theme-bg: #ffe4e1; /* MistyRose */
    --rws-theme-accent: #ff69b4; /* HotPink */
}

/* Apply variables to body (adjust selectors based on actual theme structure) */
body[class*="theme-"] {
    background-color: var(--rws-theme-bg) !important;
}

body[class*="theme-"] a, 
body[class*="theme-"] .accent-text {
    color: var(--rws-theme-accent) !important;
}
