/* ================================================
   GLOBAL
   ================================================ */

body {
  background:
    radial-gradient(circle at 50% 20%, rgba(0,170,255,0.15), transparent 60%),
    linear-gradient(180deg, rgba(0,29,61,0.55), rgba(0,38,77,0.65)),
    url("Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

main { flex: 1; }

/* ================================================
   NAVBAR
   ================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background: #071229;
  padding: 20px 30px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.5);
  z-index: 1000;
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #4fd1ff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  background: #0b1b35;
  color: white;
}

/* Hire Me highlight */
.nav-links a[href="contact.html"] {
  background: linear-gradient(135deg, #0099cc, #00bfff);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(0,191,255,0.35);
  transition: opacity .15s, box-shadow .15s;
}

.nav-links a[href="contact.html"]:hover {
  opacity: .88;
  box-shadow: 0 5px 18px rgba(0,191,255,0.5);
}

/* ================================================
   HERO
   ================================================ */

.hero {
  text-align: center;
  margin-top: 140px;
}

.Name {
  font-size: 50px;
  padding-top: 0;
  padding-left: 50px;
}

.subtitle,
.platforms {
  margin-top: 10px;
  font-size: 22px;
  color: #4ba2ff;
}

.watchword { margin-top: 10px; }

.contact {
  margin-top: 10px;
  color: #4fd1ff;
}

.linkedin {
  color: #4fd1ff;
  text-decoration: none;
}

.linkedin:hover { color: #0077b5; }

/* ================================================
   SCROLL NAV (dots)
   ================================================ */

.section-nav {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 1000;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #3aa3ff;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #3aa3ff;
  box-shadow: 0 0 10px #3aa3ff;
  animation: pulse 1.5s infinite;
}

.arrow {
  font-size: 20px;
  color: #3aa3ff;
  cursor: pointer;
  transition: 0.3s;
}

.arrow:hover { transform: scale(1.3); }

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* ================================================
   ROLE / SKILL SECTION
   ================================================ */

.Dev-skill-section,
.QA-section,
.Game-design-section {
  padding: 20px;
}

.dev-skill-container,
.QA-container,
.Game-design-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

.Dev-skill-left,
.Dev-skill-right,
.QA-skill-left,
.QA-skill-right,
.Game-design-skill-left,
.Game-design-skill-right {
  flex: 1;
}

.title-role {
  border-left: 8px solid #00aaff;
  padding-left: 15px;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
}

.title-dev,
.title-QA,
.title-Game-design {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.Dev-skill-section h3,
.QA-section h3,
.Game-design-section h3 {
  margin-top: 30px;
  letter-spacing: 3px;
  font-size: 24px;
}

.Dev-skill-right  { margin-top: 190px; }
.QA-skill-right,
.Game-design-skill-right { margin-top: 75px; }

ul  { margin-top: 10px; padding-left: 20px; }
li  { margin-bottom: 8px; font-size: 18px; }

/* ================================================
   EXPERTISE SECTION
   ================================================ */

.expertise-section { padding: 100px 20px; }

.expertise-container {
  max-width: 1200px;
  margin: auto;
}

.expertise-title {
  border-left: 8px solid #00aaff;
  padding-left: 15px;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: left;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.expertise-box {
  background: #071229;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  text-align: left;
}

.expertise-box h3 { margin-bottom: 10px; font-size: 32px; }
.expertise-box p  { color: #9ecbff; line-height: 1.6; }

/* ================================================
   FEATURED PROJECT (index.html)
   ================================================ */

.project-section { padding: 50px 20px; }

.project-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.project-left  { flex: 1; }
.project-right { flex: 1; text-align: center; }

.project-title {
  border-left: 8px solid #00aaff;
  padding-left: 15px;
  font-size: 50px;
  margin-bottom: 30px;
}

.project-left h3 { font-size: 26px; margin-bottom: 15px; }
.project-left p  { color: #9ecbff; line-height: 1.6; margin-bottom: 20px; }
.project-left li { margin-bottom: 8px; }

.project-right img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* scroll reveal */
.reveal-right {
  opacity: 0;
  transform: translateX(120px);
  filter: blur(6px);
  transition: all 0.9s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* ================================================
   BUTTONS
   ================================================ */

.project-buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding-right: 220px;
}

.project-buttons a { text-decoration: none !important; }

.btn-primary {
  background: #00aaff;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #008fcc;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.btn-secondary {
  background: transparent;
  color: #00aaff;
  border: 2px solid #00aaff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover,
.btn-secondary:active {
  background: #00aaff;
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ================================================
   INTRODUCTION SECTION (about.html)
   ================================================ */

.Introduction-section { padding: 80px 10%; }

.Introduction-left { max-width: 600px; }

.introduction-title {
  border-left: 8px solid #00aaff;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-left: 20px;
}

.Name-Introduction { font-size: 28px; }
.Name-Unitysity    { font-size: 20px; }

.Introduction-left p {
  text-align: justify;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 17px;
  color: #99b9f1;
}

.profile-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-img {
  width: 620px;
  max-width: 100%;
  transform: translateX(60px);
  transition: transform 0.3s ease;
}

.profile-img:hover { transform: scale(1.05); }

/* ================================================
   CONTACT SECTION
   ================================================ */

.contact-left { max-width: 600px; }

.Contact-title {
  border-left: 8px solid #00aaff;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-left: 20px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-top: 8px;
  border: 2px solid #00b4ff;
  border-radius: 8px;
  color: #8fd3ff;
  text-decoration: none;
  font-size: 14px;
  background: transparent;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #00b4ff;
  color: #001b2e;
  box-shadow: 0 0 10px #00b4ff;
}

/* ================================================
   PROJECT CARDS — shared base
   All project card sections share the same layout;
   only the section wrapper class differs.
   ================================================ */

.projects0,
.projects1,
.projects2,
.projects3,
.projects4,
.projects5,
.projects6 {
  max-width: 1200px;
  margin: auto;
  padding: 40px;
}

.project0-card,
.project1-card,
.project2-card,
.project3-card,
.project4-card,
.project5-card,
.project6-card {
  display: flex;
  gap: 40px;
  background: #0a1f35;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  align-items: flex-start;
}

/* LEFT info panels */
.project0-info,
.project1-info,
.project2-info,
.project3-info,
.project4-info,
.project5-info,
.project6-info {
  flex: 1;
  min-width: 0;
}

.project0-info h2,
.project1-info h2,
.project2-info h2,
.project3-info h2,
.project4-info h2,
.project5-info h2,
.project6-info h2 { margin-bottom: 10px; }

.project0-info p,
.project1-info p,
.project2-info p,
.project3-info p,
.project4-info p,
.project5-info p,
.project6-info p {
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #a0aec0;
}

/* Feature lists */
.project0-features,
.project1-features,
.project2-features,
.project3-features,
.project4-features,
.project5-features,
.project6-features {
  list-style: disc;
  margin: 10px 0;
  padding-left: 18px;
}

.project0-features li,
.project1-features li,
.project2-features li,
.project3-features li,
.project4-features li,
.project5-features li,
.project6-features li {
  margin-bottom: 4px;
  font-size: 0.85rem;
  color: #a0aec0;
  line-height: 1.7;
}

/* ── RIGHT: media panels ── */
.project0-media,
.project1-media,
.project2-media,
.project3-media,
.project4-media,
.project5-media,
.project6-media {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-width: 0;
  max-width: 480px;
}

.project1-card {
  position: relative; /* ถ้ายังไม่มี */
}

.package-label {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0ef;
  background: rgba(0, 238, 255, 0.1);
  border: 1px solid rgba(0, 238, 255, 0.4);
  border-radius: 10px;
  padding: 6px 14px;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(0, 238, 255, 0.8);
  box-shadow: 0 0 10px rgba(0, 238, 255, 0.2);
  transition: all 0.2s ease;
}

.package-label:hover {
  background: rgba(0, 238, 255, 0.2);
  box-shadow: 0 0 18px rgba(0, 238, 255, 0.5);
  color: #fff;
}

/* ── Slider ── */
.media-slider {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
  border-radius: 8px;
  overflow: visible;
  will-change: transform;
}

.media-slider img,
.media-slider video {
  width: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
}

/* ── Dots ── */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.slider-dot {
  width: 30px;
  height: 6px;
  background: #555;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.slider-dot.active {
  background: #00c3ff;
  width: 40px;
}

/* ── Project action buttons ── */
.project1-btn {
  display: inline-block;
  padding: 9px 18px;
  background: rgba(99,179,237,0.15);
  border: 1px solid rgba(99,179,237,0.4);
  border-radius: 6px;
  text-decoration: none;
  color: #63b3ed;
  font-size: 0.82rem;
  font-weight: 600;
  transition: 0.2s;
}

.project1-btn:hover { background: rgba(99,179,237,0.25); }

.primary-btn {
  background: #63b3ed !important;
  color: #1a202c !important;
  font-weight: 700 !important;
  border-color: #63b3ed !important;
}

.primary-btn:hover { background: #90cdf4 !important; }

/* ================================================
   QA CARD EXTRAS (tag row, stats, severity, tools)
   ================================================ */

/* Tag row */
.project-tag-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.project-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: #63b3ed;
  background: rgba(99,179,237,0.1);
  border: 1px solid rgba(99,179,237,0.3);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
}

.release-badge-But {
  font-size: 0.72rem; font-weight: 600;
  color: #f3ff45;
  background: rgba(104,211,145,0.1);
  border: 1px solid rgba(255,251,0,0.35);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
}

.release-badge-Not {
  font-size: 0.72rem; font-weight: 600;
  color: #fc3f26;
  background: rgba(104,211,145,0.1);
  border: 1px solid rgba(255,31,31,0.35);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
}
.release-badge-Approved {
  font-size: 0.72rem; font-weight: 600;
  color: #00fd4c;
  background: rgba(104,211,145,0.1);
  border: 1px solid rgba(0, 119, 255, 0.35);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
}
/* Stats strip */
.project-stats {
  display: flex;
  align-items: center;
  margin: 0.75rem 0 1rem;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(99,179,237,0.2);
  border-radius: 10px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stat-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: #63b3ed;
  line-height: 1;
}

.stat-label {
  font-size: 0.6rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

.stat-divider {
  width: 1px;
  height: 1.8rem;
  background: rgba(99,179,237,0.2);
  flex-shrink: 0;
}

/* Two-column scope/types row */
.project-sections-row {
  display: flex;
  gap: 0.75rem;
  margin: 0.75rem 0;
}

.project-section {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(99,179,237,0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.project-section h4 {
  font-size: 0.82rem;
  color: #63b3ed;
  margin-bottom: 0.5rem;
}

/* Bug severity */
.project-section-wide { margin: 0.75rem 0 0.5rem; }

.project-section-wide h4 {
  font-size: 0.82rem;
  color: #63b3ed;
  margin-bottom: 0.5rem;
}

.severity-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.severity-badge {
  padding: 0.2rem 0.65rem;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
}

.s1 { background: rgba(245,101,101,0.15); color: #fc8181; border: 1px solid rgba(245,101,101,0.4); }
.s2 { background: rgba(237,137,54,0.15);  color: #f6ad55; border: 1px solid rgba(237,137,54,0.4); }
.s3 { background: rgba(104,211,145,0.15); color: #68d391; border: 1px solid rgba(104,211,145,0.4); }

.key-finding {
  margin-top: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: rgba(99,179,237,0.06);
  border-left: 3px solid #63b3ed;
  border-radius: 0 5px 5px 0;
  font-size: 0.76rem;
  color: #a0aec0;
  font-style: italic;
}

.project-tools {
  font-size: 0.76rem;
  color: #718096;
  margin-top: 0.75rem;
  line-height: 1.8;
}

/* QA media padding & buttons */
.QA-media { padding-top: 100px; }

.QAproject-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  padding-left: 110px;
}

/* ================================================
   HIRE ME SECTION
   ================================================ */

.hire-me-title {
  border-left: 8px solid #00aaff;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-left: 20px;
  color: white;
}
 
.hire-me-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}


.hire-me-card {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5),
              0 2px 8px rgba(0, 0, 0, 0.3);
}
 
/* ── SLIDER ── */
.slider-wrapper { position: relative; }
 
.slider-nav { display: flex; align-items: center; gap: 1rem; margin-bottom: .75rem; }
.slider-tabs { display: flex; gap: 8px; }
.slider-tab { font-size: 11px; font-weight: 600; padding: 5px 14px; border-radius: 999px; cursor: pointer; border: 1px solid; transition: .2s; }
.active-quick   { background: rgba(0,191,255,.15);  border-color: #00bfff; color: #00d4ff; }
.inactive-quick { background: transparent; border-color: #1a3a5c; color: #3a5a7a; }
.active-std     { background: rgba(251,191,36,.15); border-color: #fbbf24; color: #fbbf24; }
.inactive-std   { background: transparent; border-color: #1a3a5c; color: #3a5a7a; }
.slider-counter { margin-left: auto; font-size: 11px; color: #3a5a7a; }
 
.slider-viewport { overflow: hidden; border-radius: 12px; }
.slider-track { display: flex; transition: transform .4s ease; }
.slider-track > .hire-me-card { flex: 0 0 100%; }
 
.arrow-btn {
  position: absolute; top: 55%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid #1a3a5c; background: #071829;
  color: #4a7a9b; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; transition: .2s;
}
.arrow-btn:hover { border-color: #00bfff; color: #00d4ff; }
.arrow-left  { left: -20px; }
.arrow-right { right: -20px; }
 
/* ── CARD ── */
.hire-me-card {
  display: flex; width: 100%;
  background: #0a1f35;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  overflow: hidden;
}
 
/* ── LEFT PANEL ── */
.hm-left {
  width: 240px; flex-shrink: 0;
  background: #071829; padding: 1.5rem;
  display: flex; flex-direction: column;
  border-right: 1px solid #1a3a5c;
}
.hm-badge { font-size: 10px; text-transform: uppercase; letter-spacing: .07em; border-radius: 3px; padding: 3px 9px; display: inline-block; width: fit-content; margin-bottom: .75rem; }
.hm-badge-q { color: #00d4ff; background: rgba(0,212,255,.1);   border: 1px solid rgba(0,212,255,.3); }
.hm-badge-s { color: #fbbf24; background: rgba(251,191,36,.1); border: 1px solid rgba(251,191,36,.3); }
 
.hm-pkg-name { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.hm-pkg-sub  { font-size: 12px; color: #5a7fa0; line-height: 1.5; margin-bottom: .75rem; }
 
.hm-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.hm-old   { font-size: 18px; font-weight: 600; color: #3a5a7a; text-decoration: line-through; text-decoration-color: #ff6b6b; text-decoration-thickness: 2px; }
.hm-price { font-size: 40px; font-weight: 700; line-height: 1; letter-spacing: -1px; }
.hm-price-q { color: #00d4ff; }
.hm-price-s { color: #fbbf24; }
.hm-per { font-size: 14px; font-weight: 400; color: #5a7fa0; }
 
.hm-early { font-size: 10px; padding: 4px 8px; border-radius: 4px; line-height: 1.4; margin-bottom: .5rem; }
.hm-early-q { color: #00d4ff; background: rgba(0,212,255,.08);   border: 1px solid rgba(0,212,255,.2); }
.hm-early-s { color: #fbbf24; background: rgba(251,191,36,.08); border: 1px solid rgba(251,191,36,.2); }
 
.hm-divl { border: none; border-top: 1px solid #1a3a5c; margin: .85rem 0; }
 
.hm-meta-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.hm-meta-icon { font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.hm-meta-text { font-size: 12px; color: #5a7fa0; line-height: 1.4; }
.hm-meta-text strong { display: block; font-size: 13px; color: #c0d8f0; font-weight: 600; }
 
.hm-plat-label { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: #3a5a7a; margin-bottom: 6px; }
.hm-plat-row   { display: flex; flex-direction: column; gap: 5px; }
.hm-plat-pill  { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #7ab8d4; }
.hm-pdot   { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.hm-pdot-q { background: #00bfff; }
.hm-pdot-s { background: #fbbf24; }
 
.hm-tester-box   { margin-top: auto; border-radius: 8px; padding: .75rem 1rem; }
.hm-tester-box-q { background: rgba(0,191,255,.06);  border: 1px solid rgba(0,191,255,.2); }
.hm-tester-box-s { background: rgba(251,191,36,.06); border: 1px solid rgba(251,191,36,.2); }
.hm-tester-label { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: #3a5a7a; margin-bottom: 4px; }
.hm-tester-name  { font-size: 14px; color: #fff; font-weight: 700; }
.hm-tester-role  { font-size: 11px; margin-top: 3px; line-height: 1.4; }
.hm-tester-role-q { color: #00d4ff; }
.hm-tester-role-s { color: #fbbf24; }
 
/* ── RIGHT PANEL ── */
.hm-right {
  flex: 1; min-width: 0; padding: 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto; gap: 0 1.5rem;
  align-content: start;
}
.hm-col-a { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; }
.hm-col-b { grid-column: 2; grid-row: 1; display: flex; flex-direction: column; }
.hm-full  { grid-column: 1 / -1; grid-row: 2; margin-top: .85rem; padding: .85rem 1rem; border-radius: 8px; }
.hm-full-q { background: rgba(0,191,255,.04);  border: 1px solid rgba(0,191,255,.15); }
.hm-full-s { background: rgba(251,191,36,.04); border: 1px solid rgba(251,191,36,.15); }
 
.hm-sh { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .55rem; padding-bottom: 4px; border-bottom: 1px solid #1a3a5c; }
.hm-sh-q { color: #2a6a8a; }
.hm-sh-s { color: #7a6a2a; }
.hm-sh-gap { margin-top: .85rem; }
 
.hm-check-item { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 8px; }
.hm-ci { width: 17px; height: 17px; border-radius: 50%; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.hm-ci-q { background: rgba(0,212,255,.12);   border: 1px solid rgba(0,212,255,.4);   color: #00d4ff; }
.hm-ci-s { background: rgba(251,191,36,.12); border: 1px solid rgba(251,191,36,.4); color: #fbbf24; }
.hm-ct { font-size: 13px; color: #c0d8f0; font-weight: 500; line-height: 1.4; }
.hm-ct small { display: block; font-size: 11px; font-weight: 400; color: #4a7a9b; margin-top: 2px; }
 
.hm-xi-row { display: flex; gap: 8px; align-items: center; margin-bottom: 6px; }
.hm-xi { width: 15px; height: 15px; border-radius: 50%; background: rgba(255,255,255,.03); border: 1px solid #1a3a5c; color: #3a5a7a; font-size: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hm-xt { font-size: 12px; color: #3a5a7a; }
 
.hm-dg { display: flex; flex-direction: column; gap: 6px; }
.hm-dc { border-radius: 6px; padding: .5rem .75rem; display: flex; align-items: center; gap: 10px; transition: border-color .15s; }
.hm-dc-q { background: rgba(0,191,255,.04);  border: 1px solid rgba(0,191,255,.12); }
.hm-dc-q:hover { border-color: rgba(0,191,255,.3); }
.hm-dc-s { background: rgba(251,191,36,.04); border: 1px solid rgba(251,191,36,.12); }
.hm-dc-s:hover { border-color: rgba(251,191,36,.3); }
.hm-dc-icon { font-size: 15px; flex-shrink: 0; }
.hm-dc-t   { font-size: 12px; color: #c0d8f0; font-weight: 600; }
.hm-dc-sub { font-size: 10px; color: #4a7a9b; }
 
.hm-how { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.hm-step { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; }
.hm-sn { width: 28px; height: 28px; border-radius: 50%; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.hm-sn-q { background: rgba(0,191,255,.12);   border: 1px solid rgba(0,191,255,.35);   color: #00d4ff; }
.hm-sn-s { background: rgba(251,191,36,.12); border: 1px solid rgba(251,191,36,.35); color: #fbbf24; }
.hm-st  { font-size: 11px; color: #4a7a9b; line-height: 1.4; }
.hm-arr { font-size: 14px; color: #1a3a5c; flex-shrink: 0; padding-bottom: 14px; }
 
.hm-cta { display: block; width: 97%; padding: 11px; border: none; border-radius: 8px; font-size: 15px; font-weight: 700; color: #fff; text-align: center; text-decoration: none; cursor: pointer; transition: opacity .15s, box-shadow .15s; }
.hm-cta-q { background: linear-gradient(135deg,#0099cc,#00bfff); box-shadow: 0 4px 20px rgba(0,191,255,.35); }
.hm-cta-q:hover { opacity:.9; color:#fff; box-shadow: 0 6px 25px rgba(0,191,255,.5); }
.hm-cta-s { background: linear-gradient(135deg,#d97706,#fbbf24); box-shadow: 0 4px 20px rgba(251,191,36,.35); }
.hm-cta-s:hover { opacity:.9; color:#fff; box-shadow: 0 6px 25px rgba(251,191,36,.5); }
.hm-note { font-size: 11px; color: #3a5a7a; text-align: center; margin-top: 6px; }
 
/* ── Navbar Hire Me button ── */
.nav-links a[href="contact.html"] {
  background: linear-gradient(135deg,#0099cc,#00bfff);
  color: #fff; font-weight: 600;
  box-shadow: 0 3px 12px rgba(0,191,255,.35);
  transition: opacity .15s, box-shadow .15s;
}
.nav-links a[href="contact.html"]:hover {
  opacity: .88;
  box-shadow: 0 5px 18px rgba(0,191,255,.5);
}
.hm-full {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5),
              0 2px 8px rgba(0, 0, 0, 0.3);
}
 
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hire-me-title { font-size: 32px; }
  .hire-me-section { padding: 16px; }
  .hire-me-card { flex-direction: column; }
  .hm-left { width: 100%; border-right: none; border-bottom: 1px solid #1a3a5c; }
  .hm-right { grid-template-columns: 1fr; }
  .hm-col-a, .hm-col-b, .hm-full { grid-column: 1; grid-row: auto; }
  .arrow-left  { left: -48px; }
  .arrow-right { right: -48px; }
}

/* ================================================
   GAMING EXPERIENCE SECTION
   ================================================ */

.games-played-section { padding: 60px 20px; }

.games-played-container { max-width: 1200px; margin: auto; }

.games-played-title {
  border-left: 8px solid #00aaff;
  padding-left: 15px;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
}

.section-lbl {
  font-size: 11px;
  font-weight: 600;
  color: #5a7fa0;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #00aaff;
  flex-shrink: 0;
  animation: gpPulse 1.8s infinite;
}

@keyframes gpPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* Now grid */
.now-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 2.5rem;
}

.now-card {
  background: #0a1f35;
  border: 1px solid #1a3a5c;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}

.now-card:hover {
  border-color: #00aaff55;
  transform: translateY(-2px);
}

.now-thumb {
  width: 100%;
  height: 160px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.now-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.now-body   { padding: 10px 13px 14px; }
.now-name   { font-size: 13px; font-weight: 600; color: white; margin-bottom: 3px; }
.now-sub    { font-size: 11px; color: #5a7fa0; margin-bottom: 8px; }

.now-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 10px;
}

.b-play {
  background: rgba(55,138,221,.12);
  color: #4fa3e8;
  border: 1px solid rgba(55,138,221,.3);
}

.b-done {
  background: rgba(29,158,117,.12);
  color: #1dc87a;
  border: 1px solid rgba(29,158,117,.3);
}

/* Divider */
.gp-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.div-line   { flex: 1; height: 1px; background: #1a3a5c; }
.div-txt    { font-size: 12px; color: #3a5a7a; }

/* Chips row */
.chips-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: flex-start; }

.gp-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #0b1b35;
  border: 1px solid #1a3a5c;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  color: #9ecbff;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: border-color .15s, color .15s;
}

.gp-chip:hover { border-color: #00aaff55; color: white; }
.gp-chip em    { font-size: 14px; font-style: normal; }
.gp-chip .ctag { font-size: 10px; color: #3a5a7a; margin-left: 2px; }

/* Expanded card */
.gp-card-exp {
  width: 165px;
  background: #0a1f35;
  border: 1px solid #00aaff55;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s, transform .2s;
}

.gp-card-exp:hover { border-color: #00aaff99; transform: translateY(-2px); }

.gp-card-exp .c-thumb { height: 85px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }
.gp-card-exp .c-body  { padding: 10px 12px 13px; }
.gp-card-exp .c-name  { font-size: 13px; font-weight: 600; color: white; margin-bottom: 3px; line-height: 1.3; }
.gp-card-exp .c-sub   { font-size: 11px; color: #5a7fa0; margin-bottom: 7px; }

/* ================================================
   FOOTER
   ================================================ */

.footer-bar {
  width: 100%;
  margin-top: 200px;
  padding: 20px 0;
  text-align: center;
  background: #071229;
  font-size: 14px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.5);
}

/* ================================================
   RESPONSIVE — Mobile (< 768px)
   ================================================ */

@media (max-width: 768px) {

  /* Navbar */
  .navbar          { padding: 12px 16px; }
  .navbar-container { flex-direction: column; align-items: center; gap: 10px; }
  .logo            { font-size: 16px; }
  .nav-links       { flex-wrap: wrap; justify-content: center; gap: 6px; }
  .nav-links a     { padding: 6px 10px; font-size: 13px; }

  /* Hero */
  .hero          { margin-top: 180px; padding: 0 16px; }
  .Name          { font-size: 32px; padding-left: 0; text-align: center; }
  .subtitle,
  .platforms     { font-size: 16px; text-align: center; }
  .contact       { text-align: center; font-size: 14px; }

  /* Dots */
  .section-nav   { right: 10px; gap: 10px; }

  /* Expertise */
  .expertise-section { padding: 60px 16px; }
  .expertise-title   { font-size: 32px; }
  .expertise-grid    { grid-template-columns: 1fr; gap: 16px; }
  .expertise-box     { padding: 24px 20px; }
  .expertise-box h3  { font-size: 22px; }

  /* Featured project */
  .project-section   { padding: 30px 16px; }
  .project-container { flex-direction: column; gap: 24px; }
  .project-title     { font-size: 32px; margin-bottom: 16px; }
  .project-left h3   { font-size: 20px; }
  .project-left p,
  .project-left li   { font-size: 15px; }
  .project-right img { max-width: 100%; }
  .project-buttons   { flex-wrap: wrap; padding-right: 0; padding-left: 23px; gap: 10px; }
  .btn-primary,
  .btn-secondary     { font-size: 14px; padding: 10px 18px; }

  /* Role section */
  .Dev-skill-section,
  .QA-section,
  .Game-design-section { padding: 16px; }
  .dev-skill-container,
  .QA-container,
  .Game-design-container { flex-direction: column; gap: 24px; }
  .Dev-skill-right,
  .QA-skill-right,
  .Game-design-skill-right { margin-top: 0; }
  .title-role  { font-size: 32px; margin-bottom: 24px; }
  .title-dev,
  .title-QA,
  .title-Game-design { font-size: 28px; }
  li { font-size: 15px; }

  /* Intro */
  .Introduction-section { padding: 40px 16px; }
  .introduction-title   { font-size: 32px; }
  .profile-img          { width: 100%; transform: none; }
  .Introduction-left p  { font-size: 15px; }

  /* Contact */
  .Contact-title { font-size: 32px; }

  /* Project cards (all) */
  .projects0, .projects1, .projects2,
  .projects3, .projects4, .projects5, .projects6 { padding: 16px; }

  .project0-card, .project1-card, .project2-card,
  .project3-card, .project4-card, .project5-card, .project6-card {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .project0-media, .project1-media, .project2-media,
  .project3-media, .project4-media, .project5-media, .project6-media {
    max-width: 100%;
    width: 100%;
  }

  /* QA stats */
  .project-stats    { padding: 0.5rem; }
  .stat-number      { font-size: 1rem; }
  .stat-label       { font-size: 0.52rem; }
  .project-sections-row { flex-direction: column; gap: 0.5rem; }
  .project1-btn     { flex: 1; text-align: center; min-width: 120px; }
  .QA-media         { padding-top: 0; }
  .QAproject-buttons { padding-left: 0; justify-content: center; }

  /* Gaming section */
  .games-played-title { font-size: 32px; }
  .now-grid           { grid-template-columns: repeat(2, 1fr); }
  .gp-card-exp        { width: 145px; }

  /* Hire Me */
  .hire-me-title   { font-size: 32px; }
  .hire-me-section { padding: 16px; }
  .hire-me-card    { flex-direction: column; }
  .hm-left         { width: 100%; border-right: none; border-bottom: 1px solid #1a3a5c; }
  .hm-right        { grid-template-columns: 1fr; }
  .hm-col-a, .hm-col-b, .hm-full { grid-column: 1; grid-row: auto; }

  /* Footer */
  .footer-bar { margin-top: 60px; font-size: 12px; padding: 16px; }

  img { max-width: 100%; height: auto; }
}

/* ================================================
   RESPONSIVE — Tablet (769px – 1024px)
   ================================================ */

@media (max-width: 1024px) and (min-width: 769px) {

  .nav-links a       { padding: 8px 12px; font-size: 14px; }
  .Name              { font-size: 40px; }
  .expertise-grid    { grid-template-columns: 1fr 1fr; gap: 24px; }
  .expertise-title   { font-size: 38px; }
  .project-container { gap: 40px; }
  .project-title     { font-size: 38px; }
  .title-role        { font-size: 40px; }
  .title-dev,
  .title-QA,
  .title-Game-design { font-size: 32px; }

  .project0-card,
  .project1-card, .project2-card,
  .project3-card, .project4-card,
  .project5-card, .project6-card { gap: 24px; padding: 24px; }

  .project0-media  { max-width: 360px; }
  .project-sections-row { gap: 0.5rem; }
  .project0-features li { font-size: 0.74rem; }
}