@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;700&family=Inter:wght@300;400;600&display=swap');

:root {
  --bg-color: #121212;
  --text-color: #00aa00;
  --secondary-color: #0d4c0d;
  --accent-color: #8aff8a;
  --panel-color: #1a1a1a;
  --border-color: #333;
  
  /* Light theme variables */
  --light-bg-color: #f5f5f5;
  --light-text-color: #007700;
  --light-secondary-color: #e0ffe0;
  --light-accent-color: #00aa00;
  --light-panel-color: #ffffff;
  --light-border-color: #dddddd;
}

/* Light theme class */
.light-theme {
  --bg-color: var(--light-bg-color);
  --text-color: var(--light-text-color);
  --secondary-color: var(--light-secondary-color);
  --accent-color: var(--light-accent-color);
  --panel-color: var(--light-panel-color);
  --border-color: var(--light-border-color);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
}

h1, h2, h3, h4, pre, code, .cursor, nav ul li {
  font-family: 'JetBrains Mono', monospace;
}

h1 {
  color: var(--text-color);
  font-size: 2.5rem;
  letter-spacing: -3px;
  margin-bottom: 1rem;
}

h2 {
  color: var(--text-color);
  margin-bottom: 1rem;
}

h3 {
  margin-bottom: 0.75rem;
  color: #fff;
}

.light-theme h3 {
  color: #333;
}

p {
  margin: 1rem 0;
}

ul {
  list-style-type: none;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

a:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* Theme Switcher */
.theme-switch-wrapper {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  z-index: 100;
}

.theme-switch {
  display: inline-block;
  height: 24px;
  position: relative;
  width: 48px;
  margin-right: 10px;
}

.theme-switch input {
  display: none;
}

.slider {
  background-color: #333;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 16px;
  left: 4px;
  position: absolute;
  transition: .4s;
  width: 16px;
}

input:checked + .slider {
  background-color: var(--text-color);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.theme-switch-wrapper em {
  font-size: 0.8rem;
  color: #ccc;
}

.light-theme .theme-switch-wrapper em {
  color: #666;
}

/* Navigation */
nav {
  width: 100%;
  margin-bottom: 2rem;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

nav ul li {
  color: var(--text-color);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: background-color 0.2s, transform 0.2s;
}

nav ul li:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Container and Layout */
.container {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-icons a {
  font-size: 1.5rem;
  color: var(--text-color);
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  transform: translateY(-5px) rotate(5deg);
  color: var(--accent-color);
}

.intro-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #aaa;
}

.light-theme .intro-text {
  color: #666;
}

/* Terminal Window */
.terminal-window {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--panel-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin: 1rem 0 2rem;
  border: 1px solid var(--border-color);
}

.terminal-header {
  background-color: var(--border-color);
  padding: 0.5rem;
  display: flex;
  align-items: center;
}

.terminal-buttons {
  display: flex;
  gap: 0.5rem;
  margin-right: 1rem;
}

.terminal-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.terminal-close {
  background-color: #ff5f56;
}

.terminal-minimize {
  background-color: #ffbd2e;
}

.terminal-maximize {
  background-color: #27c93f;
}

.terminal-title {
  color: #aaa;
  font-size: 0.8rem;
  font-family: 'JetBrains Mono', monospace;
}

.light-theme .terminal-title {
  color: #666;
}

.terminal-content {
  padding: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  color: #ddd;
}

.light-theme .terminal-content {
  color: #333;
}

.terminal-content p {
  margin: 0.5rem 0;
}

.typing-effect {
  border-right: 2px solid var(--text-color);
  animation: blink 1s step-end infinite;
}

/* Skills */
.skills-container {
  margin: 1rem 0;
}

.skill {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.skill-name {
  width: 100px;
  font-size: 0.8rem;
}

.skill-bar {
  flex: 1;
  height: 8px;
  background-color: var(--border-color);
  border-radius: 4px;
  margin: 0 0.5rem;
  overflow: hidden;
}

.skill-level {
  height: 100%;
  background-color: var(--text-color);
  border-radius: 4px;
}

.skill-percent {
  width: 40px;
  font-size: 0.8rem;
  text-align: right;
}

/* WinBox Customization */
.wb-body {
  background: var(--panel-color);
  padding: 1.5rem;
  font-family: 'Inter', sans-serif;
  color: #ccc;
}

.light-theme .wb-body {
  color: #333;
}

.wb-header {
  background-color: var(--text-color);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-list {
  margin-left: 1rem;
}

.about-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.about-list li i {
  margin-right: 0.5rem;
  color: var(--text-color);
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-image {
  max-width: 100%;
  border-radius: 0.5rem;
  border: 2px solid var(--text-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--secondary-color);
  border-radius: 0.25rem;
  transition: transform 0.2s;
}

.social-links a:hover {
  transform: translateY(-3px);
}

/* Projects Section */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.project-card {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border-color);
}

.light-theme .project-card {
  background-color: rgba(255, 255, 255, 0.8);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-image {
  height: 150px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-info {
  padding: 1rem;
}

.project-info h3 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.light-theme .project-info h3 {
  color: #333;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.project-tags span {
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

.project-link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--text-color);
  color: #000;
  border-radius: 0.25rem;
  font-weight: bold;
  transition: background-color 0.2s, transform 0.2s;
}

.project-link:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-list {
  margin-top: 1rem;
}

.contact-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.contact-list li i {
  margin-right: 0.5rem;
  color: var(--text-color);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  color: #aaa;
}

.light-theme .form-group label {
  color: #666;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border-radius: 0.25rem;
  border: 1px solid var(--border-color);
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.light-theme .form-group input,
.light-theme .form-group textarea {
  background-color: #fff;
  color: #333;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  padding: 0.75rem 1.5rem;
  background-color: var(--text-color);
  color: #000;
  border: none;
  border-radius: 0.25rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.submit-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

/* CTF/Writeups Section */
.ctf-intro {
  margin-bottom: 1.5rem;
}

.ctf-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.ctf-filter {
  padding: 0.5rem 1rem;
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: #ccc;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.light-theme .ctf-filter {
  color: #666;
}

.ctf-filter.active,
.ctf-filter:hover {
  background-color: var(--text-color);
  color: #000;
  border-color: var(--text-color);
}

.ctf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.ctf-card {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.light-theme .ctf-card {
  background-color: rgba(255, 255, 255, 0.8);
}

.ctf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ctf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.ctf-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: bold;
}

.ctf-badge.web {
  background-color: #2563eb;
  color: #fff;
}

.ctf-badge.crypto {
  background-color: #7c3aed;
  color: #fff;
}

.ctf-badge.binary {
  background-color: #db2777;
  color: #fff;
}

.ctf-badge.forensics {
  background-color: #059669;
  color: #fff;
}

.ctf-badge.osint {
  background-color: #db2778;
  color: #fff;
}

.ctf-date {
  font-size: 0.75rem;
  color: #aaa;
}

.light-theme .ctf-date {
  color: #666;
}

.ctf-card h3 {
  margin-bottom: 0.75rem;
  color: #fff;
}

.light-theme .ctf-card h3 {
  color: #333;
}

.ctf-card p {
  flex: 1;
  margin-bottom: 1rem;
}

.ctf-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.ctf-difficulty {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
}

.light-theme .ctf-difficulty {
  background-color: rgba(0, 0, 0, 0.1);
}

.ctf-link {
  color: var(--text-color);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s;
}

.ctf-link:hover {
  transform: translateX(5px);
}

/* Animation & Cursor */
.cursor {
  font-weight: 700;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: var(--text-color);
  }
}

/* Utility Classes */
.hidden {
  display: none;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
  }
  
  .about-grid,
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .project-card,
  .ctf-card {
    max-width: 100%;
  }
}

/* CTF Section Styles */
/* Statistics Dashboard */
.ctf-stats-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.ctf-stat-card {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s;
}

.light-theme .ctf-stat-card {
  background-color: rgba(255, 255, 255, 0.8);
}

.ctf-stat-card:hover {
  transform: translateY(-5px);
}

.ctf-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
}

.ctf-stat-label {
  font-size: 0.8rem;
  color: #aaa;
}

.light-theme .ctf-stat-label {
  color: #666;
}

/* Tab Navigation */
.ctf-sections {
  margin-top: 2rem;
}

.ctf-section-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
  overflow-x: auto;
}

.ctf-tab {
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  transition: color 0.2s;
}

.light-theme .ctf-tab {
  color: #666;
}

.ctf-tab:hover {
  color: var(--text-color);
}

.ctf-tab.active {
  color: var(--text-color);
}

.ctf-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
}

.ctf-tab-content {
  display: none;
}

.ctf-tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

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

/* Competitions */
.ctf-competitions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ctf-competition-card {
  display: flex;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.3s, box-shadow 0.3s;
}

.light-theme .ctf-competition-card {
  background-color: rgba(255, 255, 255, 0.8);
}

.ctf-competition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ctf-competition-logo {
  width: 100px;
  min-width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
}

.light-theme .ctf-competition-logo {
  background-color: rgba(0, 0, 0, 0.05);
}

.ctf-competition-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ctf-competition-details {
  padding: 1rem;
  flex: 1;
}

.ctf-competition-details h3 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.light-theme .ctf-competition-details h3 {
  color: #333;
}

.ctf-competition-info {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.ctf-date, .ctf-position, .ctf-score {
  color: #aaa;
  display: flex;
  align-items: center;
}

.light-theme .ctf-date, 
.light-theme .ctf-position, 
.light-theme .ctf-score {
  color: #666;
}

.ctf-date::before {
  content: '\f073';
  font-family: 'Font Awesome 5 Free';
  margin-right: 0.5rem;
  color: var(--text-color);
}

.ctf-position::before {
  content: '\f091';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 0.5rem;
  color: var(--text-color);
}

.ctf-score::before {
  content: '\f3d1';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 0.5rem;
  color: var(--text-color);
}

.ctf-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ctf-category-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.ctf-category-badge.web {
  background-color: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.ctf-category-badge.crypto {
  background-color: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.ctf-category-badge.binary, 
.ctf-category-badge.pwn {
  background-color: rgba(219, 39, 119, 0.1);
  color: #db2777;
  border: 1px solid rgba(219, 39, 119, 0.2);
}

.ctf-category-badge.forensics {
  background-color: rgba(5, 150, 105, 0.1);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.ctf-category-badge.reversing {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.ctf-category-badge.OSINT {
  background-color: rgba(159, 39, 15, 0.1);
  color: #f59e7b;
  border: 1px solid rgba(159, 39, 11, 0.2);
}

.ctf-category-badge.steganography {
  background-color: rgba(180, 133, 11, 0.1);
  color: #f59e7b;
  border: 1px solid rgba(180, 133, 11, 0.2);
}

/* Team Section */
.team-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.team-info {
  display: flex;
  gap: 2rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.light-theme .team-info {
  background-color: rgba(255, 255, 255, 0.8);
}

.team-logo {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
}

.light-theme .team-logo {
  background-color: rgba(0, 0, 0, 0.05);
}

.team-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.team-details {
  flex: 1;
}

.team-details h3 {
  margin-bottom: 1rem;
  color: #fff;
}

.light-theme .team-details h3 {
  color: #333;
}

.team-details p {
  margin-bottom: 1.5rem;
}

.team-stats {
  display: flex;
  gap: 2rem;
}

.team-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: 'JetBrains Mono', monospace;
}

.team-stat-label {
  font-size: 0.8rem;
  color: #aaa;
}

.light-theme .team-stat-label {
  color: #666;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--border-color);
  transition: transform 0.3s;
}

.light-theme .team-member {
  background-color: rgba(255, 255, 255, 0.8);
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--text-color);
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info {
  flex: 1;
}

.member-info h4 {
  margin-bottom: 0.25rem;
  color: #fff;
}

.light-theme .member-info h4 {
  color: #333;
}

.member-role {
  font-size: 0.8rem;
  color: var(--text-color);
  margin: 0;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .ctf-stats-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ctf-competition-card {
    flex-direction: column;
  }
  
  .ctf-competition-logo {
    width: 100%;
    height: 80px;
  }
  
  .team-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .team-stats {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .ctf-stats-dashboard {
    grid-template-columns: 1fr;
  }
}

.winbox {
  will-change: transform, width, height;
}

.wip-badge {
  position: fixed;
  top: 20px;
  left: 20px;
  background: rgba(100, 100, 100, 0.8);
  color: rgba(200, 200, 200, 0.9);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1000;
  border: 1px solid rgba(150, 150, 150, 0.3);
  backdrop-filter: blur(10px);
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wip-badge::before {
  content: "🚧";
  font-size: 12px;
  filter: grayscale(0.6) opacity(0.8);
}

.wip-badge:hover {
  opacity: 0.7;
}

.wip-badge:hover::before {
  filter: grayscale(0.3) opacity(1);
}

/* Dark theme compatibility */
.dark .wip-badge {
  background: rgba(60, 60, 60, 0.7);
  color: rgba(160, 160, 160, 0.8);
  border: 1px solid rgba(120, 120, 120, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .wip-badge {
    top: 15px;
    left: 15px;
    font-size: 9px;
    padding: 4px 10px;
    gap: 4px;
  }
  
  .wip-badge::before {
    font-size: 10px;
  }
}
