/* Exercises Page Styles */

/* Override any course-layout interference */
.main-content {
  margin-left: 280px;
  flex: 1;
  min-width: 0;
  padding: 2rem 0;
  margin-bottom: 100px;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .main-content {
    margin-left: 0;
  }
}

/* Filter Section */
.filter-section {
  margin-bottom: 28px;
  background: linear-gradient(135deg, rgba(122, 162, 255, 0.05), rgba(216, 123, 255, 0.03));
}

.filter-section h2 {
  margin-bottom: 18px;
  font-size: 20px;
  color: #fff;
}

[data-theme="light"] .filter-section {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(124, 58, 237, 0.02));
}

[data-theme="light"] .filter-section h2 {
  color: #1a1a2e;
}

/* Light theme - exercise cards */
[data-theme="light"] .exercise-card {
  background: #ffffff;
  border-color: #cbd5e1;
}

[data-theme="light"] .exercise-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .exercise-header:hover {
  background: rgba(37, 99, 235, 0.03);
}

[data-theme="light"] .exercise-number {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
}

[data-theme="light"] .exercise-title {
  color: #1a1a2e;
}

[data-theme="light"] .expand-icon {
  color: #64748b;
}

[data-theme="light"] .exercise-subject {
  background: #f8fafc;
  border-color: #e2e8f0;
}

[data-theme="light"] .exercise-subject h4 {
  color: #2563eb;
}

[data-theme="light"] .exercise-subject h3 {
  color: #2563eb;
}

[data-theme="light"] .exercise-subject h5 {
  color: #64748b;
}

[data-theme="light"] .exercise-subject pre {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .exercise-tags .tag {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.2);
}

[data-theme="light"] .exercises-count {
  color: #64748b;
}

[data-theme="light"] .no-exercises {
  color: #64748b;
}

[data-theme="light"] .no-exercises h3 {
  color: #1a1a2e;
}

/* Light theme - Filters */
[data-theme="light"] .tag-filter {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  color: #475569;
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .tag-filter::before {
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.08), transparent);
}

[data-theme="light"] .tag-filter:hover {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  color: #1e293b;
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .tag-filter.active {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3), 0 0 0 2px rgba(37, 99, 235, 0.1);
}

[data-theme="light"] .difficulty-filter {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  color: #475569;
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .difficulty-filter:hover {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  color: #1e293b;
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .difficulty-filter.active {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

[data-theme="light"] .search-box input {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.2);
  color: #1e293b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .search-box input:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15), 0 0 0 3px rgba(37, 99, 235, 0.08);
}

[data-theme="light"] .filter-label {
  color: #64748b;
}

.tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.tag-filter {
  appearance: none;
  background: linear-gradient(135deg, #252a45, #1a1f36);
  color: #c7d2fe;
  border: 1px solid rgba(122, 162, 255, 0.15);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.tag-filter::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(122, 162, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.tag-filter:hover::before {
  left: 100%;
}

.tag-filter:hover {
  background: linear-gradient(135deg, #2d3358, #222847);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-color: rgba(122, 162, 255, 0.3);
}

.tag-filter.active {
  background: linear-gradient(135deg, #4c6fd8, #3a5bc7);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(122, 162, 255, 0.4), 0 0 0 2px rgba(122, 162, 255, 0.1);
  transform: translateY(-1px);
}

.difficulty-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.filter-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-right: 8px;
}

.difficulty-filter {
  appearance: none;
  background: linear-gradient(135deg, #252a45, #1a1f36);
  color: #c7d2fe;
  border: 1px solid rgba(122, 162, 255, 0.15);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.difficulty-filter:hover {
  background: linear-gradient(135deg, #2d3358, #222847);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-color: rgba(122, 162, 255, 0.3);
}

.difficulty-filter.active {
  background: linear-gradient(135deg, #4c6fd8, #3a5bc7);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(122, 162, 255, 0.4);
  transform: translateY(-1px);
}

.search-box {
  margin-top: 12px;
}

.search-box input {
  width: 100%;
  max-width: 450px;
  padding: 14px 20px;
  font-size: 14px;
  background: rgba(26, 29, 50, 0.6);
  border: 2px solid rgba(122, 162, 255, 0.15);
  border-radius: 12px;
  color: var(--text);
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-box input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.search-box input:focus {
  border-color: var(--accent);
  background: rgba(26, 29, 50, 0.8);
  box-shadow: 0 4px 16px rgba(122, 162, 255, 0.2), 0 0 0 3px rgba(122, 162, 255, 0.1);
  transform: translateY(-1px);
}

/* Exercises Count */
.exercises-count {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
  padding-left: 4px;
}

/* Exercise Card */
.exercise-card {
  background: linear-gradient(180deg, rgba(26, 29, 50, 0.7), rgba(19, 22, 38, 0.7));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.exercise-card:hover {
  border-color: rgba(122, 162, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.exercise-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
  position: relative;
}

.exercise-header::after {
  content: 'Click to expand';
  position: absolute;
  right: 60px;
  top: 16px;
  font-size: 11px;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  background: var(--bg);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 10;
}

.exercise-header:hover::after {
  opacity: 1;
}

.exercise-card.expanded .exercise-header::after {
  content: 'Click to collapse';
}

.exercise-header:hover {
  background: rgba(122, 162, 255, 0.05);
}

.exercise-meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.exercise-number {
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
  background: rgba(122, 162, 255, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

.difficulty-badge {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

.difficulty-badge.easy {
  background: rgba(110, 231, 183, 0.15);
  color: var(--green);
}

.difficulty-badge.medium {
  background: rgba(250, 204, 21, 0.15);
  color: var(--yellow);
}

.difficulty-badge.hard {
  background: rgba(248, 113, 113, 0.15);
  color: var(--red);
}

.exercise-title {
  flex: 1;
  margin: 0;
  font-size: 17px;
  color: #fff;
  min-width: 200px;
}

.exercise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.exercise-tags .tag {
  font-size: 11px;
  padding: 3px 8px;
  background: rgba(122, 162, 255, 0.1);
  color: var(--accent);
  border: 1px solid rgba(122, 162, 255, 0.2);
  border-radius: 999px;
}

.expand-icon {
  font-size: 16px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(122, 162, 255, 0.15), rgba(122, 162, 255, 0.25));
  border: 1.5px solid rgba(122, 162, 255, 0.3);
  box-shadow: 0 2px 8px rgba(122, 162, 255, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.1);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.expand-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(122, 162, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.exercise-header:hover .expand-icon::before {
  width: 60px;
  height: 60px;
}

.exercise-header:hover .expand-icon {
  background: linear-gradient(135deg, rgba(122, 162, 255, 0.3), rgba(122, 162, 255, 0.4));
  color: #fff;
  border-color: rgba(122, 162, 255, 0.5);
  box-shadow: 0 4px 16px rgba(122, 162, 255, 0.3), inset 0 1px 3px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px) scale(1.05);
}

.exercise-card.expanded .expand-icon {
  transform: rotate(180deg) scale(1.05);
  background: linear-gradient(135deg, #7aa2ff, #5b8eef);
  color: #fff;
  border-color: #7aa2ff;
  box-shadow: 0 4px 16px rgba(122, 162, 255, 0.4), 0 0 0 3px rgba(122, 162, 255, 0.1);
  animation: expandPulse 0.5s ease;
}

@keyframes expandPulse {
  0%, 100% { transform: rotate(180deg) scale(1.05); }
  50% { transform: rotate(180deg) scale(1.15); }
}

[data-theme="light"] .expand-icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.12));
  border-color: rgba(37, 99, 235, 0.2);
  color: #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .expand-icon::before {
  background: rgba(37, 99, 235, 0.15);
}

[data-theme="light"] .exercise-header:hover .expand-icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.25));
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2), inset 0 1px 3px rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .exercise-card.expanded .expand-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  border-color: #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3), 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Exercise Body */
.exercise-body {
  display: none;
  padding: 0 20px 20px;
  animation: slideDown 0.3s ease;
}

.exercise-card.expanded .exercise-body {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.exercise-subject {
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 12px;
}

.exercise-subject h4,
.exercise-correction h4 {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--accent);
}

.exercise-subject p,
.exercise-correction p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.exercise-subject pre,
.exercise-correction pre {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 14px;
  overflow-x: auto;
  margin: 12px 0;
}

.exercise-subject code,
.exercise-correction code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.exercise-subject ul,
.exercise-subject ol {
  margin: 12px 0;
  padding-left: 24px;
}

.exercise-subject li {
  margin: 6px 0;
}

.exercise-subject ul,
.exercise-subject ol {
  margin: 12px 0;
  padding-left: 24px;
}

.exercise-subject li {
  margin: 6px 0;
}

.exercise-subject h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--accent);
}

.exercise-subject h4 {
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text);
}

.exercise-subject h5 {
  margin-top: 14px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--muted);
}

.exercise-header-info {
  background: rgba(122, 162, 255, 0.08);
  border: 1px solid rgba(122, 162, 255, 0.2);
  border-radius: 8px;
  padding: 14px;
  margin: 16px 0;
}

.exercise-header-info p {
  margin: 6px 0;
}

[data-theme="light"] .exercise-header-info {
  background: rgba(37, 99, 235, 0.05);
  border-color: rgba(37, 99, 235, 0.15);
}

/* Playground Info Section */
.playground-info {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(110, 231, 183, 0.08), rgba(110, 231, 183, 0.05));
  border: 1.5px solid rgba(110, 231, 183, 0.3);
  border-radius: 12px;
  padding: 18px;
  margin: 16px 0 20px;
  box-shadow: 0 2px 8px rgba(110, 231, 183, 0.1);
}

.playground-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.playground-content h5 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--green);
  font-weight: 600;
}

.playground-content p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.playground-link {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1.5px solid rgba(110, 231, 183, 0.4);
  transition: all 0.2s ease;
}

.playground-link:hover {
  color: #6ee7b7;
  border-bottom-color: #6ee7b7;
  text-shadow: 0 0 8px rgba(110, 231, 183, 0.4);
}

[data-theme="light"] .playground-info {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.06), rgba(22, 163, 74, 0.03));
  border-color: rgba(22, 163, 74, 0.25);
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.08);
}

[data-theme="light"] .playground-content h5 {
  color: #16a34a;
}

[data-theme="light"] .playground-link {
  color: #16a34a;
  border-bottom-color: rgba(22, 163, 74, 0.4);
}

[data-theme="light"] .playground-link:hover {
  color: #15803d;
  border-bottom-color: #15803d;
  text-shadow: none;
}

/* Code Syntax Highlighting for HTML Template */
.language-html .tag {
  color: #7aa2ff;
}

.language-html .attr {
  color: #d87bff;
}

.language-html .string {
  color: #6ee7b7;
}

.language-html .comment {
  color: #64748b;
  font-style: italic;
}

[data-theme="light"] .language-html .tag {
  color: #2563eb;
}

[data-theme="light"] .language-html .attr {
  color: #7c3aed;
}

[data-theme="light"] .language-html .string {
  color: #16a34a;
}

[data-theme="light"] .language-html .comment {
  color: #64748b;
}

/* Correction Section */
.exercise-correction {
  background: rgba(110, 231, 183, 0.05);
  border: 1px solid rgba(110, 231, 183, 0.2);
  border-radius: 10px;
  padding: 18px;
}

.exercise-correction h4 {
  color: var(--green);
}

.exercise-correction.hidden {
  display: none;
}

/* Correction Toggle */
.correction-toggle {
  appearance: none;
  background: linear-gradient(180deg, #1f3528, #142318);
  color: var(--green);
  border: 1px solid rgba(110, 231, 183, 0.3);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.correction-toggle:hover {
  background: linear-gradient(180deg, #264530, #1a3020);
}

/* No Exercises Placeholder */
.no-exercises {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.no-exercises-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.no-exercises h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 24px;
}

.no-exercises p {
  margin: 0;
  font-size: 16px;
}

/* Exam Info Section */
.exam-info {
  margin-top: 32px;
}

.exam-info h2 {
  margin-bottom: 20px;
}

[data-theme="light"] .exam-info h2 {
  color: #1a1a2e;
}

.exam-info-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.exam-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}

[data-theme="light"] .exam-info-item {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.exam-info-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.exam-info-item strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 14px;
}

[data-theme="light"] .exam-info-item strong {
  color: #1a1a2e;
}

.exam-info-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

[data-theme="light"] .exam-info-item p {
  color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
  .exercises-header {
    padding: 30px 0 20px;
  }

  .exercise-header {
    padding: 14px 16px;
  }

  .exercise-title {
    width: 100%;
    order: 3;
    margin-top: 8px;
  }

  .exercise-tags {
    width: 100%;
    order: 4;
    margin-top: 6px;
  }

  .expand-icon {
    order: 2;
  }

  .tag-filters {
    gap: 8px;
  }

  .tag-filter {
    padding: 6px 12px;
    font-size: 12px;
  }

  .coming-soon-features {
    gap: 8px;
  }

  .coming-soon-tag {
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .exercise-meta {
    width: 100%;
    justify-content: space-between;
  }

  .exam-info-content {
    grid-template-columns: 1fr;
  }
}

/* Coming Soon Section */
.coming-soon-section {
  margin-top: 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(122, 162, 255, 0.08), rgba(216, 123, 255, 0.05));
  border: 1px dashed rgba(122, 162, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.coming-soon-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(122, 162, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(216, 123, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.coming-soon-content {
  position: relative;
  z-index: 1;
  padding: 20px 0;
}

.coming-soon-icon {
  font-size: 48px;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.coming-soon-section h2 {
  font-size: 24px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #7aa2ff, #d87bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.coming-soon-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.coming-soon-tag {
  padding: 8px 16px;
  background: rgba(122, 162, 255, 0.1);
  border: 1px solid rgba(122, 162, 255, 0.2);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  transition: all 0.3s ease;
}

.coming-soon-tag:hover {
  background: rgba(122, 162, 255, 0.2);
  transform: translateY(-2px);
}

/* Light theme - Coming Soon */
[data-theme="light"] .coming-soon-section {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(124, 58, 237, 0.02));
  border-color: rgba(37, 99, 235, 0.2);
}

[data-theme="light"] .coming-soon-section::before {
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
}

[data-theme="light"] .coming-soon-section h2 {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .coming-soon-section p {
  color: #64748b;
}

[data-theme="light"] .coming-soon-tag {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.15);
  color: #2563eb;
}

[data-theme="light"] .coming-soon-tag:hover {
  background: rgba(37, 99, 235, 0.12);
}
