:root {
  --bg: #05020a;
  --bg-alt: #0d0716;
  --bg-dark: #020009;
  --accent: #ffb3c6;
  --accent-strong: #ff4f8b;
  --accent-glow: rgba(255, 79, 139, 0.5);
  --text: #f7f7ff;
  --text-muted: #b3b3d9;
  --border: #3b3358;
  --shadow: #190b33;
  --card-bg: #120a24;
  --card-bg-soft: #1a1030;
  --pixel-size: 3px;
  --radius: 0;
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;
}

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

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Press Start 2P", sans-serif;
  background: radial-gradient(circle at top, #261547, #05020a 55%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.pixel-page {
  position: relative;
  min-height: 100vh;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all var(--transition-fast) ease;
}

a:hover {
  text-decoration: none;
}

.background-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
  z-index: -2;
}

.background-stars {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 80% 10%, rgba(255,200,255,0.4), transparent),
    radial-gradient(2px 2px at 30% 80%, rgba(180,220,255,0.4), transparent),
    radial-gradient(2px 2px at 60% 40%, rgba(255,255,200,0.3), transparent);
  opacity: 0.7;
  pointer-events: none;
  z-index: -3;
  animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.5; }
  100% { opacity: 0.8; }
}

.pixel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(10,3,26,0.9), rgba(27,14,60,0.95));
  border: 2px solid var(--border);
  box-shadow:
    0 0 0 2px #000,
    0 4px 0 0 var(--shadow),
    0 0 20px rgba(255, 79, 139, 0.1);
  transition: all var(--transition-normal) ease;
}

.pixel-header:hover {
  box-shadow:
    0 0 0 2px #000,
    0 4px 0 0 var(--shadow),
    0 0 30px rgba(255, 79, 139, 0.2);
}

.site-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Press Start 2P", system-ui, sans-serif;
  letter-spacing: 1px;
  font-size: 10px;
}

.logo-mark {
  color: var(--accent-strong);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    text-shadow: 0 0 5px var(--accent-glow);
  }
  50% {
    text-shadow: 0 0 15px var(--accent-glow), 0 0 25px var(--accent-glow);
  }
}

.logo-text {
  text-shadow: 0 0 6px rgba(255,179,198,0.8);
}

.pixel-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
}

.pixel-nav a {
  padding: 4px 8px;
  border: 2px solid transparent;
  text-decoration: none;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.pixel-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,179,198,0.2), transparent);
  transition: left var(--transition-normal) ease;
}

.pixel-nav a:hover::before {
  left: 100%;
}

.pixel-nav a:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.pixel-nav a.is-active {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(255, 179, 198, 0.12);
  box-shadow:
    0 0 0 1px #000,
    0 0 8px rgba(255, 179, 198, 0.4);
}

.section {
  margin-bottom: 32px;
}

.tab-section {
  display: none;
}

.tab-section.is-active {
  display: block;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 20px;
  align-items: stretch;
}

.section-dark {
  background: linear-gradient(135deg, rgba(3,0,12,0.7), rgba(7,0,24,0.8));
  padding: 18px 16px 20px;
  border: 2px solid var(--border);
  box-shadow:
    0 0 0 2px #000,
    0 4px 0 0 var(--shadow);
}

.section-title {
  font-family: "Press Start 2P", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  margin: 0 0 16px;
  text-transform: uppercase;
  display: inline-block;
  padding: 6px 10px;
  border: 2px solid var(--border);
  background: rgba(5, 2, 16, 0.9);
}

.section-grid, .about-grid, .contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.section-title {
  animation: fadeInDown 0.6s ease-out;
}

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

.intro-left h1 {
  margin: 6px 0 8px;
  font-size: 26px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

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

.intro-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: var(--accent);
}

.pixel-tag {
  display: inline-block;
  padding: 2px 8px;
  border: 2px solid var(--border);
  font-size: 10px;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.4);
  animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.intro-text {
  font-size: 14px;
  color: var(--text-muted);
  margin: 10px 0 14px;
  animation: fadeIn 1s ease-out 0.5s both;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
  animation: fadeIn 1s ease-out 0.7s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  font-size: 12px;
  border: 2px solid var(--border);
  background: var(--card-bg-soft);
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 0 0 2px #000,
    0 3px 0 0 var(--shadow);
  transition: all var(--transition-fast) ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 2px #000,
    0 5px 0 0 var(--shadow),
    0 0 15px rgba(255, 179, 198, 0.3);
}

.btn:active {
  box-shadow:
    0 0 0 2px #000,
    0 1px 0 0 var(--shadow);
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-strong), #ffd1e3);
  color: #1b0a16;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff6b9d, #ffc4d6);
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.4);
}

.btn-outline {
  border-color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 179, 198, 0.1);
  border-color: var(--accent-strong);
}

.btn-sm {
  padding: 4px 10px;
  font-size: 11px;
}

.intro-meta {
  font-size: 11px;
  color: var(--text-muted);
  animation: fadeIn 1s ease-out 0.9s both;
}

.intro-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.pixel-carousel {
  margin-top: 18px;
  border: 2px solid var(--border);
  padding: 10px 10px 12px;
  background: radial-gradient(circle at top left, rgba(255,179,198,0.1), rgba(5,2,16,0.9));
  box-shadow:
    0 0 0 2px #000,
    0 4px 0 0 var(--shadow);
  max-width: 480px;
  margin-left: 0;
  margin-right: auto;
  animation: fadeIn 1s ease-out 1.1s both;
}

.carousel-window {
  overflow: hidden;
  max-width: 440px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-out;
}

.carousel-slide {
  min-width: 100%;
  cursor: pointer;
  transition: all var(--transition-normal) ease;
}

.carousel-slide:hover {
  transform: scale(1.02);
}

.carousel-caption {
  margin-top: 6px;
  font-size: 12px;
  color: var(--accent);
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 11px;
}

.carousel-button {
  padding: 3px 8px;
  border: 2px solid var(--border);
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-muted);
  font-size: 11px;
  cursor: pointer;
  box-shadow:
    0 0 0 2px #000,
    0 2px 0 0 var(--shadow);
  transition: all var(--transition-fast) ease;
}

.carousel-button:hover {
  color: var(--text);
  border-color: var(--accent);
  box-shadow:
    0 0 0 2px #000,
    0 2px 0 0 var(--shadow),
    0 0 10px rgba(255, 179, 198, 0.3);
}

.carousel-button:active {
  transform: translateY(1px);
  box-shadow:
    0 0 0 2px #000,
    0 1px 0 0 var(--shadow);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: 2px solid var(--border);
  background: #05020a;
  box-shadow: 0 0 0 2px #000;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-fast) ease;
}

.carousel-dot:hover {
  border-color: var(--accent);
  box-shadow:
    0 0 0 2px #000,
    0 0 8px var(--accent-glow);
}

.carousel-dot.is-active {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  box-shadow:
    0 0 0 2px #000,
    0 0 10px var(--accent-glow);
}

.pixel-card {
  background: radial-gradient(circle at top left, rgba(255,179,198,0.08), transparent 55%), var(--card-bg);
  border: 2px solid var(--border);
  padding: 12px 12px 14px;
  box-shadow:
    0 0 0 2px #000,
    0 4px 0 0 var(--shadow);
  position: relative;
  transition: all var(--transition-normal) ease;
}

.pixel-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 2px #000,
    0 6px 0 0 var(--shadow),
    0 0 20px rgba(255, 179, 198, 0.15);
}

.pixel-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.pixel-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 4px 0;
}

.card-label {
  position: absolute;
  top: -10px;
  left: 10px;
  padding: 2px 6px;
  font-size: 10px;
  background: #05020a;
  border: 2px solid var(--border);
  white-space: nowrap;
}

.avatar-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.avatar-pixel {
  appearance: none;
  border: none;
  padding: 0;
  cursor: pointer;

  width: 100px;
  height: 100px;
  margin: 0 auto;
  position: relative;
  background:
    url("avatar.png") center/cover no-repeat,
    #0d0716;
  border: 3px solid var(--border);
  box-shadow:
    0 0 0 2px #000,
    inset 0 0 0 2px #000;
  transition: all var(--transition-normal) ease;
}

.avatar-pixel:hover {
  border-color: var(--accent);
  box-shadow:
    0 0 0 2px #000,
    inset 0 0 0 2px #000,
    0 0 15px var(--accent-glow);
}

.avatar-pixel:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.avatar-info {
  font-size: 12px;
}

.avatar-name {
  font-weight: 600;
}

.avatar-desc {
  color: var(--accent);
  margin-top: 2px;
}

.avatar-status {
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-muted);
}

.avatar-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 2, 16, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 40;
}

.avatar-modal.is-open {
  display: flex;
}

.avatar-modal-inner {
  max-width: min(420px, 90vw);
  max-height: 80vh;
  border: 3px solid var(--border);
  box-shadow:
    0 0 0 3px #000,
    0 10px 0 0 var(--shadow);
  background: #05020a;
  padding: 8px;
}

.avatar-modal-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.carousel-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 2, 16, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 40;
}

.carousel-modal.is-open {
  display: flex;
}

.carousel-modal-inner {
  max-width: min(520px, 92vw);
  max-height: 80vh;
}

.mood-card {
  text-align: center;
}

.mood-card p {
  margin-top: 8px;
  font-size: 14px;
}

.mood-text {
  font-family: monospace;
  color: var(--accent);
}

.mood-decoration {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.pixel-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  animation: blink 1.5s ease-in-out infinite;
}

.pixel-dot:nth-child(2) {
  animation-delay: 0.3s;
}

.pixel-dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.timeline {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  border-left: 2px solid var(--border);
}

.timeline li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 10px;
  animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.time-dot {
  position: absolute;
  left: -4px;
  top: 3px;
  width: 8px;
  height: 8px;
  background: var(--accent-strong);
  box-shadow: 0 0 0 2px #000;
}

.time-dot.is-ongoing {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 2px #000, 0 0 5px var(--accent-glow);
  }
  50% {
    box-shadow: 0 0 0 2px #000, 0 0 15px var(--accent-glow);
  }
}

.time-title {
  font-size: 13px;
}

.time-text {
  font-size: 12px;
  color: var(--text-muted);
}

.skills-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.skills-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skill-list, .todo-list, .info-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}

.skill-list li, .info-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 12px;
}

.skill-name, .info-label {
  min-width: 100px;
}

.info-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(59, 51, 88, 0.5);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-icon {
  font-size: 16px;
  margin-right: 8px;
}

.info-value {
  margin-left: auto;
  color: var(--accent);
}

.skill-bar {
  position: relative;
  flex: 1;
  height: 8px;
  background: #1a102f;
  border: 2px solid #000;
  box-shadow: inset 0 0 0 1px var(--border);
  overflow: hidden;
}

.skill-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, #ffb3c6, #ffd1e3);
  transition: width 1s ease-out;
}

.skill-bar[data-level="70"]::after { width: 70%; }
.skill-bar[data-level="65"]::after { width: 65%; }
.skill-bar[data-level="60"]::after { width: 60%; }
.skill-bar[data-level="55"]::after { width: 55%; }
.skill-bar[data-level="50"]::after { width: 50%; }
.skill-bar[data-level="45"]::after { width: 45%; }
.skill-bar[data-level="40"]::after { width: 40%; }

.todo-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  font-size: 12px;
}

.todo-list li::before {
  content: "□";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10px;
  color: var(--accent);
}

.learning-card {
  border-style: dashed;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.project-card {
  animation: fadeInUp 0.6s ease-out backwards;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }
.project-card:nth-child(5) { animation-delay: 0.5s; }

.project-card h3 {
  margin-top: 4px;
}

.project-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--text-muted);
}

.project-tech {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tech-tag {
  padding: 2px 8px;
  background: rgba(255, 179, 198, 0.1);
  border: 1px solid var(--border);
  font-size: 10px;
  color: var(--accent);
}

.meta-status {
  padding: 2px 8px;
  background: var(--card-bg-soft);
  border: 1px solid var(--border);
}

.meta-status.completed {
  border-color: var(--accent);
  color: var(--accent);
}

.meta-status.ongoing {
  border-color: #ffd700;
  color: #ffd700;
  animation: pulse 2s ease-in-out infinite;
}

.meta-year {
  color: var(--text-muted);
}

.meta-link {
  color: var(--accent);
  text-decoration: underline;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.journal-meta {
  margin-top: 6px;
  font-size: 11px;
  color: var(--accent);
}

.contact-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.contact-list li {
  font-size: 13px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  color: var(--text-muted);
  font-size: 11px;
}

.contact-value {
  color: var(--accent);
  word-break: break-all;
}

.resume-download {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.btn-resume {
  width: 100%;
  justify-content: center;
}

.contact-message .message-content p {
  margin-bottom: 10px;
}

.message-decoration {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.pixel-art {
  color: var(--accent);
  animation: float 3s ease-in-out infinite;
}

.pixel-art:nth-child(2) {
  animation-delay: 0.5s;
}

.pixel-art:nth-child(3) {
  animation-delay: 1s;
}

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

.about-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.about-intro {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-avatar {
  flex-shrink: 0;
}

.about-avatar img {
  width: 100px;
  height: 100px;
  border: 3px solid var(--border);
  object-fit: cover;
  background: var(--card-bg);
}

.about-info {
  flex: 1;
}

.about-subtitle {
  color: var(--accent);
  font-size: 12px;
  margin: 4px 0;
}

.about-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.self-intro {
  margin-top: 16px;
}

.intro-content p {
  margin-bottom: 12px;
  font-size: 13px;
}

.intro-quote {
  font-style: italic;
  color: var(--accent);
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}

.highlight {
  color: var(--accent-strong);
  font-weight: 600;
}

.quick-links {
  margin-top: 24px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.quick-card {
  text-align: center;
  padding: 16px 12px;
  display: block;
  text-decoration: none;
  color: inherit;
}

.quick-card:hover {
  color: var(--accent);
}

.quick-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.quick-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.quick-desc {
  font-size: 11px;
  color: var(--text-muted);
}

.pixel-footer {
  margin-top: 18px;
  padding: 8px 12px;
  border: 2px solid var(--border);
  background: rgba(5,2,16,0.95);
  box-shadow:
    0 0 0 2px #000,
    0 3px 0 0 var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-right {
  text-align: right;
}

@media (max-width: 768px) {
  .pixel-page {
    padding: 12px 10px 24px;
  }

  .pixel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section-intro {
    grid-template-columns: 1fr;
  }

  .about-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-avatar img {
    width: 80px;
    height: 80px;
  }

  .avatar-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .avatar-pixel {
    margin-bottom: 8px;
  }

  .pixel-footer {
    flex-direction: column;
    text-align: left;
  }

  .footer-right {
    text-align: left;
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .site-logo {
    font-size: 9px;
  }

  .section-title {
    font-size: 11px;
  }

  body {
    font-size: 13px;
  }

  .intro-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .carousel-modal-inner {
    max-width: 95vw;
  }
}

.todo-text {
  font-size: 18px;
  text-align: center;
  color: var(--accent);
  padding: 20px;
  font-weight: bold;
}

.project-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 79, 139, 0.3);
}

.interest-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 30px;
  padding: 30px 20px;
  min-height: 200px;
}

.cloud-tag {
  cursor: default;
  transition: all 0.3s ease;
  line-height: 1.2;
}

.cloud-tag:hover {
  transform: scale(1.15) !important;
  filter: brightness(1.2);
}
