/* ============================================================
   DEEP INTERACTIVE ENTERTAINMENT — style.css
   ============================================================ */

/* ============================================================
   THEME VARIABLES
   ============================================================ */
[data-theme="light"] {
  --accent: #111111;
  --accent-hover: #333333;
  --bg: #ffffff;
  --bg2: #f5f5f5;
  --bg3: #ebebeb;
  --border: #dddddd;
  --text: #0a0a0a;
  --gray: #666666;
  --card: #ffffff;
  --shadow: rgba(0,0,0,0.07);
  --shadow-hover: rgba(0,0,0,0.16);
  --nav-bg: rgba(255,255,255,0.96);
  --footer-bg: #0a0a0a;
  --footer-text: #ffffff;
  --tag-bg: rgba(0,0,0,0.05);
  --tag-border: rgba(0,0,0,0.1);
}

[data-theme="dark"] {
  --accent: #ffffff;
  --accent-hover: #cccccc;
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --border: #2a2a2a;
  --text: #f0f0f0;
  --gray: #888888;
  --card: #111111;
  --shadow: rgba(0,0,0,0.4);
  --shadow-hover: rgba(0,0,0,0.6);
  --nav-bg: rgba(10,10,10,0.96);
  --footer-bg: #000000;
  --footer-text: #ffffff;
  --tag-bg: rgba(255,255,255,0.06);
  --tag-border: rgba(255,255,255,0.1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
  transition: background .4s, color .4s;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ============================================================
   THEME TOGGLE
   ============================================================ */
.theme-toggle {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 4px 20px var(--shadow-hover);
  transition: all .35s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle:hover { transform: scale(1.12) rotate(20deg); box-shadow: 0 8px 28px var(--shadow-hover); }
.theme-toggle:active { transform: scale(0.95); }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  transition: background .4s, border-color .4s;
  box-shadow: 0 2px 16px var(--shadow);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { width: 44px; height: 44px; object-fit: contain; transition: all .4s; }
.logo-img:hover { transform: scale(1.1); opacity: .85; }
.logo-txt {
  font-family: 'Orbitron', monospace;
  font-size: 12px; font-weight: 700;
  color: var(--text); line-height: 1.3;
  letter-spacing: 1px; transition: color .4s;
}
.logo-sub { font-size: 9px; color: var(--gray); letter-spacing: 3px; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color .3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .3s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

/* NAV SOCIAL */
.nav-social { display: flex; gap: 8px; }
.nav-social a {
  width: 34px; height: 34px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  transition: all .3s;
  background: var(--bg);
  overflow: hidden;
}
.nav-social a img { width: 20px; height: 20px; object-fit: contain; transition: all .3s; }
.nav-social a img[alt="Steam"],
.nav-social a img[alt="YouTube"] { width: 29px; height: 29px; }
[data-theme="light"] .nav-social a img { filter: grayscale(1) brightness(0.3); }
[data-theme="dark"]  .nav-social a img { filter: invert(1); }
.nav-social a:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 6px 14px var(--shadow); }
[data-theme="light"] .nav-social a:hover img { filter: grayscale(0) brightness(1); }
[data-theme="dark"]  .nav-social a:hover img { filter: invert(1) brightness(1.2); }

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher { position: relative; display: flex; align-items: center; }

.lang-btn {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 0 10px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all .3s;
  white-space: nowrap;
}
.lang-btn:hover { border-color: var(--accent); background: var(--bg3); }
.lang-btn .lang-flag { font-size: 15px; line-height: 1; }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px var(--shadow-hover);
  z-index: 200;
  min-width: 155px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
}
.lang-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gray);
  transition: background .2s, color .2s;
  border-bottom: 1px solid var(--border);
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: var(--bg2); color: var(--text); }
.lang-option.active { color: var(--text); background: var(--tag-bg); }
.lang-option .flag { font-size: 17px; line-height: 1; }

/* ============================================================
   HAMBURGER & MOBILE MENU
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none;
  border-radius: 6px;
  transition: background .2s;
}
.hamburger:hover { background: var(--bg2); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
/* Hamburger → X animasyonu */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 73px; left: 0; right: 0;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  z-index: 99;
  padding: 8px 24px 16px;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 24px var(--shadow);
  animation: slideDown .25s ease both;
}
.mobile-menu.open { display: flex; }

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

.mobile-menu a {
  color: var(--gray);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text); padding-left: 6px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
  background: var(--bg);
  transition: background .4s;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: .5;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 80%);
  transition: opacity .4s;
}

.hero-accent {
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .03;
  animation: breathe 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-accent2 {
  position: absolute; bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .03;
  animation: breathe 8s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

.htag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; letter-spacing: 4px;
  color: var(--gray);
  margin-bottom: 20px;
  position: relative; z-index: 2;
  animation: fu .8s ease both;
  background: var(--tag-bg);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--tag-border);
}

.htitle {
  font-family: 'Orbitron', monospace;
  font-size: clamp(42px, 8vw, 100px);
  font-weight: 900;
  line-height: .95;
  text-align: center;
  position: relative; z-index: 2;
  animation: fu .8s .15s ease both;
  color: var(--text);
  transition: color .4s;
}
.t1 { display: block; }
.t2 { display: block; -webkit-text-stroke: 2px var(--accent); color: transparent; transition: all .4s; }
.t3 { display: block; font-size: .45em; letter-spacing: 12px; margin-top: 12px; color: var(--gray); font-weight: 400; }

.hline {
  margin-top: 28px;
  font-size: 17px;
  color: var(--gray);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative; z-index: 2;
  text-align: center;
  animation: fu .8s .3s ease both;
}

.hcta {
  margin-top: 48px;
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 2;
  animation: fu .8s .45s ease both;
}

.hstats {
  position: relative; z-index: 2;
  margin-top: 80px;
  display: flex; gap: 60px;
  animation: fu .8s .6s ease both;
}
.stat { text-align: center; }
.sn { font-family: 'Orbitron', monospace; font-size: 36px; font-weight: 900; color: var(--text); display: block; transition: color .4s; }
.sl { font-size: 11px; color: var(--gray); letter-spacing: 3px; text-transform: uppercase; margin-top: 4px; }
.sdiv { width: 1px; background: var(--border); align-self: stretch; }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btnp {
  position: relative;
  padding: 15px 40px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Orbitron', monospace;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all .3s;
  overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 16px var(--shadow);
}
.btnp img { width: 20px; height: 20px; object-fit: contain; }
[data-theme="light"] .btnp img { filter: brightness(0) invert(1); }
[data-theme="dark"]  .btnp img { filter: brightness(0); }
.btnp::before {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left .45s;
}
.btnp:hover { background: var(--accent-hover); box-shadow: 0 8px 28px var(--shadow-hover); transform: translateY(-3px); }
.btnp:hover::before { left: 100%; }
.btnp:active { transform: translateY(-1px); }

.btns {
  position: relative;
  padding: 15px 40px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: 'Orbitron', monospace;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  background: transparent;
  transition: all .3s;
  overflow: hidden;
  display: inline-block;
}
.btns-inner { position: relative; z-index: 1; }
.btns::before { content: ''; position: absolute; inset: 0; background: var(--accent); opacity: 0; transition: opacity .3s; }
.btns:hover { box-shadow: 0 8px 24px var(--shadow); transform: translateY(-3px); }
.btns:hover::before { opacity: 1; }
.btns:hover .btns-inner { color: var(--bg); }
.btns:active { transform: translateY(-1px); }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
section { padding: 100px 60px; transition: background .4s; }

.shdr { text-align: center; margin-bottom: 72px; }
.stag { font-family: 'Share Tech Mono', monospace; font-size: 11px; letter-spacing: 5px; color: var(--gray); text-transform: uppercase; display: block; margin-bottom: 12px; }
.stitle { font-family: 'Orbitron', monospace; font-size: clamp(26px, 4vw, 46px); font-weight: 900; color: var(--text); transition: color .4s; }
.stitle span { -webkit-text-stroke: 1.5px var(--accent); color: transparent; }
.sdesc { margin-top: 14px; font-size: 16px; color: var(--gray); max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.7; font-weight: 300; }

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--bg2); }

.agrid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; }

.atxt h2 { font-family: 'Orbitron', monospace; font-size: 30px; font-weight: 900; color: var(--text); margin-bottom: 20px; line-height: 1.2; transition: color .4s; }
.atxt h2 span { -webkit-text-stroke: 1px var(--accent); color: transparent; }
.atxt p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 14px; font-weight: 300; }

.afeats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.feat { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); letter-spacing: 1px; font-weight: 600; transition: color .3s; padding: 4px 0; }
.feat::before { content: '▸'; color: var(--accent); transition: transform .3s; }
.feat:hover { color: var(--text); }
.feat:hover::before { transform: translateX(4px); }

.acard {
  background: var(--card);
  border: 1.5px solid var(--border);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 24px var(--shadow);
  transition: all .4s;
  position: relative;
  overflow: hidden;
}
.acard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); }
.acard:hover { box-shadow: 0 12px 40px var(--shadow-hover); transform: translateY(-4px); }

.ctag { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--gray); letter-spacing: 2px; margin-bottom: 24px; }
.srow { display: flex; gap: 32px; flex-wrap: wrap; }
.sb .n { font-family: 'Orbitron', monospace; font-size: 40px; font-weight: 900; color: var(--text); display: block; transition: color .4s; }
.sb .l { font-size: 11px; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; }

.plat { margin-top: 32px; padding-top: 28px; border-top: 1.5px solid var(--border); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.plbl { font-size: 11px; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; margin-right: 4px; }
.pbadge { padding: 5px 14px; border: 1.5px solid var(--border); font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--text); border-radius: 20px; transition: all .3s; cursor: default; font-weight: 600; }
.pbadge:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); transform: translateY(-2px); }

/* ============================================================
   PLATFORMS
   ============================================================ */
#platforms { background: var(--bg); }

.plat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }

.plat-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  border-radius: 12px;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}
.plat-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transition: transform .35s; transform-origin: left; }
.plat-card:hover { box-shadow: 0 16px 48px var(--shadow-hover); transform: translateY(-6px); border-color: var(--accent); }
.plat-card:hover::after { transform: scaleX(1); }

.plat-logo { width: 72px; height: 72px; object-fit: contain; margin: 0 auto 16px; display: block; transition: transform .4s; }
[data-theme="light"] .plat-logo { filter: grayscale(1) brightness(0.2); }
[data-theme="dark"]  .plat-logo { filter: grayscale(1) invert(1); }
.plat-card:hover .plat-logo { transform: scale(1.15); }
[data-theme="light"] .plat-card:hover .plat-logo { filter: grayscale(0) brightness(1); }
[data-theme="dark"]  .plat-card:hover .plat-logo { filter: grayscale(0) invert(1) brightness(1.2); }

.plat-name { font-family: 'Orbitron', monospace; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; transition: color .4s; }
.plat-desc { font-size: 13px; color: var(--gray); line-height: 1.6; font-weight: 300; }

/* ============================================================
   GAMES
   ============================================================ */
#games { background: var(--bg2); }

.ggrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; max-width: 1100px; margin: 0 auto; }

.gcard { background: var(--card); border: 1.5px solid var(--border); overflow: hidden; border-radius: 12px; transition: all .4s; }
.gcard:hover { box-shadow: 0 20px 60px var(--shadow-hover); transform: translateY(-8px); border-color: var(--accent); }

.gthumb { width: 100%; height: 220px; background: var(--bg3); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.gthumb img.cover { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gcard:hover .gthumb img.cover { transform: scale(1.06); }

.gbadge { position: absolute; top: 12px; left: 12px; padding: 5px 12px; background: var(--accent); color: var(--bg); font-family: 'Share Tech Mono', monospace; font-size: 10px; letter-spacing: 2px; border-radius: 4px; animation: badgepulse 2.5s ease-in-out infinite; }
@keyframes badgepulse { 0%, 100% { opacity: 1; } 50% { opacity: .6; } }

.ginfo { padding: 24px 28px; }
.ggenre { font-size: 11px; color: var(--gray); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; font-family: 'Share Tech Mono', monospace; }
.gtitle { font-family: 'Orbitron', monospace; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 10px; transition: color .4s; }
.gdesc { font-size: 14px; color: var(--gray); line-height: 1.6; font-weight: 300; margin-bottom: 20px; }

.btnstm { display: inline-flex; align-items: center; gap: 10px; padding: 11px 22px; background: var(--bg3); border: 1.5px solid var(--border); color: var(--text); text-decoration: none; font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1px; transition: all .3s; border-radius: 6px; }
.btnstm img { width: 20px; height: 20px; object-fit: contain; }
[data-theme="light"] .btnstm img { filter: grayscale(1) brightness(0.2); }
[data-theme="dark"]  .btnstm img { filter: grayscale(1) invert(1); }
.btnstm:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); box-shadow: 0 6px 20px var(--shadow); transform: translateY(-2px); }
[data-theme="light"] .btnstm:hover img { filter: brightness(0) invert(1); }
[data-theme="dark"]  .btnstm:hover img { filter: brightness(0); }

/* ============================================================
   TEAM
   ============================================================ */
#team { background: var(--bg); }

.tgrid { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; max-width: 1100px; margin: 0 auto; }

.tcard { flex: 1; min-width: 240px; max-width: 300px; background: var(--card); border: 1.5px solid var(--border); padding: 36px 28px; text-align: center; border-radius: 12px; transition: all .35s; }
.tcard:hover { box-shadow: 0 20px 50px var(--shadow-hover); transform: translateY(-6px); border-color: var(--accent); }

.av { width: 90px; height: 90px; border-radius: 50%; border: 2px solid var(--border); margin: 0 auto 20px; overflow: hidden; transition: all .4s; background: var(--bg2); }
.tcard:hover .av { border-color: var(--accent); box-shadow: 0 0 0 4px var(--tag-bg); }
.av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.tname { font-family: 'Orbitron', monospace; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; transition: color .4s; }
.trole { font-size: 11px; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; font-family: 'Share Tech Mono', monospace; }
.tbio { font-size: 13px; color: var(--gray); line-height: 1.6; font-weight: 300; margin-bottom: 20px; }

.tlink { display: inline-flex; align-items: center; gap: 6px; padding: 8px 20px; border: 1.5px solid var(--border); color: var(--text); text-decoration: none; font-size: 11px; letter-spacing: 2px; font-family: 'Share Tech Mono', monospace; border-radius: 6px; transition: all .3s; position: relative; overflow: hidden; }
.tlink-inner { position: relative; z-index: 1; }
.tlink::before { content: ''; position: absolute; inset: 0; background: var(--accent); opacity: 0; transition: opacity .3s; }
.tlink:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 16px var(--shadow); }
.tlink:hover::before { opacity: 1; }
.tlink:hover .tlink-inner { color: var(--bg); }

/* ============================================================
   SOCIAL
   ============================================================ */
#social { background: var(--bg2); }

.social-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; max-width: 700px; margin: 0 auto; }

.sico-link {
  width: 56px; height: 56px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  transition: all .35s;
  background: var(--card);
  position: relative;
  overflow: hidden;
}
.sico-link img { width: 28px; height: 28px; object-fit: contain; transition: all .3s; position: relative; z-index: 1; }
[data-theme="light"] .sico-link img { filter: grayscale(1) brightness(0.3); }
[data-theme="dark"]  .sico-link img { filter: grayscale(1) invert(1); }

/* Tooltip */
.sico-link::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--text); color: var(--bg);
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px; letter-spacing: 1px;
  padding: 4px 10px;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
  z-index: 20;
}
.sico-link:hover::after { opacity: 1; }

.sico-link::before { content: ''; position: absolute; inset: 0; background: var(--accent); opacity: 0; transition: opacity .3s; }
.sico-link:hover { border-color: var(--accent); transform: translateY(-5px) scale(1.1); box-shadow: 0 10px 24px var(--shadow-hover); }
.sico-link:hover::before { opacity: 1; }
[data-theme="light"] .sico-link:hover img { filter: brightness(0) invert(1); }
[data-theme="dark"]  .sico-link:hover img { filter: brightness(0); }

/* Font Awesome & SVG icon links */
.sico-fa i, .sico-fa svg {
  width: 28px; height: 28px;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  transition: all .3s;
}
[data-theme="light"] .sico-fa i,
[data-theme="light"] .sico-fa svg { color: #222; fill: #222; }
[data-theme="dark"]  .sico-fa i,
[data-theme="dark"]  .sico-fa svg { color: #eee; fill: #eee; }
.sico-link:hover .sico-fa i,
.sico-link:hover .sico-fa svg,
.sico-fa:hover i,
.sico-fa:hover svg { color: var(--bg); fill: var(--bg); }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--bg); }

.cwrap { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.cinfo h3 { font-family: 'Orbitron', monospace; font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 24px; transition: color .4s; }

.citem { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; transition: all .3s; padding: 12px; border-radius: 8px; }
.citem:hover { transform: translateX(4px); background: var(--bg2); }

.cico { width: 36px; height: 36px; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text); font-size: 14px; flex-shrink: 0; border-radius: 8px; background: var(--bg2); transition: all .3s; }
.citem:hover .cico { background: var(--accent); color: var(--bg); border-color: var(--accent); }

.ctxt { font-size: 14px; color: var(--gray); line-height: 1.6; }
.ctxt strong { color: var(--text); display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 3px; transition: color .4s; }
.ctxt a { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border); transition: all .3s; }
.ctxt a:hover { opacity: .6; }

.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 11px; letter-spacing: 2px; color: var(--gray); text-transform: uppercase; margin-bottom: 8px; font-family: 'Share Tech Mono', monospace; }
.fg input, .fg textarea {
  width: 100%; padding: 12px 16px;
  background: var(--bg2); border: 1.5px solid var(--border);
  color: var(--text); font-family: 'Rajdhani', sans-serif;
  font-size: 15px; outline: none;
  transition: all .3s; resize: none; border-radius: 6px;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--gray); opacity: .6; }
.fg input:focus, .fg textarea:focus { border-color: var(--accent); background: var(--card); box-shadow: 0 0 0 3px var(--tag-bg); }
.fg textarea { height: 110px; }

.btnsub {
  width: 100%; padding: 14px;
  background: var(--accent); color: var(--bg);
  border: none; cursor: pointer;
  font-family: 'Orbitron', monospace; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  border-radius: 6px; transition: all .3s;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}
.btnsub::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); transition: left .45s; }
.btnsub:hover { background: var(--accent-hover); box-shadow: 0 8px 28px var(--shadow-hover); transform: translateY(-2px); }
.btnsub:hover::before { left: 100%; }
.btnsub:active { transform: translateY(0); }
.btnsub:disabled { opacity: .4; cursor: not-allowed; transform: none; }

.form-msg { margin-top: 12px; font-family: 'Share Tech Mono', monospace; font-size: 12px; text-align: center; height: 20px; }
.form-msg.ok  { color: #22aa55; }
.form-msg.err { color: #cc3333; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--footer-bg);
  padding: 40px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  transition: background .4s;
}
.flogo { font-family: 'Orbitron', monospace; font-size: 14px; font-weight: 900; color: var(--footer-text); }
.fcopy { font-size: 12px; color: rgba(255,255,255,.35); letter-spacing: 1px; }
.flinks { display: flex; gap: 24px; }
.flinks a { font-size: 12px; color: rgba(255,255,255,.35); text-decoration: none; letter-spacing: 1px; transition: color .3s; }
.flinks a:hover { color: var(--footer-text); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- LARGE DESKTOP (1400px+) ---- */
@media (min-width: 1400px) {
  nav { padding: 16px 80px; }
  section { padding: 120px 80px; }
  .agrid, .ggrid, .tgrid, .plat-cards { max-width: 1300px; }
  .cwrap { max-width: 1100px; }
}

/* ---- DESKTOP / LAPTOP (1025px – 1399px) ---- */
@media (max-width: 1399px) and (min-width: 1025px) {
  nav { padding: 16px 48px; }
  section { padding: 100px 48px; }
}

/* ---- TABLET LANDSCAPE (769px – 1024px) ---- */
@media (max-width: 1024px) {
  nav { padding: 16px 32px; }
  section { padding: 90px 36px; }

  .agrid { gap: 40px; }
  .cwrap { gap: 40px; }
  .ggrid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
  .plat-cards { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .tgrid { gap: 20px; }
  .tcard { min-width: 200px; }

  .htitle { font-size: clamp(38px, 6vw, 80px); }
  .hstats { gap: 40px; margin-top: 60px; }
}

/* ---- TABLET PORTRAIT (577px – 768px) ---- */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
  .nav-social { gap: 6px; }
  .nav-social a { width: 30px; height: 30px; }
  .nav-social a img { width: 16px; height: 16px; }
  .nav-social a img[alt="Steam"],
  .nav-social a img[alt="YouTube"] { width: 23px; height: 23px; }

  section { padding: 80px 24px; }

  /* Hero */
  .hero { padding: 100px 24px 60px; }
  .htag { font-size: 10px; letter-spacing: 3px; }
  .hline { font-size: 15px; letter-spacing: 2px; }
  .hstats { gap: 24px; margin-top: 50px; }
  .hstats .sdiv { display: none; }
  .sn { font-size: 30px; }

  /* About */
  .agrid { grid-template-columns: 1fr; gap: 32px; }
  .acard { padding: 28px; }
  .srow { gap: 20px; }
  .sb .n { font-size: 32px; }
  .afeats { gap: 8px; }

  /* Platforms */
  .plat-cards { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }

  /* Games */
  .ggrid { grid-template-columns: 1fr; gap: 24px; }

  /* Team */
  .tgrid { flex-direction: column; align-items: center; gap: 20px; }
  .tcard { max-width: 100%; width: 100%; min-width: unset; }

  /* Contact */
  .cwrap { grid-template-columns: 1fr; gap: 36px; }

  /* Footer */
  footer { padding: 28px 20px; flex-direction: column; text-align: center; gap: 12px; }
  .flinks { justify-content: center; }

  /* Theme toggle */
  .theme-toggle { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 18px; }

  /* Lang dropdown */
  .lang-dropdown { right: auto; left: 0; }
}

/* ---- MOBILE (max 576px) ---- */
@media (max-width: 576px) {
  nav { padding: 12px 16px; }
  .logo-txt { font-size: 10px; }
  .logo-sub { display: none; }
  .logo-img { width: 36px; height: 36px; }

  section { padding: 70px 16px; }

  /* Hero */
  .hero { padding: 90px 16px 50px; }
  .htag { font-size: 9px; letter-spacing: 2px; padding: 5px 12px; }
  .htitle { font-size: clamp(36px, 11vw, 56px); }
  .t3 { font-size: .4em; letter-spacing: 6px; }
  .hline { font-size: 13px; letter-spacing: 1px; }
  .hcta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hcta .btnp, .hcta .btns { width: 100%; justify-content: center; text-align: center; padding: 14px 20px; }
  .hstats { gap: 16px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
  .sn { font-size: 26px; }
  .sl { font-size: 10px; }

  /* About */
  .atxt h2 { font-size: 22px; }
  .afeats { grid-template-columns: 1fr; gap: 6px; }
  .acard { padding: 24px 20px; }

  /* Platforms */
  .plat-cards { grid-template-columns: 1fr; }
  .plat-logo { width: 56px; height: 56px; }

  /* Games */
  .gthumb { height: 180px; }
  .ginfo { padding: 18px 20px; }
  .gtitle { font-size: 18px; }

  /* Team */
  .tcard { padding: 28px 20px; }

  /* Social */
  .social-row { gap: 10px; }
  .sico-link { width: 48px; height: 48px; border-radius: 10px; }
  .sico-link img { width: 24px; height: 24px; }

  /* Contact */
  .cinfo h3 { font-size: 17px; }
  .fg input, .fg textarea { font-size: 14px; }

  /* Section headers */
  .stitle { font-size: clamp(22px, 6vw, 36px); }
  .sdesc { font-size: 14px; }
  .shdr { margin-bottom: 48px; }

  /* Footer */
  .flogo { font-size: 11px; }
  .fcopy { font-size: 11px; }
}

/* ---- SMALL MOBILE (max 380px) ---- */
@media (max-width: 380px) {
  .htitle { font-size: clamp(30px, 10vw, 46px); }
  .t3 { letter-spacing: 4px; font-size: .38em; }
  .hcta .btnp, .hcta .btns { font-size: 11px; padding: 12px 16px; }
  .nav-social { display: none; }
  .lang-btn span:not(.lang-flag) { display: none; }
  .sico-link { width: 44px; height: 44px; }
  .sico-link img { width: 22px; height: 22px; }
  .tcard { padding: 24px 16px; }
  .acard { padding: 20px 16px; }
}