/*
Theme Name: DownloadThumbnail
Theme URI: https://downloadthumbnailfromyoutube.com
Author: DownloadThumbnail
Version: 1.0
Description: Custom dark theme for YouTube thumbnail downloader
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: downloadthumbnail
*/

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;1,9..40,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root,
[data-theme="dark"] {
  --bg: #0A0A0A;
  --bg-card: #141414;
  --bg-input: #1a1a1a;
  --border: #222;
  --border-hover: #444;
  --text: #F0F0F0;
  --text-muted: #888;
  --text-dim: #555;
  --text-faint: #444;
  --white: #ffffff;
  --red: #FF3B30;
  --red-bg: rgba(255,59,48,0.12);
  --red-border: rgba(255,59,48,0.3);
  --shadow: rgba(0,0,0,0.3);

  /* Font scale */
  --text-xs: 0.72rem;
  --text-sm: 0.82rem;
  --text-base: 0.92rem;
  --text-md: 1rem;
  --text-lg: 1.15rem;
  --text-xl: 1.35rem;
  --text-2xl: 1.6rem;
  --text-3xl: 2rem;
  --text-4xl: clamp(2rem, 5vw, 3.2rem);

  /* Spacing system */
  --space-xs: 12px;
  --space-sm: 20px;
  --space-md: 32px;
  --space-lg: 48px;
  --space-xl: 72px;
}

[data-theme="light"] {
  --bg: #f8f8f8;
  --bg-card: #ffffff;
  --bg-input: #f0f0f0;
  --border: #e0e0e0;
  --border-hover: #bbb;
  --text: #111111;
  --text-muted: #555555;
  --text-dim: #777777;
  --text-faint: #999999;
  --white: #111111;
  --red: #e02d22;
  --red-bg: rgba(224,45,34,0.08);
  --red-border: rgba(224,45,34,0.25);
  --shadow: rgba(0,0,0,0.1);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-md);
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.25s ease,
              color 0.25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Transitions for smooth theme mode shift */
.card, .tool-box, .step-card, 
.feature-card, .faq-item,
.policy-section, .toc-box,
.thumb-card, .related-link,
.notice-card, nav, footer, .site-header {
  transition: background-color 0.25s ease,
              border-color 0.25s ease,
              color 0.25s ease;
}

/* Typography Choices */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

h1 {
  font-weight: 800;
  font-size: var(--text-4xl);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h2 {
  font-weight: 700;
  font-size: var(--text-3xl);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h3 {
  font-weight: 700;
  font-size: var(--text-2xl);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

h4 {
  font-weight: 600;
  font-size: var(--text-xl);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: var(--text-lg);
  line-height: 1.3;
}

h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 1.3;
}

a {
    color: var(--red);
    text-decoration: none;
    transition: color 0.25s ease-in-out;
}

a:hover, a:focus {
    color: var(--red-border);
    outline: none;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.8;
}

/* Muted Text utility */
.muted-text,
.text-muted,
.entry-meta,
.wp-block-latest-posts__post-date {
    color: var(--text-muted) !important;
    font-family: 'DM Sans', sans-serif;
    font-size: var(--text-sm);
}

/* Base Inputs & Buttons */
input, select, textarea {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: var(--text-md);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    width: 100%;
    line-height: 1.2;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-bg);
}

button, .button, input[type="submit"] {
    background-color: var(--red);
    color: #FFFFFF;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: var(--text-md);
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    transition: background-color 0.2s ease, transform 0.1s ease, opacity 0.2s;
}

button:hover, .button:hover, input[type="submit"]:hover {
    opacity: 0.88;
}

button:active, .button:active, input[type="submit"]:active {
    transform: scale(0.97);
}

/* Sticky Dark Header with Glassmorphism */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(34, 34, 34, 0.5);
    padding: 1rem 2rem;
}

.site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title {
    font-family: 'Syne', sans-serif;
    font-size: var(--text-2xl);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.site-title a {
    color: var(--text);
}

.site-title a:hover {
    color: var(--red);
}

/* Main Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.main-navigation a {
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: var(--text-sm);
    position: relative;
    padding: 0.25rem 0;
    letter-spacing: 0.01em;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--red);
    transition: width 0.25s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

.main-navigation a:hover {
    color: var(--red);
}

/* Active Menu Item */
.main-navigation .current-menu-item > a {
    color: var(--red);
}
.main-navigation .current-menu-item > a::after {
    width: 100%;
}

/* Main Page Container padding for fixed header */
.site-content {
    padding-top: 100px;
    padding-bottom: var(--space-lg);
    min-height: calc(100vh - 150px);
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Modern Card Layout */
.card,
.wp-block-post,
.post-card,
.youtube-downloader-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
}

/* Hero Section */
.hero-section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

/* Card Depth and Highlight system */
.card, .tool-box, .step-card, 
.feature-card, .faq-item,
.policy-section, .toc-box,
.thumb-card, .related-link {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.tool-box::before,
.step-card::before,
.notice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 59, 48, 0.4),
    transparent
  );
}

.related-link,
.thumb-card,
.faq-item,
.feature-card {
  transition: border-color 0.2s ease,
              transform 0.15s ease,
              background-color 0.25s ease,
              color 0.25s ease;
}
.related-link:hover,
.thumb-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

/* Button System overrides */
.btn-primary, .btn-get, .btn-dl {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s, transform 0.1s;
}
.btn-primary:hover, .btn-get:hover {
  opacity: 0.88;
}
.btn-primary:active, .btn-get:active {
  transform: scale(0.97);
}

.btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

/* Consitent Vertical rhythm & sections */
.section {
  margin-bottom: var(--space-xl);
  padding: 0 var(--space-sm);
}

.section + .section {
  padding-top: 0;
}

/* Reading time, badges etc. */
.reading-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: var(--text-xs);
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.6;
}
.reading-time::before {
  content: '◷';
  color: var(--red);
}

.category-badge {
  display: inline-block;
  background: var(--red-bg);
  color: var(--red);
  border: 1px solid var(--red-border);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.step-num::before {
  content: 'STEP ';
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #444;
}

/* Focus and inputs */
*:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection Color */
::selection {
  background: var(--red);
  color: #fff;
}
::-moz-selection {
  background: var(--red);
  color: #fff;
}

/* Post content number counter overrides */
.post-content {
  counter-reset: h2counter;
}
.post-content h2 {
  counter-increment: h2counter;
}
.post-content h2::before {
  content: counter(h2counter, decimal-leading-zero);
  font-size: 0.7rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
  font-family: 'JetBrains Mono', monospace;
}

/* YouTube Thumbnail Downloader UI Custom Styles */
.downloader-container {
    max-width: 720px;
    margin: var(--space-xl) auto;
    text-align: center;
}

.input-group {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.input-group input {
    flex-grow: 1;
}

/* Thumbnail Grid & Display */
.thumbnail-preview-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
}

.thumbnail-image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: var(--bg);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.thumbnail-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-info {
    padding: 1.5rem;
    text-align: left;
}

.thumbnail-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg);
    border-top: 1px solid var(--border);
}

/* Footer Section */
.site-footer {
    background-color: var(--bg);
    border-top: 1px solid var(--border);
    padding: var(--space-lg) 0;
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.footer-nav {
    margin-bottom: 1.5rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--text-muted);
}

.footer-nav a:hover {
    color: var(--red);
}

/* Gutenberg / WordPress Core Block Adjustments */
.wp-block-columns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.wp-block-column {
    flex-grow: 1;
    flex-basis: calc(50% - 1.5rem);
    min-width: 280px;
}

/* Light theme overrides */
[data-theme="light"] .site-header {
  background-color: rgba(248, 248, 248, 0.85);
  border-bottom: 1px solid var(--border);
}

[data-theme="light"] nav {
  background: rgba(248,248,248,0.95);
  box-shadow: 0 1px 0 var(--border);
}

[data-theme="light"] .badge,
[data-theme="light"] .page-tag {
  background: var(--red-bg);
  border-color: var(--red-border);
}

[data-theme="light"] .url-input {
  background: var(--bg-input);
  border-color: var(--border);
  color: var(--text);
}

[data-theme="light"] .url-input::placeholder {
  color: #aaa;
}

[data-theme="light"] .hero-tag {
  background: var(--bg-input);
  border-color: var(--border);
  color: var(--text-dim);
}

[data-theme="light"] .toc-box {
  background: var(--bg-card);
  border-color: var(--border);
}

[data-theme="light"] .post-content h2 {
  border-bottom-color: var(--red);
  color: var(--text);
}

[data-theme="light"] .post-content h3 {
  border-left-color: var(--red);
  color: var(--text);
}

[data-theme="light"] .quality-table th {
  background: var(--bg-input);
}

[data-theme="light"] code {
  background: var(--bg-input);
  color: var(--red);
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-sm);
}

[data-theme="light"] blockquote {
  background: var(--bg-input);
}

[data-theme="light"] footer,
[data-theme="light"] .site-footer {
  background: var(--bg-card);
  border-top-color: var(--border);
}

[data-theme="light"] .logo span,
[data-theme="light"] .site-logo span {
  color: var(--red);
}

/* Theme Toggle Button CSS */
.theme-toggle {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 12px;
  cursor: pointer;
  font-size: var(--text-md);
  transition: border-color 0.2s, 
              background 0.2s;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle:hover {
  border-color: var(--border-hover);
}
.toggle-icon {
  display: block;
  line-height: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        font-size: var(--text-sm);
    }

    .site-header {
        padding: 1rem;
    }

    .site-header-inner {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .main-navigation ul {
        gap: 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-content {
        padding-top: 140px;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group button,
    .input-group input {
        width: 100%;
    }

    .card,
    .wp-block-post,
    .post-card {
        padding: 1.5rem;
    }
}

/* Mobile Typography & Overrides */
@media (max-width: 520px) {
  h1 { letter-spacing: -0.02em; }
  
  .post-content h2 {
    font-size: 1.2rem;
  }
  .post-content h3 {
    font-size: 1rem;
  }
  .post-content p {
    font-size: 0.9rem;
    line-height: 1.75;
  }
  
  .section {
    padding: 0 16px;
    margin-bottom: var(--space-lg);
  }
}

/* Mobile Breakpoint 480px section overrides */
@media (max-width: 480px) {
  .section {
    padding: 32px 16px;
  }

  .container {
    padding: 0 16px;
    width: 100%;
  }
}

[data-theme="light"] body {
  background: #f5f5f5;
  color: #111111;
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4 {
  color: #0a0a0a;
}

[data-theme="light"] p {
  color: #333333;
}

[data-theme="light"] .hero-sub,
[data-theme="light"] .page-header p,
[data-theme="light"] .post-content p,
[data-theme="light"] .policy-section p,
[data-theme="light"] .seo-article p {
  color: #444444;
}

[data-theme="light"] .text-muted,
[data-theme="light"] [style*="color: #888"],
[data-theme="light"] [style*="color:#888"] {
  color: #555555 !important;
}

[data-theme="light"] nav {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #e0e0e0;
}

[data-theme="light"] .logo {
  color: #0a0a0a;
}

[data-theme="light"] .nav-links a {
  color: #555555;
}

[data-theme="light"] .nav-links a:hover {
  color: #000000;
}

[data-theme="light"] .tool-box {
  background: #ffffff;
  border-color: #e0e0e0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

[data-theme="light"] .url-input {
  background: #f0f0f0;
  border-color: #ddd;
  color: #111111;
}

[data-theme="light"] .url-input::placeholder {
  color: #999999;
}

[data-theme="light"] .tool-hint {
  color: #999999;
}

[data-theme="light"] .step-card {
  background: #ffffff;
  border-color: #e0e0e0;
}

[data-theme="light"] .step-card p {
  color: #555555;
}

[data-theme="light"] .feature-card {
  background: #ffffff;
  border-color: #e0e0e0;
}

[data-theme="light"] .feature-card h3 {
  color: #111111;
}

[data-theme="light"] .feature-card p {
  color: #666666;
}

[data-theme="light"] .faq-item {
  background: #ffffff;
  border-color: #e0e0e0;
}

[data-theme="light"] .faq-q {
  color: #111111;
}

[data-theme="light"] .faq-a {
  color: #555555;
  border-top-color: #e0e0e0;
}

[data-theme="light"] .hero-tag {
  background: #eeeeee;
  border-color: #dddddd;
  color: #666666;
}

[data-theme="light"] .badge,
[data-theme="light"] .page-tag {
  background: rgba(224,45,34,0.08);
  color: #e02d22;
  border-color: rgba(224,45,34,0.2);
}

[data-theme="light"] .quality-table th {
  background: #f0f0f0;
  color: #666666;
  border-bottom-color: #e0e0e0;
}

[data-theme="light"] .quality-table td {
  color: #333333;
  border-bottom-color: #f0f0f0;
}

[data-theme="light"] .tag-best {
  background: rgba(224,45,34,0.08);
  color: #e02d22;
}

[data-theme="light"] .thumb-card {
  background: #ffffff;
  border-color: #e0e0e0;
}

[data-theme="light"] .thumb-label {
  color: #555555;
}

[data-theme="light"] .thumb-size {
  color: #999999;
}

[data-theme="light"] .toc-box {
  background: #ffffff;
  border-color: #e0e0e0;
}

[data-theme="light"] .toc-title {
  color: #666666;
}

[data-theme="light"] .toc-h2 a {
  color: #333333;
}

[data-theme="light"] .toc-h3 a {
  color: #666666;
}

[data-theme="light"] .toc-toggle {
  background: #f0f0f0;
  border-color: #ddd;
  color: #666666;
}

[data-theme="light"] .post-content h2 {
  color: #0a0a0a;
  border-bottom-color: #e02d22;
}

[data-theme="light"] .post-content h3 {
  color: #111111;
  border-left-color: #e02d22;
}

[data-theme="light"] .post-content h4 {
  color: #222222;
}

[data-theme="light"] .post-content strong {
  color: #111111;
}

[data-theme="light"] .post-content a {
  color: #e02d22;
}

[data-theme="light"] .post-content ul,
[data-theme="light"] .post-content ol {
  color: #444444;
}

[data-theme="light"] .post-content blockquote {
  background: #f5f5f5;
  border-left-color: #e02d22;
}

[data-theme="light"] .post-content blockquote p {
  color: #666666;
}

[data-theme="light"] .post-content code {
  background: #f0f0f0;
  color: #e02d22;
}

[data-theme="light"] .post-content pre {
  background: #f0f0f0;
  border-color: #e0e0e0;
}

[data-theme="light"] .author-box {
  background: #ffffff;
  border-color: #e0e0e0;
}

[data-theme="light"] .author-name {
  color: #0a0a0a;
}

[data-theme="light"] .author-bio {
  color: #555555;
}

[data-theme="light"] .related-link {
  background: #ffffff;
  border-color: #e0e0e0;
}

[data-theme="light"] .related-link-title {
  color: #111111;
}

[data-theme="light"] .related-link-desc {
  color: #888888;
}

[data-theme="light"] .seo-block,
[data-theme="light"] .seo-article p {
  color: #666666;
}

[data-theme="light"] .keyword-cloud span {
  background: #eeeeee;
  border-color: #dddddd;
  color: #777777;
}

[data-theme="light"] .trust-bar a {
  color: #666666;
}

[data-theme="light"] .trust-bar a:hover {
  color: #111111;
}

[data-theme="light"] .trust-bar .dot {
  color: #cccccc;
}

[data-theme="light"] footer {
  background: #ffffff;
  border-top-color: #e0e0e0;
  color: #888888;
}

[data-theme="light"] footer a {
  color: #777777;
}

[data-theme="light"] footer a:hover {
  color: #333333;
}

[data-theme="light"] .footer-links a {
  color: #666666;
}

[data-theme="light"] .breadcrumb-nav {
  background: transparent;
}

[data-theme="light"] .bc-link {
  color: #888888;
}

[data-theme="light"] .bc-link:hover {
  color: #333333;
}

[data-theme="light"] .bc-current {
  color: #aaaaaa;
}

[data-theme="light"] .bc-sep {
  color: #cccccc;
}

[data-theme="light"] .section h2 {
  color: #0a0a0a;
}

[data-theme="light"] .contact-card {
  background: #ffffff;
  border-color: #e0e0e0;
}

[data-theme="light"] .notice-card {
  background: #ffffff;
  border-color: #e0e0e0;
}

[data-theme="light"] .notice-label {
  color: #888888;
}

[data-theme="light"] .notice-value {
  color: #444444;
}

[data-theme="light"] .step-num {
  color: #e02d22;
}

[data-theme="light"] .reading-time {
  background: #eeeeee;
  border-color: #dddddd;
  color: #777777;
}

[data-theme="light"] .category-badge {
  background: rgba(224,45,34,0.08);
  color: #e02d22;
  border-color: rgba(224,45,34,0.2);
}

[data-theme="light"] .last-updated {
  color: #aaaaaa;
}

[data-theme="light"] .highlight-box {
  background: rgba(224,45,34,0.04);
  border-color: rgba(224,45,34,0.15);
}

[data-theme="light"] .highlight-box p {
  color: #333333;
}

[data-theme="light"] .info-box {
  background: rgba(59,130,246,0.04);
  border-color: rgba(59,130,246,0.15);
}

[data-theme="light"] .info-box p {
  color: #333333;
}

