/*
Theme Name: CODUM.TR
Theme URI: https://codum.tr
Description: CODUM.TR Central Ecosystem Theme
Version: 1.0.0
Author: CODUM
Text Domain: codum-tr
Requires at least: 6.0
Requires PHP: 7.4
*/

:root {
  --bg-body: #0b0d0e;
  --bg-sidebar: #0d1117;
  --bg-card: #0d1117;
  --bg-code: #050709;
  --bg-input: #080b10;
  --border-main: #21262d;
  --border-light: #30363d;
  --text-primary: #c9d1d9;
  --text-heading: #f0f6fc;
  --text-muted: #8b949e;
  --accent: #20e371;
  --accent-hover: #00ff66;
  --danger: #f85149;
  --danger-soft: #ff7b72;
  --warning: #ffd600;
  --info: #00ffff;
  --pink: #ff2a8d;
  --purple: #b388ff;
  --netflix: #ff0040;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, SFMono-Regular, Consolas, monospace; }

body {
  background-color: var(--bg-body);
  color: var(--text-primary);
  min-height: 100%;
  height: auto;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  user-select: auto;
}

/* MARQUEE */
.top-marquee-container {
  background-color: #000;
  border-bottom: 1px solid var(--border-main);
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  height: 32px;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  position: relative;
}
@keyframes marquee-scan {
  0%   { transform: translateX(-100%) skewX(-20deg); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(2000px) skewX(-20deg); opacity: 0; }
}
.top-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(32, 227, 113, 0.08) 30%,
    rgba(32, 227, 113, 0.28) 50%,
    rgba(32, 227, 113, 0.08) 70%,
    transparent 100%
  );
  animation: marquee-scan 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
.top-marquee-wrapper {
  display: flex;
  width: max-content;
  animation: infiniteMarquee 32s linear infinite;
}
.top-marquee-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
}
.marquee-item {
  color: var(--accent);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.marquee-item:hover,
.marquee-item:focus-visible {
  color: var(--accent-hover);
  outline: none;
  text-shadow: 0 0 8px rgba(32, 227, 113, 0.75);
}
@keyframes infiniteMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ANA DÜZEN */
.app-container {
  display: block;
  width: 100%;
  height: auto;
  min-height: calc(100vh - 72px);
  overflow: visible;
}

/* SOL MENÜ */
.sidebar-left {
  width: 220px;
  background-color: var(--bg-sidebar);
  border-right: 1px solid var(--border-main);
  display: flex;
  flex-direction: column;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-shrink: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.brand-header {
  padding: 0 16px 16px 16px;
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
  display: block;
  text-decoration: none;
}
.home-3d-btn {
  display: block;
  margin: 0 14px 12px;
  text-decoration: none !important;
  perspective: 400px;
  cursor: pointer;
}
.home-3d-face {
  position: relative;
  background: linear-gradient(145deg, #131a14, #0d1410);
  border: 1.5px solid rgba(32, 227, 113, 0.35);
  border-radius: 10px;
  padding: 7px 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  box-shadow:
    0 0 0 1px rgba(32, 227, 113, 0.06),
    0 3px 10px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(32, 227, 113, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.12s ease, box-shadow 0.2s, border-color 0.2s;
  will-change: transform;
  overflow: hidden;
}
.home-3d-shine {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  pointer-events: none;
  transition: background 0.08s;
  z-index: 1;
}
.home-3d-icon {
  width: 18px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 3px rgba(32, 227, 113, 0.55));
  transition: filter 0.2s;
}
.home-3d-label {
  font-size: 11px;
  font-weight: 800;
  color: #20e371;
  letter-spacing: 1px;
  text-shadow: 0 0 6px rgba(32, 227, 113, 0.5);
  position: relative;
  z-index: 2;
}
.home-3d-btn:hover .home-3d-face {
  border-color: rgba(32, 227, 113, 0.65);
  box-shadow:
    0 0 0 1px rgba(32, 227, 113, 0.15),
    0 6px 20px rgba(0, 0, 0, 0.5),
    0 0 14px rgba(32, 227, 113, 0.12),
    inset 0 1px 0 rgba(32, 227, 113, 0.15);
}
.home-3d-btn:hover .home-3d-icon {
  filter: drop-shadow(0 0 6px rgba(32, 227, 113, 0.9));
}
.menu-section-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  padding: 8px 16px 6px 16px;
  text-transform: uppercase;
}
.menu-item-btn {
  width: calc(100% - 16px);
  margin: 2px 8px;
  padding: 8px 10px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.menu-item-btn:hover, .menu-item-btn.active {
  background-color: #161b22;
  color: var(--accent);
}
.menu-item-btn svg { fill: currentColor; flex-shrink: 0; }

.sidebar-bottom-links {
  position: relative;
  margin: 18px 8px 0;
  padding: 12px 8px 10px;
  border: 1px solid rgba(32, 227, 113, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(32, 227, 113, 0.07), transparent 50%),
    rgba(5, 7, 9, 0.42);
  box-shadow: inset 0 1px 0 rgba(32, 227, 113, 0.08), 0 8px 20px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}
.sidebar-bottom-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 10px rgba(32, 227, 113, 0.7);
}
.sidebar-bottom-links .menu-section-title {
  padding: 2px 6px 7px;
  color: var(--accent);
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(32, 227, 113, 0.38);
}
.sidebar-bottom-links .menu-section-title::before {
  content: "// ";
  color: var(--info);
}
.sidebar-bottom-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 29px;
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 11px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.sidebar-bottom-link::after {
  content: ">";
  margin-left: auto;
  color: var(--accent);
  font-weight: 800;
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.sidebar-bottom-link:hover {
  background: rgba(32, 227, 113, 0.08);
  border-color: rgba(32, 227, 113, 0.28);
  color: var(--accent);
  padding-left: 11px;
  text-shadow: 0 0 8px rgba(32, 227, 113, 0.35);
}
.sidebar-bottom-link:hover::after,
.sidebar-bottom-link:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}
.sidebar-bottom-link:focus-visible {
  outline: none;
  background: rgba(32, 227, 113, 0.08);
  border-color: var(--accent);
  color: var(--accent);
}
.social-summary {
  margin: 20px 16px 0;
  padding-top: 14px;
  border-top: 1px solid var(--border-main);
}
.social-summary-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.social-name-list {
  display: grid;
  gap: 8px;
}
.social-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 10px 12px;
}

.module-description {
  margin-bottom: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 13px;
}
.guide-block {
  margin-bottom: 18px;
  display: grid;
  gap: 14px;
}

.code-summary {
  background: rgba(32, 227, 113, 0.05);
  border: 1px solid rgba(32, 227, 113, 0.14);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 14px;
}
.code-summary h3 {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--accent);
}
.code-summary p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.7;
}

.share-block {
  background: rgba(7, 10, 15, 0.95);
  border: 1px solid rgba(32, 227, 113, 0.14);
  border-radius: 12px;
  padding: 14px;
}
.share-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: #0b1220;
  color: #1da1f2;
  border: 1px solid rgba(29, 161, 242, 0.2);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.share-btn:hover {
  background: rgba(29, 161, 242, 0.08);
  transform: translateY(-1px);
}

/* ORTA PANEL */
.main-content {
  flex: 1;
  background-color: #010409;
  padding: 16px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.home-overview {
  background: rgba(13, 17, 23, 0.9);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 14px;
}
.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 18px;
  min-height: 255px;
  padding: 24px 28px 22px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
  background:
    radial-gradient(circle at 78% 52%, rgba(32, 227, 113, 0.12), transparent 28%),
    radial-gradient(circle at 82% 50%, rgba(0, 229, 255, 0.08), transparent 40%),
    linear-gradient(90deg, rgba(32, 227, 113, 0.025), transparent 48%, rgba(179, 136, 255, 0.025));
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0 44px, rgba(255,255,255,.018) 45px), repeating-linear-gradient(0deg, transparent 0 44px, rgba(255,255,255,.014) 45px);
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000 80%, transparent);
}
.home-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.home-hero-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(32, 227, 113, 0.07);
  border: 1px solid rgba(32, 227, 113, 0.2);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 12px;
  letter-spacing: 0.45px;
}
.home-hero-title {
  display: block;
  width: 100%;
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: var(--text-heading);
  letter-spacing: -1.5px;
  line-height: 0.98;
  animation: hero-rainbow-color 3s ease-in-out infinite;
  text-align: left;
  transform: none;
}
.home-hero-title span {
  color: var(--accent);
}
.home-hero-sub {
  max-width: 500px;
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: left !important;
}
.home-hero-live {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .35px;
}
.home-hero-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #20e371;
  box-shadow: 0 0 12px #20e371;
  animation: home-hero-live-pulse 1.4s ease-in-out infinite;
}
.home-hero-live i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(32,227,113,.7);
}
.home-hero-platforms {
  position: relative;
  z-index: 1;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  perspective: 900px;
  isolation: isolate;
}
.home-hero-platform {
  --platform-color: #20e371;
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid color-mix(in srgb, var(--platform-color) 65%, #fff 15%);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(9,16,22,.95), rgba(2,7,11,.84));
  color: var(--platform-color);
  box-shadow: 0 0 18px color-mix(in srgb, var(--platform-color) 28%, transparent), inset 0 0 18px rgba(255,255,255,.025);
  text-decoration: none;
  transform-style: preserve-3d;
  animation: home-hero-platform-float 3.6s ease-in-out infinite;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.home-hero-platform:hover,
.home-hero-platform:focus-visible {
  transform: translateY(-8px) scale(1.08) !important;
  border-color: var(--platform-color);
  box-shadow: 0 0 30px color-mix(in srgb, var(--platform-color) 55%, transparent), inset 0 0 18px rgba(255,255,255,.04);
  outline: none;
}
.home-hero-platform-icon svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
  filter: drop-shadow(0 0 8px currentColor);
}
.home-hero-platform-twitter { --platform-color: #f3f7ff; animation-delay: -.2s; }
.home-hero-platform-instagram { --platform-color: #ff2c96; animation-delay: -.8s; }
.home-hero-platform-threads { --platform-color: #f3f7ff; animation-delay: -1.4s; }
.home-hero-platform-tumblr { --platform-color: #22c9ff; animation-delay: -2s; }
.home-hero-platform-netflix { --platform-color: #ff1744; animation-delay: -2.6s; }
.home-hero-platform-orbit {
  position: absolute;
  width: 360px;
  height: 105px;
  border: 1px solid rgba(32,227,113,.35);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(32,227,113,.12), inset 0 0 20px rgba(0,229,255,.05);
  transform: rotate(-8deg);
  animation: home-hero-orbit-spin 8s linear infinite;
  pointer-events: none;
}
.home-hero-platform-orbit-a::after,
.home-hero-platform-orbit-b::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #20e371;
  box-shadow: 0 0 12px #20e371;
}
.home-hero-platform-orbit-a::after { left: 12%; top: 9%; }
.home-hero-platform-orbit-b::after { right: 10%; bottom: 7%; background: #ff2c96; box-shadow: 0 0 12px #ff2c96; }
.home-hero-platform-orbit-b {
  width: 390px;
  height: 130px;
  border-color: rgba(217,70,239,.28);
  transform: rotate(11deg);
  animation-direction: reverse;
  animation-duration: 10s;
}
.home-hero-platform-core {
  position: absolute;
  width: 245px;
  height: 38px;
  bottom: 8px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(32,227,113,.32), rgba(217,70,239,.16) 45%, transparent 72%);
  filter: blur(4px);
  animation: home-hero-core-pulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes home-hero-platform-float {
  0%, 100% { transform: translateY(2px) rotateX(0deg); }
  50% { transform: translateY(-8px) rotateX(3deg); }
}
@keyframes home-hero-orbit-spin {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}
@keyframes home-hero-core-pulse {
  0%, 100% { opacity: .55; transform: scaleX(.86); }
  50% { opacity: 1; transform: scaleX(1.08); }
}
@keyframes home-hero-live-pulse {
  0%, 100% { opacity: .65; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.15); }
}
.home-hero-stats {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
}
.home-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.home-section-title::before, .home-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-light);
}
.home-overview p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.7;
}
.platform-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  padding: 0 16px 16px;
}
.platform-showcase-card {
  display: block;
  color: var(--text-primary);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b1018;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.platform-showcase-card:visited {
  color: var(--text-primary);
}
.platform-showcase-card * {
  text-decoration: none;
}
.platform-showcase-card:hover {
  transform: translateY(-2px);
  border-color: rgba(32, 227, 113, 0.45);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.platform-showcase-thumb {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(32, 227, 113, 0.05), rgba(13, 17, 23, 0.9));
}
.platform-showcase-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
}
.platform-showcase-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.platform-showcase-code {
  background: #070b12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px;
  display: grid;
  gap: 5px;
}
.platform-showcase-code span {
  font-size: 10px;
  color: #88f2b6;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
}
.platform-showcase-meta {
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
}
.platform-showcase-meta strong {
  font-size: 12px;
  font-weight: 700;
}
.platform-showcase-meta small {
  font-size: 10px;
  color: var(--text-muted);
}
.cyber-ad-banner {
  position: relative;
  display: flex;
  min-height: 210px;
  align-items: center;
  gap: 30px;
  margin: 2px 16px 0;
  padding: 46px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 49, 74, 0.58);
  border-radius: 12px;
  background:
    linear-gradient(110deg, rgba(255, 49, 74, 0.2), transparent 44%),
    repeating-linear-gradient(90deg, transparent 0 43px, rgba(255, 255, 255, 0.025) 44px),
    linear-gradient(135deg, #1d080d, #090c12 52%, #061317);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.46), inset 0 1px rgba(255, 255, 255, 0.06), inset 0 -20px 36px rgba(0, 0, 0, 0.25);
  color: var(--text-heading);
  text-decoration: none;
  transform: perspective(1000px) rotateX(1deg);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.cyber-ad-banner::before {
  content: "010101  ACCESS  110010  CONTACT  011010  SECURE  010101  ACCESS";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: rgba(255, 49, 74, 0.075);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 9px;
  line-height: 2.1;
  transform: rotate(-8deg) scale(1.18);
  animation: cyber-ad-data-drift 8s linear infinite;
  pointer-events: none;
}
.cyber-ad-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.12) 50%, transparent 65%);
  transform: translateX(-130%);
  animation: cyber-ad-scanner 4.6s ease-in-out infinite;
  pointer-events: none;
}
.cyber-ad-banner:hover,
.cyber-ad-banner:focus-visible {
  border-color: var(--danger);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.56), 0 0 26px rgba(255, 49, 74, 0.18), inset 0 1px rgba(255, 255, 255, 0.09);
  outline: none;
  transform: perspective(1000px) translateY(-3px) rotateX(0);
}
.cyber-ad-marquee {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.cyber-ad-marquee-track {
  display: flex;
  width: max-content;
}
.cyber-ad-marquee-track span {
  display: block;
  padding-right: 28px;
}
.cyber-ad-marquee-top {
  top: 12px;
  color: #ff6173;
  text-shadow: 0 0 9px rgba(255, 49, 74, 0.45);
}
.cyber-ad-marquee-top .cyber-ad-marquee-track {
  animation: cyber-ad-ticker-left 13s linear infinite;
}
.cyber-ad-marquee-bottom {
  bottom: 12px;
  color: #52f39a;
  text-shadow: 0 0 9px rgba(32, 227, 113, 0.4);
}
.cyber-ad-marquee-bottom .cyber-ad-marquee-track {
  animation: cyber-ad-ticker-right 13s linear infinite;
}
.cyber-ad-core {
  position: relative;
  z-index: 1;
  display: grid;
  width: 94px;
  height: 94px;
  flex: 0 0 94px;
  place-items: center;
  border: 1px solid rgba(255, 81, 100, 0.8);
  border-radius: 18px;
  background:
    linear-gradient(45deg, transparent 47%, rgba(255, 49, 74, 0.15) 48% 52%, transparent 53%),
    radial-gradient(circle, rgba(255, 49, 74, 0.4), rgba(255, 49, 74, 0.04) 60%, transparent 61%);
  animation: cyber-ad-heartbeat 1.8s ease-in-out infinite;
  transform: rotate(45deg);
}
.cyber-ad-core-symbol {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  text-shadow: 0 0 10px var(--danger);
  transform: rotate(-45deg);
}
.cyber-ad-core-beam {
  position: absolute;
  z-index: 3;
  width: 116px;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 49, 74, 0.25) 26%, transparent 74%);
  box-shadow: 0 0 8px rgba(255, 49, 74, 0.35);
  transform: rotate(-45deg);
}
.cyber-ad-core-beam::before {
  content: "";
  position: absolute;
  top: 0;
  width: 38px;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #ff8190 48%, #fff 50%, #ff314a 54%, transparent);
  box-shadow: 0 0 7px #ff314a, 0 0 16px rgba(255, 49, 74, 0.9);
  animation: cyber-ad-beam-scan 1.55s linear infinite;
}
.cyber-ad-core-beam::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 129, 144, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255, 49, 74, 0.9);
  animation: cyber-ad-ping 1.55s ease-out infinite;
}
.cyber-ad-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  max-width: 600px;
}
.cyber-ad-kicker {
  color: #ff6173;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}
.cyber-ad-title {
  color: var(--text-heading);
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: 0.8px;
  text-shadow: 2px 0 rgba(255, 49, 74, 0.62), -2px 0 rgba(0, 229, 255, 0.28), 0 0 18px rgba(255, 49, 74, 0.17);
  animation: cyber-ad-title-glitch 5.5s steps(1, end) infinite;
}
.cyber-ad-text {
  color: #a7b1bd;
  font-size: 13px;
  line-height: 1.55;
}
.cyber-ad-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-width: 184px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 13px 15px;
  overflow: hidden;
  border: 1px solid rgba(32, 227, 113, 0.65);
  border-radius: 7px;
  background: rgba(5, 30, 18, 0.74);
  box-shadow: 0 0 16px rgba(32, 227, 113, 0.12), inset 0 1px rgba(255, 255, 255, 0.06);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
}
.cyber-ad-action::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(32, 227, 113, 0.24) 50%, transparent 70%);
  transform: translateX(-130%);
  animation: cyber-ad-action-scan 3s ease-in-out infinite;
}
@keyframes cyber-ad-data-drift {
  from { transform: rotate(-8deg) scale(1.18); }
  to { transform: rotate(-8deg) translateX(-60px) scale(1.18); }
}
@keyframes cyber-ad-scanner {
  0%, 50% { transform: translateX(-130%); }
  85%, 100% { transform: translateX(130%); }
}
@keyframes cyber-ad-ticker-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes cyber-ad-ticker-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@keyframes cyber-ad-heartbeat {
  0%, 100% { transform: rotate(45deg) scale(1); box-shadow: 0 0 0 8px rgba(255, 49, 74, 0.06), 0 0 28px rgba(255, 49, 74, 0.42); }
  12% { transform: rotate(45deg) scale(1.12); box-shadow: 0 0 0 13px rgba(255, 49, 74, 0.09), 0 0 48px rgba(255, 49, 74, 0.82); }
  24% { transform: rotate(45deg) scale(0.98); box-shadow: 0 0 0 8px rgba(255, 49, 74, 0.04), 0 0 24px rgba(255, 49, 74, 0.35); }
  36% { transform: rotate(45deg) scale(1.07); box-shadow: 0 0 0 16px rgba(255, 49, 74, 0.06), 0 0 58px rgba(255, 49, 74, 0.9); }
  52% { transform: rotate(45deg) scale(1); box-shadow: 0 0 0 8px rgba(255, 49, 74, 0.06), 0 0 30px rgba(255, 49, 74, 0.45); }
}
@keyframes cyber-ad-beam-scan {
  from { transform: translateX(-44px); }
  to { transform: translateX(118px); }
}
@keyframes cyber-ad-ping {
  0% { transform: scale(0.2); opacity: 0; }
  28% { opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes cyber-ad-title-glitch {
  0%, 93%, 100% { transform: translate(0); }
  94% { transform: translate(-2px, 1px); }
  95% { transform: translate(2px, -1px); }
  96% { transform: translate(-1px, 0); }
}
@keyframes cyber-ad-action-scan {
  0%, 45% { transform: translateX(-130%); }
  75%, 100% { transform: translateX(130%); }
}
@media screen and (max-width: 768px) {
  .cyber-ad-banner {
    min-height: 0;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 18px;
    margin: 2px 0 0;
    padding: 42px 22px;
  }
  .cyber-ad-core {
    width: 70px;
    height: 70px;
    flex-basis: 70px;
    border-radius: 14px;
  }
  .cyber-ad-title { font-size: 23px; }
  .cyber-ad-action { width: 100%; margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cyber-ad-banner,
  .cyber-ad-banner::before,
  .cyber-ad-banner::after,
  .cyber-ad-marquee-track,
  .cyber-ad-core,
  .cyber-ad-core-beam::before,
  .cyber-ad-core-beam::after,
  .cyber-ad-title,
  .cyber-ad-action::before {
    animation: none;
  }
}
.static-page-card {
  background: rgba(13, 17, 23, 0.95);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.static-page-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(32, 227, 113, 0.08);
  border: 1px solid rgba(32, 227, 113, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  letter-spacing: 0.4px;
}
.static-page-title {
  margin: 0;
  color: var(--text-heading);
  font-size: 26px;
  font-weight: 800;
}
.static-page-content {
  display: grid;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.8;
}
.static-page-content p,
.static-page-content ul {
  margin: 0;
}
.static-page-content ul {
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.static-page-content a {
  color: var(--accent);
  text-decoration: underline;
}
.static-page-content h2 {
  color: var(--text-heading);
  font-size: 15px;
  margin: 8px 0 0;
}
.contact-form {
  display: grid;
  gap: 8px;
  margin-top: 6px;
  padding: 16px;
  background: #080b10;
  border: 1px solid rgba(32, 227, 113, 0.18);
  border-radius: 10px;
}
.contact-form label {
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #050709;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  color: var(--text-primary);
  font: inherit;
  font-size: 13px;
  padding: 10px 12px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: 1px solid rgba(32, 227, 113, 0.25);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form-submit {
  justify-self: start;
  margin-top: 4px;
  padding: 9px 14px;
  background: #0c2b1a;
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: var(--accent);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.contact-form-submit:hover {
  background: rgba(32, 227, 113, 0.16);
}
.contact-form-note {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.5;
}
.contact-form-honeypot {
  display: none;
}
.form-notice {
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 12px;
}
.form-notice-success {
  background: rgba(32, 227, 113, 0.1);
  border: 1px solid rgba(32, 227, 113, 0.35);
  color: #b7ffb8;
}
.form-notice-error {
  background: rgba(248, 81, 73, 0.12);
  border: 1px solid rgba(248, 81, 73, 0.45);
  color: #ffd7d7;
}
.display-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px;
}
.display-card h2 {
  font-size: 18px;
  color: var(--text-heading);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-main);
  padding-bottom: 10px;
  flex-wrap: wrap;
}

/* PLATFORM ARAÃ‡ MENÃœSÃœ */
.platform-tools {
  position: relative;
  overflow: hidden;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(32, 227, 113, 0.2);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(32, 227, 113, 0.035) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(rgba(32, 227, 113, 0.035) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(135deg, rgba(14, 24, 20, 0.96), rgba(7, 12, 12, 0.98));
}
.platform-tools::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 25%;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: platform-tools-scan 5s linear infinite;
}
@keyframes platform-tools-scan {
  to { left: 120%; }
}
.platform-tools-heading {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  text-align: center;
  border-bottom: 1px solid rgba(32, 227, 113, 0.13);
}
.platform-tools-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-align: center;
}
.platform-tools h3 {
  color: var(--text-heading);
  font-size: 15px;
  letter-spacing: 0.2px;
}
.platform-tools-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.platform-tool-link {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  border: 1px solid rgba(139, 148, 158, 0.18);
  border-radius: 7px;
  background: rgba(3, 8, 8, 0.72);
  transition: border-color .18s ease, background .18s ease, transform .18s ease, color .18s ease;
}
.platform-tool-link:hover,
.platform-tool-link:focus-visible {
  color: #d9ffe5;
  border-color: rgba(32, 227, 113, 0.7);
  background: rgba(32, 227, 113, 0.09);
  transform: translateY(-2px);
  outline: none;
}
.platform-tool-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(32, 227, 113, 0.32);
  background: rgba(32, 227, 113, 0.08);
  border-radius: 5px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: -0.3px;
  box-shadow: inset 0 0 8px rgba(32, 227, 113, 0.06);
}
.platform-tool-link b {
  margin-left: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 400;
}
.guide-step {
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 12.5px;
}
.guide-step h4 {
  color: var(--accent);
  font-size: 13.5px;
  margin-bottom: 4px;
}
.guide-step a,
.display-card .guide-step a {
  color: #00ff66 !important;
  font-weight: 700;
  text-decoration: underline;
}
.guide-step a:hover,
.display-card .guide-step a:hover {
  color: #7ee787 !important;
}
.code-note-window {
  background: rgba(0, 255, 102, 0.06);
  border: 1px solid rgba(0, 255, 102, 0.2);
  border-radius: 10px;
  padding: 16px;
  margin-top: 16px;
}
.code-note-title {
  color: #b7ffb8;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.code-note {
  background-color: rgba(0, 255, 102, 0.08);
  border: 1px solid rgba(0, 255, 102, 0.18);
  color: #d5ffca;
}
.code-box-wrapper { 
  position: relative; 
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.copy-btn {
  position: static;
  align-self: flex-start;
  background-color: #21262d;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  margin-bottom: 8px;
}
.copy-btn:hover {
  background-color: var(--border-light);
  color: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}
.code-box {
  background-color: var(--bg-code);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 14px;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 11px;
  line-height: 1.45;
  max-height: 300px;
  overflow: auto;
  white-space: pre;
  word-break: normal;
  overflow-wrap: normal;
  user-select: text;
  color: #7ee787;
}
.code-box:empty {
  min-height: 96px;
  background-image: linear-gradient(90deg, rgba(32, 227, 113, 0.04), transparent 58%);
}
.hidden-code {
  display: none;
}




.code-full-wrapper {
  background: rgba(7, 10, 15, 0.96);
  border: 1px solid rgba(0, 255, 102, 0.14);
  border-radius: 12px;
  padding: 14px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.code-full-wrapper .copy-btn {
  position: static;
  width: auto;
  align-self: flex-start;
  margin-bottom: 0;
}

.code-full-box {
  max-height: 300px;
  overflow: auto;
  white-space: pre;
  word-break: normal;
  overflow-wrap: normal;
  background-color: transparent;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.features-list li::before {
  content: "✔";
  color: var(--accent);
}
.empty-state-right {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.6;
  border: 1px dashed var(--border-light);
  padding: 16px;
  border-radius: 6px;
  text-align: center;
}

/* PLATFORM RENKLERİ */
.menu-item-btn.platform-netflix {
  color: var(--netflix);
}

/* VERSİYON BADGE */
.script-version {
  display: inline-block;
  background: #0c2b1a;
  color: var(--accent-hover);
  border: 1px solid var(--accent-hover);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-family: monospace;
  font-weight: bold;
}

/* TABLET - 900px ve altı */
@media screen and (max-width: 900px) {
  body { height: auto; overflow-y: auto; }
  .app-container { flex-direction: column; height: auto; overflow: visible; }
  .sidebar-left { width: 100%; border-right: none; border-bottom: 1px solid var(--border-main); padding: 15px; }
  .sidebar-left h3 { font-size: 14px; margin-bottom: 12px; }
  .sidebar-left nav { display: flex; flex-wrap: wrap; gap: 8px; }
  .menu-item-btn { width: auto; flex: 1; min-width: 85px; padding: 10px 12px; font-size: 13px; }
  .main-content { overflow-y: visible; padding: 15px; }
  .code-box { max-height: 360px; font-size: 11px; }
  .home-hero-title { font-size: 42px; }
  .home-hero-sub { font-size: 14px; }
  .code-summary { margin-bottom: 15px; }
  .info-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
  .alert-social-media { padding: 15px; gap: 10px; }
}

/* MOBİL - 768px ve altı */
@media screen and (max-width: 768px) {
  body { height: auto; overflow-y: auto; }
  .app-container { flex-direction: column; height: auto; }
  .top-marquee-container { height: 40px; }
  .marquee-text { font-size: 12px; }
  
  .sidebar-left { width: 100%; border-right: none; border-bottom: 1px solid var(--border-main); padding: 12px; max-height: none; }
  .sidebar-left h3 { font-size: 13px; margin-bottom: 10px; }
  .sidebar-left nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .menu-item-btn { width: 100%; padding: 10px 8px; font-size: 12px; }
  
  .main-content { width: 100%; padding: 12px; overflow-y: visible; margin-right: 0; }
  .home-hero-title { font-size: 32px; margin: 20px 0 10px; }
  .home-hero-sub { font-size: 13px; line-height: 1.5; }
  .home-hero-stats { gap: 7px; }
  .home-stat { min-width: 0; padding: 10px 5px 8px; }
  .home-stat-value { font-size: 21px; }
  .home-stat small { font-size: 9px; letter-spacing: 0.2px; }
  
  .code-center-card { padding: 12px; margin-bottom: 15px; }
  .right-code-title { font-size: 11px; }
  .right-code-subtitle { font-size: 10px; }
  .code-box { max-height: 300px; font-size: 10px; padding: 10px; }
  .copy-btn { padding: 8px 12px; font-size: 12px; }
  .static-page-card { padding: 14px; }
  .static-page-title { font-size: 22px; }
  
  .info-grid { grid-template-columns: 1fr; gap: 12px; }
  .info-card { padding: 12px; }
  .info-card-value { font-size: 24px; }
  .info-card-label { font-size: 11px; }
  
  .guide-block { padding: 12px; margin-bottom: 12px; }
  .platform-tools { padding: 12px; }
  .guide-step h4 { font-size: 13px; margin-bottom: 8px; }
  .guide-step p { font-size: 12px; line-height: 1.4; }
  
  .alert-social-media { padding: 12px; gap: 8px; }
  .alert-item { padding: 10px 8px; font-size: 11px; }
  
  .code-box-wrapper { gap: 6px; }
  
  .sidebar-bottom-links { margin-top: 16px; }
}

/* MOBİL KÜÇÜK - 480px ve altı */
@media screen and (max-width: 480px) {
  
  .top-marquee-container { height: 35px; }
  .marquee-text { font-size: 10px; }
  
  .sidebar-left nav { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .menu-item-btn { padding: 8px 6px; font-size: 11px; }
  
  .main-content { padding: 10px; }
  .home-hero-title { font-size: 26px; margin: 15px 0 8px; }
  .home-hero-sub { font-size: 12px; line-height: 1.4; }
  
  .code-center-card { padding: 10px; }
  .right-code-title { font-size: 10px; }
  .right-code-subtitle { font-size: 9px; }
  .code-box { max-height: 250px; font-size: 9px; padding: 8px; line-height: 1.3; }
  .copy-btn { padding: 7px 10px; font-size: 11px; }
  
  .info-grid { gap: 10px; }
  .info-card { padding: 10px; }
  .info-card-value { font-size: 20px; }
  .info-card-label { font-size: 10px; }
  
  .guide-step h4 { font-size: 12px; margin-bottom: 6px; }
  .platform-tools-heading { align-items: center; flex-direction: column; text-align: center; }
  .platform-tool-link { width: 100%; font-size: 11px; }
  .platform-tool-link b { margin-left: auto; }
  .guide-step p { font-size: 11px; line-height: 1.3; }
  
  .alert-social-media { padding: 10px; gap: 6px; }
  .alert-item { padding: 8px 6px; font-size: 10px; }
  
  .language-selector { flex-wrap: wrap; }
}

.language-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  width: min(420px, calc(100vw - 40px));
  display: flex;
  align-items: end;
  gap: 16px;
  padding: 16px;
  background: rgba(13, 17, 23, 0.98);
  border: 1px solid rgba(32, 227, 113, 0.35);
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}
.cookie-consent[hidden] {
  display: none;
}
.cookie-consent-copy {
  display: grid;
  gap: 5px;
}
.cookie-consent-copy strong {
  color: var(--accent);
  font-size: 12px;
}
.cookie-consent-copy p,
.cookie-consent-copy a {
  margin: 0;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.5;
}
.cookie-consent-copy a {
  color: var(--accent);
}
.cookie-consent-actions {
  display: flex;
  flex-shrink: 0;
  gap: 7px;
}
.cookie-btn {
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 8px 10px;
  background: #0c2b1a;
  color: var(--accent);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}
.cookie-btn-secondary {
  border-color: var(--border-light);
  background: transparent;
  color: var(--text-muted);
}
@media screen and (max-width: 480px) {
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent-actions {
    justify-content: flex-end;
  }
}
.language-selector-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.language-selector-mark {
  color: var(--accent);
  font-family: SFMono-Regular, Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
}
.lang-menu {
  display: flex;
  gap: 4px;
}
.lang-option {
  min-width: 31px;
  padding: 6px 5px;
  background: #080b10;
  border: 1px solid var(--border-light);
  border-radius: 5px;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.lang-option:hover {
  background: rgba(32, 227, 113, 0.1);
  color: var(--accent);
}
.lang-option.selected {
  background: #0c2b1a;
  border-color: var(--accent);
  color: var(--accent-hover);
}


/* CODUM TOOL WORKBENCH */
.platform-tool-link { appearance:none; font:inherit; text-align:left; cursor:pointer; }
.codum-tool-workbench { position:relative; margin:0 0 18px; border:1px solid rgba(32,227,113,.30); border-radius:10px; overflow:hidden; background:linear-gradient(90deg,rgba(32,227,113,.035) 1px,transparent 1px) 0 0/24px 24px,linear-gradient(rgba(32,227,113,.035) 1px,transparent 1px) 0 0/24px 24px,linear-gradient(135deg,rgba(12,25,20,.98),rgba(4,10,9,.98)); box-shadow:inset 0 0 30px rgba(32,227,113,.025); }
.codum-tool-workbench[hidden]{display:none}
.codum-tool-workbench-head{display:flex;justify-content:space-between;gap:16px;align-items:flex-start;padding:15px 16px;border-bottom:1px solid rgba(32,227,113,.14)}
.codum-tool-workbench-kicker{display:block;color:var(--accent);font-size:9px;font-weight:900;letter-spacing:1.1px;text-transform:uppercase}
.codum-tool-workbench-head h3{margin:4px 0 3px;color:var(--text-heading);font-size:15px}
.codum-tool-workbench-head p{margin:0;color:var(--text-secondary);font-size:11px}
.codum-tool-badge{color:#91ffb7;border:1px solid rgba(32,227,113,.32);background:rgba(32,227,113,.08);padding:5px 8px;font-size:9px;font-weight:900;white-space:nowrap}
.codum-tool-workbench-body{padding:16px}
.codum-tool-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:12px}
.codum-tool-field{display:flex;flex-direction:column;gap:6px}
.codum-tool-field label{color:#a6ffbe;font-size:10px;font-weight:800;letter-spacing:.4px}
.codum-tool-input,.codum-tool-textarea,.codum-tool-select{width:100%;box-sizing:border-box;color:#e7fff0;background:rgba(2,8,7,.82);border:1px solid rgba(139,148,158,.22);border-radius:6px;padding:10px 11px;font:12px SFMono-Regular,Consolas,"Liberation Mono",Menlo,monospace;outline:none}
.codum-tool-textarea{min-height:110px;resize:vertical}
.codum-tool-input:focus,.codum-tool-textarea:focus,.codum-tool-select:focus{border-color:rgba(32,227,113,.65);box-shadow:0 0 0 2px rgba(32,227,113,.08)}
.codum-tool-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.codum-tool-btn{appearance:none;border:1px solid rgba(32,227,113,.45);background:rgba(32,227,113,.08);color:#baffca;padding:9px 12px;border-radius:6px;font-size:10px;font-weight:900;cursor:pointer}
.codum-tool-btn:hover{background:rgba(32,227,113,.18);border-color:var(--accent);color:#fff}
.codum-tool-btn.primary{background:var(--accent);color:#041009;border-color:var(--accent)}
.codum-tool-result{margin-top:12px;padding:12px;border:1px solid rgba(32,227,113,.18);background:rgba(32,227,113,.035);border-radius:6px;color:#d9ffe5;font-size:11px;line-height:1.6;white-space:pre-wrap;word-break:break-word}
.codum-tool-preview{margin-top:10px;max-height:300px;width:100%;object-fit:contain;background:#020606;border:1px solid rgba(139,148,158,.18);border-radius:6px}
.codum-tool-hint{color:#87948c;font-size:10px;line-height:1.5;margin-top:6px}
.codum-tool-workbench-code-note{padding:8px 16px;border-top:1px solid rgba(32,227,113,.12);color:#718078;font-size:9px}
.codum-code-header{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:8px}
.codum-code-header strong{display:block;margin-top:3px;color:var(--text-heading);font-size:12px}
.codum-generated-code .copy-btn{margin-bottom:0}
@media (max-width:760px){.codum-tool-grid{grid-template-columns:1fr}.codum-tool-workbench-head,.codum-code-header{flex-direction:column;align-items:flex-start}}


/* ===== CODUM.TR 2026 TOOL UI REFINEMENT ===== */
.menu-item-btn .platform-nav-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  position: relative;
}
.menu-item-btn .platform-nav-icon svg {
  width: 15px;
  height: 15px;
  transform-origin: 50% 50%;
  transition: transform .22s ease, filter .22s ease;
}
.menu-item-btn:hover .platform-nav-icon svg,
.menu-item-btn.active .platform-nav-icon svg {
  animation: codum-platform-pulse 1.1s ease-in-out infinite;
  filter: drop-shadow(0 0 5px currentColor);
}
.menu-item-btn.platform-netflix .platform-nav-icon svg { filter: drop-shadow(0 0 4px rgba(255,0,64,.45)); }
@keyframes codum-platform-pulse {
  0%,100% { transform: translateY(0) rotate(0deg) scale(1); }
  35% { transform: translateY(-1px) rotate(-5deg) scale(1.08); }
  70% { transform: translateY(1px) rotate(5deg) scale(1.03); }
}

.sidebar-bottom-links { padding-top: 10px; }
.sidebar-bottom-links .menu-section-title { display: none; }

.platform-tool-link.is-selected {
  border-color: rgba(32,227,113,.82);
  background: linear-gradient(90deg, rgba(32,227,113,.12), rgba(32,227,113,.035));
  box-shadow: inset 3px 0 0 var(--accent), 0 0 18px rgba(32,227,113,.05);
}
.platform-tool-link.is-selected .platform-tool-icon {
  box-shadow: 0 0 12px rgba(32,227,113,.16), inset 0 0 10px rgba(32,227,113,.09);
}

/* Gemini benzeri kompakt kod satırı */
.codum-generated-code[hidden] { display: none !important; }
.codum-generated-code { margin-top: 12px; }
.codum-code-input-shell {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 9px 7px 8px;
  border: 1px solid rgba(139,148,158,.24);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(14,20,19,.96), rgba(5,10,9,.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 10px 30px rgba(0,0,0,.16);
}
.codum-code-glyph {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(32,227,113,.25);
  border-radius: 9px;
  color: var(--accent);
  background: rgba(32,227,113,.055);
  font: 800 11px/1 SFMono-Regular,Consolas,monospace;
}
.codum-code-input-content { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 2px; }
.codum-code-label { color: #6f7c75; font: 700 8px/1.1 SFMono-Regular,Consolas,monospace; letter-spacing: 1px; }
.codum-code-input-content strong { color: #e8fff0; font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.codum-code-input-shell .copy-btn {
  margin: 0;
  padding: 7px 8px;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 9px;
  background: transparent;
  border: 1px solid rgba(139,148,158,.18);
  color: #9aa69f;
}
.codum-code-input-shell .copy-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.codum-code-input-shell .copy-status { font-size: 8px; font-weight: 900; letter-spacing: .4px; }
.codum-code-input-shell .copy-btn:hover,
.codum-code-input-shell .copy-btn.is-copied { color: var(--accent); border-color: rgba(32,227,113,.55); background: rgba(32,227,113,.06); transform: none; }
.codum-generated-code .code-box {
  margin-top: 7px;
  max-height: 150px;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 9px;
  line-height: 1.42;
  background: rgba(1,5,5,.96);
}

/* ID / profil araçları */
.codum-id-tool,
.codum-profile-tool {
  display: grid;
  grid-template-columns: 76px minmax(0,1fr);
  gap: 15px;
  align-items: center;
}
.codum-id-orb,
.codum-profile-tool-visual {
  width: 76px;
  height: 76px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(32,227,113,.3);
  border-radius: 18px;
  background: radial-gradient(circle at 50% 50%, rgba(32,227,113,.13), rgba(2,8,7,.9) 68%);
  color: var(--accent);
  font: 900 15px SFMono-Regular,Consolas,monospace;
  box-shadow: inset 0 0 22px rgba(32,227,113,.06), 0 0 22px rgba(32,227,113,.035);
}
.codum-id-orb::before,
.codum-id-orb::after,
.codum-profile-orbit {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(32,227,113,.22);
  border-radius: 50%;
  animation: codum-orbit 4s linear infinite;
}
.codum-id-orb::after { inset: 17px; animation-duration: 2.8s; animation-direction: reverse; border-color: rgba(32,227,113,.12); }
@keyframes codum-orbit { to { transform: rotate(360deg); } }
.codum-profile-avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; border: 1px solid rgba(32,227,113,.45); background: rgba(32,227,113,.08); color: #baffca; font: 900 10px monospace; }
.codum-profile-result-card { display: flex; align-items: center; gap: 12px; }
.codum-profile-result-card img { width: 72px; height: 72px; object-fit: cover; border-radius: 16px; border: 1px solid rgba(32,227,113,.4); background: #020606; box-shadow: 0 0 18px rgba(32,227,113,.08); }
.codum-profile-result-card strong { display:block; color:#e7fff0; margin-bottom:7px; font-size:12px; }
.codum-profile-result-card a { color:var(--accent); font-size:10px; font-weight:800; text-decoration:none; }
.codum-profile-result-card a:hover { text-decoration:underline; }
.codum-media-preview-frame { min-height: 150px; display:grid; place-items:center; border:1px solid rgba(139,148,158,.18); border-radius:10px; background: radial-gradient(circle at 50% 35%, rgba(32,227,113,.05), rgba(1,5,5,.95) 70%); color:#66736c; font:800 9px monospace; letter-spacing:1px; overflow:hidden; }
.codum-media-preview-frame img,.codum-media-preview-frame video { display:block; width:100%; max-height:260px; object-fit:contain; background:#020606; }

@media (max-width:760px) {
  .codum-id-tool,.codum-profile-tool { grid-template-columns:1fr; }
  .codum-id-orb,.codum-profile-tool-visual { width:64px; height:64px; }
  .codum-code-input-shell .copy-status { display:none; }
  .codum-generated-code .code-box { max-height:130px; }
}


/* ===== CODUM.TR FINAL TOOL UI ===== */
.codum-tool-workbench-head { justify-content:center; align-items:center; position:relative; min-height:92px; padding:18px 54px; }
.codum-tool-title-wrap { width:100%; text-align:center; }
.codum-tool-workbench-kicker { margin-bottom:6px; }
.codum-tool-workbench-head h3 { margin:0; font-size:22px; line-height:1.2; letter-spacing:.2px; text-transform:uppercase; }
.codum-tool-head-actions { position:absolute; right:18px; top:18px; }
.codum-tool-workbench-body { padding:18px 20px 20px; }
.codum-tool-workbench-code-note { display:none !important; }
.codum-generated-code { margin:8px 0 18px; }
.codum-code-input-shell { min-height:54px; height:54px; padding:6px 8px; border-radius:16px; gap:9px; }
.codum-code-glyph { width:34px; height:34px; flex-basis:34px; border-radius:10px; }
.codum-code-inline { flex:1; min-width:0; margin:0; height:38px; overflow:auto; white-space:pre; scrollbar-width:thin; color:#b8ffca; font:500 9px/1.45 SFMono-Regular,Consolas,monospace; background:transparent; border:0; padding:3px 0; }
.codum-code-copy { flex:0 0 auto; height:36px !important; min-width:36px !important; padding:7px !important; }
.codum-code-copy .copy-status { display:none; }
.codum-code-copy svg { width:17px; height:17px; }
.codum-id-result { min-height:52px; display:flex; align-items:center; }
.codum-id-result-success { width:100%; display:flex; align-items:center; gap:12px; padding:10px 12px; border:1px solid rgba(32,227,113,.24); border-radius:10px; background:rgba(32,227,113,.035); }
.codum-id-result-success strong { color:#e8fff0; font:900 18px/1 SFMono-Regular,Consolas,monospace; }
.codum-id-result-success .codum-id-result-label { color:var(--accent); font:800 9px/1 SFMono-Regular,Consolas,monospace; letter-spacing:1px; }
.codum-id-result-success small { margin-left:auto; color:#7e8e86; font-size:9px; }
.codum-id-orb { animation:codum-id-glow 2.8s ease-in-out infinite; }
@keyframes codum-id-glow { 0%,100%{box-shadow:inset 0 0 22px rgba(32,227,113,.06),0 0 12px rgba(32,227,113,.03)}50%{box-shadow:inset 0 0 26px rgba(32,227,113,.14),0 0 24px rgba(32,227,113,.08)} }
.codum-profile-tool-visual { animation:codum-profile-float 3s ease-in-out infinite; }
@keyframes codum-profile-float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-4px)} }
@media (max-width:760px) {
  .codum-tool-workbench-head { min-height:82px; padding:16px 50px 16px 18px; }
  .codum-tool-workbench-head h3 { font-size:18px; }
  .codum-code-input-shell { height:52px; min-height:52px; }
  .codum-code-inline { font-size:8px; }
  .codum-id-result-success { flex-wrap:wrap; }
  .codum-id-result-success small { width:100%; margin-left:0; }
}

/* ===== CODUM.TR PLATFORM MOTION + TOOL POLISH ===== */
.menu-item-btn { --platform-color:#20e371; position:relative; overflow:hidden; }
.menu-item-btn::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,transparent,rgba(32,227,113,.08),transparent); transform:translateX(-120%); transition:transform .55s ease; pointer-events:none; }
.menu-item-btn:hover::before,.menu-item-btn.active::before { transform:translateX(120%); }
.menu-item-btn.platform-netflix { --platform-color:#ff0040; }
.menu-item-btn[data-platform="twitter"] { --platform-color:#e8eef5; }
.menu-item-btn[data-platform="instagram"] { --platform-color:#ff4f9a; }
.menu-item-btn[data-platform="threads"] { --platform-color:#f1f1f1; }
.menu-item-btn[data-platform="tumblr"] { --platform-color:#78a9d8; }
.menu-item-btn .platform-nav-icon { color:var(--platform-color); width:24px; height:24px; border:1px solid color-mix(in srgb,var(--platform-color) 38%, transparent); border-radius:7px; background:color-mix(in srgb,var(--platform-color) 5%, transparent); box-shadow:inset 0 0 10px rgba(32,227,113,.04); }
.menu-item-btn .platform-nav-icon::after { content:""; position:absolute; width:5px; height:5px; border-radius:50%; background:var(--platform-color); box-shadow:0 0 8px var(--platform-color); opacity:.5; transform:translate(7px,-7px); animation:codum-icon-scan 2.2s linear infinite; }
.menu-item-btn .platform-nav-icon svg { fill:currentColor; color:inherit; }
.menu-item-btn:hover .platform-nav-icon, .menu-item-btn.active .platform-nav-icon { border-color:var(--platform-color); box-shadow:0 0 13px color-mix(in srgb,var(--platform-color) 22%, transparent),inset 0 0 11px color-mix(in srgb,var(--platform-color) 10%, transparent); }
.menu-item-btn:hover .platform-nav-icon svg,.menu-item-btn.active .platform-nav-icon svg { animation:codum-platform-hacker 1.1s steps(2,end) infinite; filter:drop-shadow(0 0 5px var(--platform-color)); }
@keyframes codum-platform-hacker { 0%,100%{transform:translate(0) rotate(0) scale(1)} 25%{transform:translate(-1px,1px) rotate(-3deg) scale(1.05)} 50%{transform:translate(1px,-1px) rotate(2deg) scale(1.08)} 75%{transform:translate(0,1px) rotate(-2deg) scale(1.03)} }
@keyframes codum-icon-scan { 0%{transform:translate(-7px,7px);opacity:0} 35%{opacity:.8} 100%{transform:translate(9px,-9px);opacity:0} }
.platform-tools-heading h3 { text-transform:none; }
.codum-tool-workbench-head h3 { font-weight:900; letter-spacing:.4px; }
.codum-media-preview-frame { min-height:260px; }
.codum-media-preview-frame img,.codum-media-preview-frame video { max-height:420px; width:100%; height:auto; min-height:240px; object-fit:contain; }
.codum-tool-btn:disabled { opacity:.38; cursor:not-allowed; }
.codum-stylish-tool { display:grid; gap:16px; }
.codum-stylish-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:9px; }
.codum-style-card { display:flex; align-items:center; justify-content:space-between; gap:10px; min-width:0; padding:11px 12px; border:1px solid rgba(32,227,113,.15); background:rgba(2,8,7,.55); border-radius:10px; transition:.2s ease; }
.codum-style-card:hover { border-color:rgba(32,227,113,.45); transform:translateY(-1px); box-shadow:0 8px 22px rgba(32,227,113,.04); }
.codum-style-name { display:block; color:#72d98e; font:800 8px/1 monospace; letter-spacing:.7px; text-transform:uppercase; margin-bottom:6px; }
.codum-style-preview { color:#effff4; font-size:13px; line-height:1.35; white-space:pre-wrap; word-break:break-word; }
.codum-style-copy { flex:0 0 34px; width:34px; height:34px; display:grid; place-items:center; border:1px solid rgba(139,148,158,.18); background:rgba(255,255,255,.02); color:#a6b2ab; border-radius:9px; cursor:pointer; }
.codum-style-copy svg { width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.codum-style-copy:hover,.codum-style-copy.is-copied { color:var(--accent); border-color:rgba(32,227,113,.55); background:rgba(32,227,113,.07); }
.codum-media-tool .codum-tool-hint { margin-top:8px; }
@media(max-width:760px){.codum-stylish-grid{grid-template-columns:1fr}.codum-media-preview-frame{min-height:190px}.codum-media-preview-frame img,.codum-media-preview-frame video{min-height:170px}}

/* ID lookup compact input */
.codum-id-input-row{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:10px;align-items:center}
.codum-id-input-row .codum-tool-input{min-width:0}
.codum-id-input-row .codum-tool-btn{height:44px;white-space:nowrap}
.codum-id-orb-twitter{--id-color:#e8eef2;border-color:rgba(232,238,242,.28);color:#fff;background:radial-gradient(circle at 50% 50%,rgba(232,238,242,.12),rgba(2,8,7,.9) 68%)}
.codum-id-orb-instagram{--id-color:#d946ef;border-color:rgba(217,70,239,.3);color:#ff77d9;background:radial-gradient(circle at 50% 50%,rgba(217,70,239,.13),rgba(2,8,7,.9) 68%)}
.codum-id-orb-threads{--id-color:#fff;border-color:rgba(255,255,255,.24);color:#fff}
.codum-id-orb-tumblr{--id-color:#4aa3ff;border-color:rgba(74,163,255,.3);color:#78baff;background:radial-gradient(circle at 50% 50%,rgba(74,163,255,.13),rgba(2,8,7,.9) 68%)}
@media(max-width:760px){.codum-id-input-row{grid-template-columns:1fr}.codum-id-input-row .codum-tool-btn{width:100%}}


/* Platform SEO heading: keeps the existing terminal aesthetic while providing one clear H1. */
.platform-page-title {
  --title-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  margin: 0;
}
.platform-page-title .codum-tool-badge { margin-left: 8px; }

/* Colorful, badge-style platform logo instead of a plain heading icon */
.platform-page-title .platform-heading-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: var(--title-color);
  border: 1px solid color-mix(in srgb, var(--title-color) 45%, transparent);
  background: radial-gradient(circle at 30% 22%, color-mix(in srgb, var(--title-color) 24%, transparent), rgba(3, 8, 8, .8));
  box-shadow: 0 0 16px color-mix(in srgb, var(--title-color) 22%, transparent), inset 0 0 10px color-mix(in srgb, var(--title-color) 14%, transparent);
}
.platform-page-title .platform-heading-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}
.platform-page-title:hover .platform-heading-icon svg {
  animation: codum-platform-pulse .9s ease-in-out infinite;
  filter: drop-shadow(0 0 6px currentColor);
}

/* Stylized title text — no longer a plain bold heading */
.platform-page-title > span:not(.platform-heading-icon):not(.codum-tool-badge) {
  position: relative;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--text-heading);
  text-shadow: 0 0 20px color-mix(in srgb, var(--title-color) 28%, transparent);
}

/* Brand colors reused from the sidebar navigation for a consistent, colorful look */
.platform-page-title[data-platform="twitter"]   { --title-color: #e8eef5; }
.platform-page-title[data-platform="instagram"] { --title-color: #ff4f9a; }
.platform-page-title[data-platform="threads"]   { --title-color: #f1f1f1; }
.platform-page-title[data-platform="tumblr"]    { --title-color: #78a9d8; }
.platform-page-title[data-platform="netflix"]   { --title-color: #ff0040; }

@media screen and (max-width: 480px) {
  .platform-page-title .platform-heading-icon { width: 32px; height: 32px; }
  .platform-page-title .platform-heading-icon svg { width: 16px; height: 16px; }
  .platform-page-title > span:not(.platform-heading-icon):not(.codum-tool-badge) { font-size: 18px; }
}
.platform-page-intro {
  max-width: 760px;
  margin: 8px auto 18px;
  text-align: center;
  color: rgba(201,209,217,.68);
  font-size: 13px;
  line-height: 1.6;
}
.codum-code-input-shell { max-height: 68px; }
.codum-code-inline { max-height: 48px; overflow: hidden; }




/* ===== CODUM.TR X ID RESULT V21: ISOLATED MINI BUSINESS CARD ===== */
.codum-x-id-result{
  margin-top:14px!important;
  padding:12px!important;
  border:1px solid rgba(0,255,110,.18)!important;
  border-radius:12px!important;
  background:rgba(0,255,110,.018)!important;
  min-height:0!important;
  display:block!important;
  overflow:hidden!important;
}
.codum-x-id-result .codum-x-loading{padding:10px 4px!important}
.codum-x-id-result .codum-v21-card{
  all:initial!important;
  display:block!important;
  box-sizing:border-box!important;
  width:min(680px,100%)!important;
  max-width:680px!important;
  min-width:0!important;
  height:auto!important;
  min-height:0!important;
  margin:2px auto!important;
  padding:15px 17px!important;
  border:1px solid rgba(32,227,113,.24)!important;
  border-radius:16px!important;
  background:#080d0b!important;
  color:#f4fff8!important;
  box-shadow:0 8px 22px rgba(0,0,0,.16)!important;
  overflow:hidden!important;
  font-family:Arial,Helvetica,sans-serif!important;
}
.codum-x-id-result .codum-v21-card *,.codum-x-id-result .codum-v21-card *::before,.codum-x-id-result .codum-v21-card *::after{box-sizing:border-box!important}
.codum-v21-top{display:block!important;margin:0 0 10px!important;color:#f1fff5!important;font:800 11px/14px Arial,Helvetica,sans-serif!important;letter-spacing:.1px!important}
.codum-v21-content{display:grid!important;grid-template-columns:76px minmax(0,1fr)!important;gap:14px!important;align-items:center!important;min-width:0!important}
.codum-v21-left{display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;text-align:center!important;min-width:0!important}
.codum-v21-avatar{width:64px!important;height:64px!important;min-width:64px!important;max-width:64px!important;min-height:64px!important;max-height:64px!important;display:block!important;object-fit:cover!important;object-position:center!important;aspect-ratio:1/1!important;border-radius:50%!important;border:2px solid #20e371!important;background:#101814!important;margin:0 auto 6px!important;padding:0!important}
.codum-v21-avatar-fallback{display:flex!important;align-items:center!important;justify-content:center!important;color:#031008!important;background:#20e371!important;font:900 22px/1 Arial,Helvetica,sans-serif!important}
.codum-v21-name{display:block!important;width:100%!important;color:#f8fff9!important;font:800 9px/12px Arial,Helvetica,sans-serif!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}
.codum-v21-verified{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:11px!important;height:11px!important;margin-left:2px!important;border-radius:50%!important;background:#1d9bf0!important;color:#fff!important;font:900 7px/11px Arial,Helvetica,sans-serif!important;vertical-align:1px!important}
.codum-v21-bio{display:-webkit-box!important;width:100%!important;color:#87968e!important;font:400 7px/10px Arial,Helvetica,sans-serif!important;margin-top:3px!important;overflow:hidden!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important}
.codum-v21-right{min-width:0!important;display:flex!important;flex-direction:column!important;gap:8px!important}
.codum-v21-stats{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:6px!important;min-width:0!important}
.codum-v21-stat{display:block!important;min-width:0!important;padding:0!important;margin:0!important;border:0!important;background:transparent!important;text-align:left!important}
.codum-v21-stat strong{display:block!important;color:#f7fff9!important;font:800 15px/18px Arial,Helvetica,sans-serif!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}
.codum-v21-stat span{display:block!important;color:#7f8e86!important;font:500 7px/10px Arial,Helvetica,sans-serif!important;margin-top:1px!important}
.codum-v21-idline{display:flex!important;align-items:center!important;gap:6px!important;min-width:0!important;padding:6px 7px!important;border:1px solid rgba(32,227,113,.15)!important;border-radius:7px!important;background:rgba(32,227,113,.03)!important}
.codum-v21-idline span{color:#66746c!important;font:800 7px/9px monospace!important;letter-spacing:.4px!important;white-space:nowrap!important}
.codum-v21-idline strong{color:#20e371!important;font:800 9px/12px monospace!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important;min-width:0!important}
.codum-v21-copy{margin-left:auto!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:3px!important;height:22px!important;padding:0 7px!important;border:1px solid rgba(32,227,113,.28)!important;border-radius:5px!important;background:#0b1711!important;color:#eafff0!important;font:800 7px/1 monospace!important;cursor:pointer!important;white-space:nowrap!important;flex:0 0 auto!important}
.codum-v21-copy:hover,.codum-v21-copy.is-copied{border-color:#20e371!important;color:#20e371!important}
.codum-v21-actions{display:grid!important;grid-template-columns:1fr 1fr!important;gap:6px!important}
.codum-v21-actions a{display:flex!important;align-items:center!important;justify-content:center!important;height:25px!important;border-radius:5px!important;text-decoration:none!important;font:800 7px/1 Arial,Helvetica,sans-serif!important}
.codum-v21-follow{background:#20e371!important;color:#031008!important;border:1px solid #20e371!important}
.codum-v21-open{background:#0c2a1b!important;color:#dfffea!important;border:1px solid rgba(32,227,113,.16)!important}
@media(max-width:700px){
  .codum-x-id-result .codum-v21-card{width:100%!important;max-width:100%!important;padding:13px!important}
  .codum-v21-content{grid-template-columns:70px minmax(0,1fr)!important;gap:11px!important}
  .codum-v21-avatar{width:58px!important;height:58px!important;min-width:58px!important;max-width:58px!important;min-height:58px!important;max-height:58px!important}
  .codum-v21-stat strong{font-size:14px!important;line-height:17px!important}
}
@media(max-width:480px){
  .codum-v21-content{grid-template-columns:1fr!important}
  .codum-v21-left{display:grid!important;grid-template-columns:58px 1fr!important;column-gap:9px!important;text-align:left!important;align-items:center!important}
  .codum-v21-avatar{grid-row:span 2!important;margin:0!important}
  .codum-v21-name,.codum-v21-bio{width:auto!important}
}

/* ===== CODUM.TR V39 PAGE FRAME ===== */
@media (min-width: 901px) {
  .main-content {
    align-items: center;
    padding: 18px 24px 30px;
    overflow-x: hidden;
  }

  .main-content > .display-card {
    width: min(1100px, calc(100vw - 292px));
    max-width: 1100px;
    min-width: 0;
    margin: 0 auto 20px;
    padding: 18px;
    box-sizing: border-box;
  }

  .main-content > .display-card > .platform-page-title,
  .main-content > .display-card > .platform-page-intro {
    width: min(900px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .main-content > .display-card > .platform-tools {
    width: min(980px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .main-content > .display-card > .codum-tool-workbench {
    width: min(820px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .main-content > .display-card > .codum-generated-code {
    width: min(820px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .platform-tools {
    padding: 14px;
    margin-bottom: 14px;
  }

  .platform-tools-heading {
    margin-bottom: 10px;
    padding-bottom: 9px;
  }

  .platform-tools-grid {
    gap: 7px;
  }

  .platform-tool-link {
    min-height: 40px;
    padding: 6px 8px;
  }

  .codum-tool-workbench {
    margin-top: 14px;
  }
}

@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; text-align: center; min-height: 0; }
  .home-hero-title, .home-hero-sub { text-align: center !important; }
  .home-hero-live { justify-content: center; }
  .home-hero-platforms { min-height: 150px; transform: scale(.92); }
}

  .main-content {
    align-items: stretch;
    overflow-x: hidden;
  }

  .main-content > .display-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* ===== CODUM.TR COMPACT PAGE LAYOUT - FINAL ===== */
@media (min-width: 901px) {
  .main-content {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 22px 34px;
    box-sizing: border-box;
    align-items: center;
    overflow-x: hidden;
  }

  .main-content > .display-card {
    width: 100% !important;
    max-width: 1080px !important;
    min-width: 0 !important;
    margin: 0 auto 20px !important;
    padding: 20px !important;
    box-sizing: border-box;
  }

  .main-content > .display-card > .platform-page-title,
  .main-content > .display-card > .platform-page-intro {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .main-content > .display-card > .platform-tools {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 16px;
    padding: 14px;
    box-sizing: border-box;
  }

  .main-content > .display-card > .codum-tool-workbench {
    width: 100%;
    max-width: 820px;
    margin: 0 auto 18px;
  }

  .main-content > .display-card > .codum-generated-code {
    width: 100%;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  .platform-tools-heading {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .platform-tools-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 270px)) !important;
    justify-content: center !important;
    gap: 8px 10px !important;
  }

  .platform-tool-link {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    padding: 7px 10px !important;
    box-sizing: border-box !important;
    justify-content: flex-start !important;
  }

  .platform-tool-link b {
    margin-left: auto !important;
  }
}

/* Keep the actual ID result a true compact card, never a full-width image block. */
.codum-x-id-result {
  width: 100% !important;
  max-width: 760px !important;
  margin: 12px auto 0 !important;
  padding: 10px !important;
  box-sizing: border-box !important;
}

.codum-x-id-result .codum-v21-card {
  width: min(620px, 100%) !important;
  max-width: 620px !important;
  margin: 0 auto !important;
  padding: 14px 16px !important;
  border-radius: 14px !important;
}

.codum-x-id-result .codum-v21-card img,
.codum-x-id-result .codum-v21-avatar {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  max-width: 64px !important;
  min-height: 64px !important;
  max-height: 64px !important;
  object-fit: cover !important;
  object-position: center !important;
}

.codum-v21-top {
  margin-bottom: 9px !important;
  font-size: 11px !important;
}

.codum-v21-content {
  grid-template-columns: 76px minmax(0, 1fr) !important;
  gap: 13px !important;
}

.codum-v21-stats {
  gap: 5px !important;
}

.codum-v21-stat strong {
  font-size: 14px !important;
  line-height: 17px !important;
}

.codum-v21-idline {
  padding: 6px 7px !important;
}

.codum-v21-copy {
  height: 24px !important;
  padding: 0 8px !important;
}

.codum-v21-actions a {
  height: 27px !important;
}

@media (max-width: 900px) {
  .main-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 14px;
  }

  .main-content > .display-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .platform-tools-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-content: center !important;
  }
}

@media (max-width: 600px) {
  .home-hero { padding: 20px 14px; }
  .home-hero-platforms { gap: 7px; transform: scale(.76); margin: -10px 0; }
  .home-hero-platform { width: 62px; height: 62px; border-radius: 14px; }
  .home-hero-platform-icon svg { width: 31px; height: 31px; }
}

  .main-content > .display-card {
    padding: 14px !important;
  }

  .platform-tools-grid {
    grid-template-columns: 1fr !important;
  }

  .platform-tool-link {
    width: 100% !important;
  }

  .codum-x-id-result {
    padding: 6px !important;
  }
}

/* ===== CODUM.TR PANEL GUIDE + VISIBLE COPY CONTROL ===== */
.codum-panel-guide{position:relative;overflow:hidden;border:1px solid rgba(32,227,113,.18);border-radius:14px;padding:20px;background:linear-gradient(145deg,rgba(4,18,12,.92),rgba(2,8,7,.98));box-shadow:inset 0 0 35px rgba(32,227,113,.025)}
.codum-panel-scanline{position:absolute;top:0;left:-18%;width:14%;height:100%;pointer-events:none;background:linear-gradient(90deg,transparent,rgba(32,227,113,.05),rgba(32,227,113,.18),transparent);filter:blur(2px);animation:codum-panel-scan 4.5s linear infinite}
@keyframes codum-panel-scan{0%{left:-18%}100%{left:115%}}
.codum-panel-guide-head{position:relative;display:flex;align-items:center;justify-content:space-between;gap:16px;padding-bottom:14px;border-bottom:1px solid rgba(32,227,113,.09)}
.codum-panel-guide-kicker{display:block;color:#20e371;font:900 9px/1 SFMono-Regular,Consolas,monospace;letter-spacing:1.2px;text-transform:uppercase;margin-bottom:7px}
.codum-panel-guide-head h3{margin:0;color:#e9fff0;font-size:18px;line-height:1.2;font-weight:800}
.codum-panel-guide-status{flex:0 0 auto;color:#20e371;border:1px solid rgba(32,227,113,.25);background:rgba(32,227,113,.05);padding:7px 9px;border-radius:7px;font:900 9px/1 SFMono-Regular,Consolas,monospace}
.codum-panel-guide-intro{position:relative;margin:14px 0 16px;color:#aebdb4;font-size:12px;line-height:1.65;max-width:900px}
.codum-panel-guide-intro a,.codum-panel-guide-step a,.codum-panel-guide-note a{color:#20e371;font-weight:800;text-decoration:none;border-bottom:1px dotted rgba(32,227,113,.55)}
.codum-panel-guide-intro a:hover,.codum-panel-guide-step a:hover,.codum-panel-guide-note a:hover{color:#baffca;text-shadow:0 0 9px rgba(32,227,113,.2)}
.codum-panel-guide-steps{position:relative;display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:8px}
.codum-panel-guide-step{min-width:0;display:flex;align-items:flex-start;gap:9px;padding:11px 10px;border:1px solid rgba(32,227,113,.10);border-radius:9px;background:rgba(0,0,0,.18);color:#9eafa5;line-height:1.5;font-size:10px;transition:border-color .2s,background .2s,transform .2s}
.codum-panel-guide-step:hover{border-color:rgba(32,227,113,.3);background:rgba(32,227,113,.035);transform:translateY(-1px)}
.codum-panel-guide-step b{flex:0 0 25px;width:25px;height:25px;display:grid;place-items:center;border:1px solid rgba(32,227,113,.28);border-radius:7px;color:#20e371;background:rgba(32,227,113,.045);font:900 9px/1 SFMono-Regular,Consolas,monospace}
.codum-panel-guide-step div{min-width:0}
.codum-panel-guide-step strong{display:block;color:#d9ffe5;font-size:11px;margin-bottom:4px}
.codum-panel-guide-step span{display:block}
.codum-panel-guide-download{display:inline-block;margin-top:7px;font-size:9px}
.codum-panel-guide-note{position:relative;display:flex;align-items:flex-start;gap:10px;margin-top:12px;padding:10px 12px;border-radius:9px;background:rgba(32,227,113,.035);border:1px solid rgba(32,227,113,.08)}
.codum-panel-guide-note span{flex:0 0 auto;color:#20e371;font:900 8px/1 SFMono-Regular,Consolas,monospace;letter-spacing:.8px;padding-top:2px}
.codum-panel-guide-note p{margin:0;color:#72857a;font:700 9px/1.55 SFMono-Regular,Consolas,monospace}
.codum-code-input-shell{position:relative;min-height:64px!important;height:auto!important;padding:9px 10px!important;gap:10px!important}
.codum-code-copy{height:44px!important;min-width:116px!important;padding:0 15px!important;border:1px solid rgba(32,227,113,.38)!important;border-radius:10px!important;background:rgba(32,227,113,.07)!important;color:#20e371!important;box-shadow:0 0 16px rgba(32,227,113,.04);font-size:10px!important;font-weight:900!important;letter-spacing:.7px!important}
.codum-code-copy .copy-status{display:inline!important;font-size:10px!important}
.codum-code-copy svg{width:18px!important;height:18px!important}
.codum-code-copy:hover,.codum-code-copy.is-copied{background:rgba(32,227,113,.13)!important;border-color:#20e371!important;color:#baffca!important;box-shadow:0 0 20px rgba(32,227,113,.12);transform:translateY(-1px)!important}
.codum-generated-code{padding:0 2px}
.codum-generated-code::before{content:'KODU HAZIR • TAMPERMONKEY’E YÜKLE';display:block;margin:0 0 7px;color:#20e371;font:900 9px/1 SFMono-Regular,Consolas,monospace;letter-spacing:1.1px}
@media(max-width:1050px){.codum-panel-guide-steps{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:760px){.codum-panel-guide-steps{grid-template-columns:1fr}.codum-code-copy{min-width:104px!important;padding:0 11px!important}.codum-code-input-shell{min-height:58px!important}.codum-code-inline{font-size:8px!important}.codum-panel-guide-head h3{font-size:16px}.codum-panel-guide{padding:15px}.codum-panel-guide-status{display:none}}

/* V26: compact, action-first Twitter setup guide */
.codum-panel-guide-compact{padding:14px 16px;border-radius:12px}
.codum-panel-guide-compact .codum-panel-guide-head{padding-bottom:10px}
.codum-panel-guide-compact .codum-panel-guide-kicker{font-size:8px;margin-bottom:4px}
.codum-panel-guide-compact .codum-panel-guide-head h3{font-size:17px;text-transform:uppercase;letter-spacing:.3px}
.codum-panel-guide-compact .codum-panel-guide-intro{margin:9px 0 11px;font-size:10px;line-height:1.45;color:#87988e}
.codum-panel-guide-compact .codum-panel-guide-intro b{color:#20e371}
.codum-panel-guide-compact .codum-panel-guide-steps{grid-template-columns:repeat(5,minmax(0,1fr));gap:7px}
.codum-panel-guide-compact .codum-panel-guide-step{position:relative;display:flex;flex-direction:column;gap:7px;padding:10px 9px;min-height:104px;border-radius:9px;background:rgba(0,0,0,.22)}
.codum-panel-guide-compact .codum-panel-guide-num{width:25px;height:25px;display:grid;place-items:center;border-radius:7px;border:1px solid rgba(32,227,113,.28);background:rgba(32,227,113,.055);color:#20e371;font:900 8px/1 SFMono-Regular,Consolas,monospace}
.codum-panel-guide-compact .codum-panel-guide-copy strong{display:block;color:#e2ffe9;font-size:10px;line-height:1.2;margin-bottom:5px}
.codum-panel-guide-compact .codum-panel-guide-copy span{display:block;color:#82938a;font-size:8.5px;line-height:1.45}
.codum-panel-guide-compact .codum-panel-guide-copy a{color:#20e371}
.codum-panel-guide-action{display:inline-flex!important;align-items:center;justify-content:center;width:max-content;margin-top:auto;padding:5px 7px;border:1px solid rgba(32,227,113,.24);border-radius:6px;background:rgba(32,227,113,.045);color:#20e371!important;font:900 7px/1 SFMono-Regular,Consolas,monospace;letter-spacing:.5px;text-decoration:none!important}
.codum-panel-guide-action:hover{background:rgba(32,227,113,.1);box-shadow:0 0 14px rgba(32,227,113,.12)}
.codum-panel-guide-tip{display:flex;align-items:center;gap:8px;margin-top:8px;padding:7px 9px;border:1px solid rgba(32,227,113,.08);border-radius:7px;background:rgba(32,227,113,.025);color:#718279;font:700 8px/1.35 SFMono-Regular,Consolas,monospace}
.codum-panel-guide-tip span{color:#20e371;font-weight:900;letter-spacing:.7px}
.codum-panel-guide-tip b{color:#a5b8ad}
.codum-panel-guide-tip em{color:#c4d3ca;font-style:normal}
@media(max-width:1050px){.codum-panel-guide-compact .codum-panel-guide-steps{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media(max-width:760px){.codum-panel-guide-compact .codum-panel-guide-steps{grid-template-columns:1fr 1fr}.codum-panel-guide-compact .codum-panel-guide-step{min-height:96px}}
@media(max-width:480px){.codum-panel-guide-compact .codum-panel-guide-steps{grid-template-columns:1fr}.codum-panel-guide-compact .codum-panel-guide-status{display:none}}


/* =========================================================
   CODUM.TR PLATFORM TOOL DIRECTORY 2026
   Yeni araç vitrini + çalışma alanı geçişi
   ========================================================= */
.platform-page-twitter,
.platform-page-instagram,
.platform-page-threads,
.platform-page-tumblr,
.platform-page-netflix {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -15%, rgba(32,227,113,.10), transparent 36%),
    linear-gradient(180deg, rgba(9,14,19,.98), rgba(7,11,15,.98));
  border-color: rgba(92,120,143,.35);
}

.platform-page-twitter::before,
.platform-page-instagram::before,
.platform-page-threads::before,
.platform-page-tumblr::before,
.platform-page-netflix::before {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 7% 18%, rgba(0,194,255,.08), transparent 20%),
    radial-gradient(circle at 93% 18%, rgba(190,44,255,.08), transparent 22%),
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.015) 50%, transparent 50.2%);
}

.platform-tools {
  position:relative;
  z-index:1;
  margin: 18px 0 8px;
  padding: 28px 24px 22px;
  border:1px solid rgba(45,194,255,.22);
  border-radius:16px;
  overflow:hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(0,194,255,.10), transparent 28%),
    radial-gradient(circle at 90% 5%, rgba(194,45,255,.09), transparent 28%),
    linear-gradient(90deg, rgba(42,184,255,.035) 1px, transparent 1px) 0 0/30px 30px,
    linear-gradient(rgba(42,184,255,.035) 1px, transparent 1px) 0 0/30px 30px,
    rgba(3,9,15,.86);
  box-shadow: inset 0 0 55px rgba(0,160,255,.025), 0 14px 50px rgba(0,0,0,.18);
}

.platform-tools::after {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(115deg, transparent 25%, rgba(0,194,255,.055), transparent 45%, rgba(191,44,255,.045), transparent 70%);
  transform:translateX(-35%);
  animation: codumDirectorySweep 9s linear infinite;
}
@keyframes codumDirectorySweep { to { transform:translateX(35%); } }

.platform-tools-heading {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:18px;
  margin:0 0 22px;
  padding:0 0 15px;
  border-bottom:1px solid rgba(83,119,143,.20);
  text-align:center;
}
.platform-tools-heading-line {
  display:flex;
  align-items:center;
  gap:8px;
  height:8px;
}
.platform-tools-heading-line span {
  display:block;
  flex:1;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(0,210,255,.45));
}
.platform-tools-heading-line:last-child span {
  background:linear-gradient(90deg, rgba(196,47,255,.45), transparent);
}
.platform-tools-heading-line i {
  width:4px;
  height:4px;
  border-radius:50%;
  background:#24dfff;
  box-shadow:0 0 10px rgba(36,223,255,.8);
}
.platform-tools-heading-line:last-child i {
  background:#d649ff;
  box-shadow:0 0 10px rgba(214,73,255,.8);
}
.platform-tools-kicker {
  margin-bottom:6px;
  color:#55ddff;
  font-size:11px;
  letter-spacing:1.5px;
  text-shadow:0 0 12px rgba(50,210,255,.35);
}
.platform-tools h3 {
  font-size:19px;
  color:#f3f7fb;
  letter-spacing:.1px;
}

.platform-tools-grid {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  align-items:stretch;
}

.platform-tool-link {
  position:relative;
  min-width:0;
  min-height:226px;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:space-between;
  gap:12px;
  padding:20px;
  text-align:left;
  color:var(--text-primary);
  border:1px solid rgba(78,116,142,.28);
  border-radius:14px;
  background:
    radial-gradient(circle at 86% 22%, rgba(39,180,255,.055), transparent 34%),
    linear-gradient(145deg, rgba(10,19,28,.95), rgba(5,11,17,.98));
  box-shadow:inset 0 0 25px rgba(0,160,255,.018), 0 7px 20px rgba(0,0,0,.12);
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease,background .22s ease;
  overflow:hidden;
}
.platform-tool-link::before {
  content:"";
  position:absolute;
  right:-25px;
  top:-35px;
  width:120px;
  height:120px;
  border:1px solid rgba(70,185,255,.10);
  border-radius:50%;
  box-shadow:0 0 0 14px rgba(70,185,255,.018),0 0 0 28px rgba(70,185,255,.012);
}
.platform-tool-link::after {
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  bottom:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(40,213,255,.35), transparent);
  opacity:.5;
}
.platform-tool-link:hover,
.platform-tool-link:focus-visible,
.platform-tool-link.is-selected {
  transform:translateY(-4px);
  border-color:rgba(42,205,255,.62);
  background:
    radial-gradient(circle at 85% 18%, rgba(0,203,255,.12), transparent 35%),
    linear-gradient(145deg, rgba(11,27,40,.98), rgba(5,12,19,.98));
  box-shadow:0 14px 35px rgba(0,130,255,.11), inset 0 0 25px rgba(0,194,255,.035);
  outline:none;
}
.platform-tool-top {
  position:relative;
  z-index:1;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.platform-tool-icon {
  width:44px;
  height:44px;
  flex:0 0 44px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#52e7ff;
  border:1px solid rgba(48,215,255,.60);
  background:radial-gradient(circle, rgba(39,210,255,.15), rgba(0,72,112,.12));
  box-shadow:0 0 18px rgba(31,204,255,.12), inset 0 0 12px rgba(31,204,255,.08);
  font-size:12px;
  font-weight:900;
  letter-spacing:-.5px;
}
.platform-tool-arrow {
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border:1px solid rgba(57,180,235,.28);
  border-radius:10px;
  color:#77ddff;
  font-size:20px;
  background:rgba(20,100,140,.08);
  transition:all .2s ease;
}
.platform-tool-link:hover .platform-tool-arrow,
.platform-tool-link.is-selected .platform-tool-arrow {
  color:#fff;
  border-color:#32d8ff;
  box-shadow:0 0 16px rgba(38,213,255,.18);
  transform:translateX(2px);
}
.platform-tool-copy {
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.platform-tool-copy strong {
  color:#f0f7fb;
  font-size:17px;
  line-height:1.2;
  letter-spacing:.1px;
}
.platform-tool-copy small {
  max-width:330px;
  color:#8e9daa;
  font-size:11px;
  line-height:1.65;
}
.platform-tool-cta {
  position:relative;
  z-index:1;
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 11px;
  border:1px solid rgba(38,190,245,.20);
  border-radius:7px;
  background:rgba(12,84,116,.10);
  color:#69dfff;
  font-size:10px;
  font-weight:900;
  letter-spacing:.2px;
}
.platform-tool-cta span {
  font-size:13px;
  line-height:1;
}

/* Tool kartlarını platformlara göre hafifçe renklendir */
.platform-page-twitter .platform-tool-icon,
.platform-page-twitter .platform-tool-cta { color:#48ddff; }
.platform-page-instagram .platform-tool-icon,
.platform-page-instagram .platform-tool-cta { color:#ff64c7; border-color:rgba(255,64,190,.28); }
.platform-page-threads .platform-tool-icon,
.platform-page-threads .platform-tool-cta { color:#bda9ff; border-color:rgba(146,112,255,.28); }
.platform-page-tumblr .platform-tool-icon,
.platform-page-tumblr .platform-tool-cta { color:#55b9ff; border-color:rgba(64,157,255,.28); }
.platform-page-netflix .platform-tool-icon,
.platform-page-netflix .platform-tool-cta { color:#ff5471; border-color:rgba(255,45,80,.28); }

.platform-tools-promo {
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:16px;
  padding:15px 18px;
  border:1px solid rgba(49,129,185,.20);
  border-radius:12px;
  background:linear-gradient(90deg, rgba(17,34,51,.68), rgba(8,18,29,.88));
  overflow:hidden;
}
.platform-tools-promo::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:linear-gradient(90deg, transparent, #8d35ff, #16cfff, transparent);
  opacity:.55;
}
.platform-tools-promo-icon {
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  flex:0 0 44px;
  border-radius:50%;
  color:#78e7ff;
  border:1px solid rgba(52,204,255,.45);
  box-shadow:0 0 18px rgba(52,204,255,.10);
  font-size:24px;
}
.platform-tools-promo div {
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.platform-tools-promo strong { color:#f4f8fb; font-size:13px; }
.platform-tools-promo small { color:#83929f; font-size:10px; line-height:1.4; }
.platform-tools-promo-action {
  margin-left:auto;
  flex:0 0 auto;
  padding:11px 14px;
  border:1px solid rgba(55,206,255,.35);
  border-radius:8px;
  color:#eafaff;
  background:linear-gradient(90deg, rgba(111,25,212,.55), rgba(0,137,221,.55));
  font-size:10px;
  font-weight:900;
  box-shadow:0 0 18px rgba(88,51,255,.10);
}

/* Çalışma alanı: araç dizini gizlenince sayfanın çerçevesinde geri dönüş */
.codum-tool-workbench {
  position:relative;
  z-index:4;
  margin:18px 0 8px;
  border:1px solid rgba(47,206,255,.30);
  border-radius:15px;
  background:
    radial-gradient(circle at 50% 0%, rgba(41,200,255,.08), transparent 32%),
    linear-gradient(145deg, rgba(8,17,25,.99), rgba(3,9,14,.99));
  box-shadow:0 18px 50px rgba(0,0,0,.24), inset 0 0 40px rgba(0,170,255,.025);
}
.codum-tool-workbench-head {
  min-height:74px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:16px;
  padding:12px 16px;
  border-bottom:1px solid rgba(60,130,165,.18);
  background:rgba(5,13,20,.72);
}
.codum-tool-back {
  appearance:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 11px;
  border:1px solid rgba(71,166,211,.26);
  border-radius:8px;
  color:#83dcff;
  background:rgba(17,85,115,.10);
  font:900 10px/1 SFMono-Regular,Consolas,monospace;
  cursor:pointer;
  transition:.2s ease;
}
.codum-tool-back:hover,
.codum-tool-back:focus-visible {
  color:#fff;
  border-color:#43d9ff;
  background:rgba(30,180,240,.12);
  box-shadow:0 0 16px rgba(35,210,255,.10);
  outline:none;
}
.codum-tool-workbench .codum-tool-title-wrap { text-align:center; }
.codum-tool-workbench-head h3 { font-size:18px; }
.codum-tool-workbench-body { min-height:280px; padding:22px; }

@media (max-width: 900px) {
  .platform-tools-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .platform-tools { padding:20px 12px 14px; }
  .platform-tools-heading { grid-template-columns:1fr; gap:7px; }
  .platform-tools-heading-line { display:none; }
  .platform-tools-grid { grid-template-columns:1fr; }
  .platform-tool-link { min-height:190px; padding:17px; }
  .platform-tools-promo { align-items:flex-start; flex-wrap:wrap; }
  .platform-tools-promo-action { width:100%; margin-left:58px; text-align:center; }
  .codum-tool-workbench-head { grid-template-columns:1fr auto; }
  .codum-tool-back { grid-column:1 / -1; justify-self:flex-start; }
  .codum-tool-workbench .codum-tool-title-wrap { text-align:left; }
}


/* ===== CODUM.TR RESPONSIVE LOCK v2 =====
/* Final responsive layer: keeps the directory stable across Chrome, Edge, Opera,
   mobile browsers and different zoom levels without changing tool functionality. */
html { width:100%; min-width:0; overflow-x:hidden; }
body { width:100%; min-width:0; max-width:100%; overflow-x:hidden; }
.app-container { width:100%; min-width:0; }
.main-content { min-width:0; width:auto; max-width:100%; overflow-x:hidden; }
.main-content > .display-card { min-width:0; max-width:100%; width:100%; }
.display-card { min-width:0; max-width:100%; overflow:visible; }

.platform-page-title,
.platform-page-intro,
.platform-tools,
.codum-tool-workbench,
.codum-generated-code { min-width:0; max-width:100%; }

.platform-tools {
  width:100%;
  box-sizing:border-box;
  padding:clamp(18px, 2.2vw, 28px) clamp(14px, 2vw, 24px) 20px;
}

.platform-tools-grid {
  width:100%;
  min-width:0;
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 255px), 1fr));
  gap:14px;
}

.platform-tool-link {
  width:100%;
  min-width:0;
  min-height:218px;
  box-sizing:border-box;
  appearance:none;
  -webkit-appearance:none;
  font:inherit;
  cursor:pointer;
}

.platform-tool-copy { min-width:0; }
.platform-tool-copy strong,
.platform-tool-copy small { overflow-wrap:anywhere; word-break:normal; }
.platform-tool-cta { white-space:nowrap; max-width:100%; }
.platform-tool-arrow { flex:0 0 34px; }

.platform-tools-promo { min-width:0; }
.platform-tools-promo > div { min-width:0; flex:1 1 auto; }
.platform-tools-promo small { overflow-wrap:anywhere; }
.platform-tools-promo-action { white-space:nowrap; }

.codum-tool-workbench { width:100%; box-sizing:border-box; }
.codum-tool-workbench-body { min-width:0; overflow-x:auto; }
.codum-tool-workbench-body > * { max-width:100%; }

@media (min-width:901px) {
  .main-content {
    align-items:center;
    padding:18px clamp(12px, 2vw, 24px) 30px;
  }
  .main-content > .display-card {
    width:min(1180px, 100%);
    margin-inline:auto;
    padding:clamp(14px, 1.6vw, 20px);
  }
  .main-content > .display-card > .platform-tools,
  .main-content > .display-card > .codum-tool-workbench,
  .main-content > .display-card > .codum-generated-code {
    width:100%;
    max-width:1120px;
    margin-inline:auto;
  }
}

@media (max-width:900px) {
  .app-container { height:auto; min-height:calc(100dvh - 32px); }
  .main-content { padding:14px; }
  .main-content > .display-card { width:100%; padding:14px; }
  .platform-tools-grid { grid-template-columns:repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
}

@media (max-width:620px) {
  .top-marquee-container { height:36px; }
  .main-content { padding:10px; }
  .main-content > .display-card { padding:10px; border-radius:10px; }

  .platform-page-title { flex-wrap:wrap; gap:7px; }
  .platform-page-title > span:not(.platform-heading-icon):not(.codum-tool-badge) {
    max-width:calc(100% - 90px);
    overflow-wrap:anywhere;
  }
  .platform-page-intro { font-size:12px; line-height:1.55; padding-inline:4px; }

  .platform-tools {
    padding:16px 10px 12px;
    border-radius:12px;
  }
  .platform-tools-heading { grid-template-columns:1fr; gap:6px; margin-bottom:14px; }
  .platform-tools-heading-line { display:none; }
  .platform-tools-grid { grid-template-columns:1fr; gap:10px; }
  .platform-tool-link { min-height:176px; padding:15px; }
  .platform-tool-copy strong { font-size:16px; }
  .platform-tool-copy small { font-size:11px; line-height:1.55; }

  .platform-tools-promo { gap:10px; padding:12px; }
  .platform-tools-promo-action { width:100%; margin:0; text-align:center; }

  .codum-tool-workbench-head {
    grid-template-columns:1fr;
    gap:9px;
    padding:12px;
  }
  .codum-tool-back { justify-self:flex-start; }
  .codum-tool-workbench .codum-tool-title-wrap { text-align:left; }
  .codum-tool-workbench-head .codum-tool-head-actions { justify-self:flex-start; }
  .codum-tool-workbench-body { padding:14px; }
}

@media (max-width:380px) {
  .sidebar-left nav { grid-template-columns:1fr; }
  .menu-item-btn { min-width:0; }
  .platform-tool-link { min-height:165px; padding:13px; }
  .platform-tool-top { gap:8px; }
  .platform-tool-icon { width:40px; height:40px; flex-basis:40px; }
  .platform-tool-arrow { width:32px; height:32px; flex-basis:32px; }
  .platform-tool-copy strong { font-size:15px; }
}

@media (hover:none) and (pointer:coarse) {
  .platform-tool-link:hover { transform:none; }
  .platform-tool-link:active { transform:scale(.995); }
}

@media (prefers-reduced-motion:reduce) {
  .platform-tools::after { animation:none; }
}


/* =====================================================================
   CODUM TOOL DIRECTORY / DESIGN MATCH v3
   This layer intentionally wins over the older compact directory rules.
   Desktop = 3 columns, tablet = 2, phone = 1.
   ===================================================================== */
.platform-tools {
  width: min(1120px, 100%) !important;
  margin: 0 auto 18px !important;
  padding: 18px 18px 16px !important;
  box-sizing: border-box !important;
  border: 1px solid rgba(39, 214, 132, .34) !important;
  border-radius: 14px !important;
  background:
    linear-gradient(rgba(0, 255, 120, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 120, .028) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(0, 255, 120, .06), transparent 42%),
    #07100d !important;
  background-size: 30px 30px, 30px 30px, auto, auto !important;
  box-shadow: inset 0 0 45px rgba(0,255,120,.025) !important;
}
.platform-tools-heading {
  display:grid !important;
  grid-template-columns:minmax(80px,1fr) auto minmax(80px,1fr) !important;
  align-items:center !important;
  gap:14px !important;
  margin:0 0 14px !important;
  padding:0 0 9px !important;
  border-bottom:1px solid rgba(58, 152, 108, .22) !important;
}
.platform-tools-heading-line {
  display:flex !important;
  align-items:center !important;
  gap:5px !important;
  height:1px !important;
  background:linear-gradient(90deg, transparent, rgba(34,227,132,.28)) !important;
}
.platform-tools-heading-line:last-child { background:linear-gradient(90deg, rgba(34,227,132,.28), transparent) !important; }
.platform-tools-heading-line span { display:block !important; flex:1 !important; height:1px !important; }
.platform-tools-heading-line i { width:5px !important; height:5px !important; border-radius:50% !important; background:#20e371 !important; box-shadow:0 0 10px rgba(32,227,113,.7) !important; }
.platform-tools-kicker { color:#20e371 !important; text-align:center !important; font-size:11px !important; letter-spacing:1.3px !important; font-weight:900 !important; }
.platform-tools h3 { margin:4px 0 0 !important; text-align:center !important; font-size:19px !important; color:#f5f8fa !important; }

.platform-tools-grid {
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  grid-auto-rows:1fr !important;
  gap:10px !important;
  width:100% !important;
  min-width:0 !important;
  align-items:stretch !important;
}
.platform-tool-link {
  position:relative !important;
  width:100% !important;
  min-width:0 !important;
  min-height:190px !important;
  box-sizing:border-box !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  justify-content:space-between !important;
  gap:8px !important;
  padding:16px !important;
  overflow:hidden !important;
  border:1px solid rgba(51, 177, 255, .42) !important;
  border-radius:14px !important;
  text-align:left !important;
  background:
    radial-gradient(circle at 90% 24%, rgba(32,190,255,.08), transparent 34%),
    linear-gradient(145deg, rgba(7,20,31,.96), rgba(4,12,19,.99)) !important;
  box-shadow:inset 0 0 28px rgba(0,170,255,.025), 0 8px 24px rgba(0,0,0,.14) !important;
  cursor:pointer !important;
}
.platform-tool-link::before {
  content:"" !important;
  position:absolute !important;
  right:-32px !important;
  top:-32px !important;
  width:145px !important;
  height:145px !important;
  border:1px solid rgba(63,210,255,.10) !important;
  border-radius:50% !important;
  box-shadow:0 0 0 16px rgba(63,210,255,.018), 0 0 0 34px rgba(63,210,255,.012) !important;
  pointer-events:none !important;
}
.platform-tool-link::after {
  content:"" !important;
  position:absolute !important;
  left:18px !important;
  right:18px !important;
  bottom:0 !important;
  height:1px !important;
  background:linear-gradient(90deg, transparent, rgba(38,214,255,.45), transparent) !important;
  opacity:.7 !important;
}
.platform-tool-top { position:relative !important; z-index:3 !important; width:100% !important; display:flex !important; justify-content:space-between !important; align-items:center !important; }
.platform-tool-icon {
  width:40px !important; height:40px !important; flex:0 0 40px !important;
  display:grid !important; place-items:center !important; border-radius:50% !important;
  font-size:12px !important; font-weight:900 !important;
  color:#54e7ff !important; border:1px solid currentColor !important;
  background:rgba(15,135,180,.08) !important; box-shadow:0 0 18px rgba(28,211,255,.12) !important;
}
.platform-tool-arrow {
  width:32px !important; height:32px !important; flex:0 0 32px !important;
  display:grid !important; place-items:center !important; border-radius:10px !important;
  color:#76e7ff !important; border:1px solid rgba(72,206,255,.45) !important;
  background:rgba(13,89,120,.08) !important; font-size:17px !important;
}
.platform-tool-copy { position:relative !important; z-index:3 !important; min-width:0 !important; width:68% !important; display:flex !important; flex-direction:column !important; gap:6px !important; }
.platform-tool-copy strong { display:block !important; color:#f4f8fb !important; font-size:16px !important; line-height:1.2 !important; }
.platform-tool-copy small { display:block !important; max-width:100% !important; color:#91a1ad !important; font-size:10px !important; line-height:1.5 !important; overflow-wrap:anywhere !important; }
.platform-tool-cta { position:relative !important; z-index:4 !important; align-self:flex-start !important; display:inline-flex !important; align-items:center !important; gap:6px !important; padding:7px 10px !important; border-radius:8px !important; white-space:nowrap !important; font-size:10px !important; font-weight:900 !important; }
.platform-tool-cta span { font-size:13px !important; }

.platform-tool-art { position:absolute !important; z-index:2 !important; right:22px !important; top:64px !important; width:92px !important; height:76px !important; display:grid !important; place-items:center !important; opacity:.8 !important; pointer-events:none !important; }
.art-aa { font-size:58px !important; line-height:1 !important; font-weight:800 !important; color:#ff38bf !important; text-shadow:0 0 18px rgba(255,56,191,.42) !important; }
.art-cloud { font-size:66px !important; line-height:1 !important; color:#a96cff !important; text-shadow:0 0 20px rgba(169,108,255,.48) !important; transform:translateY(-4px) !important; }
.art-user { width:68px !important; height:68px !important; border:4px solid #28ed8d !important; border-radius:50% !important; color:#28ed8d !important; font-size:27px !important; text-align:center !important; padding-top:8px !important; box-sizing:border-box !important; box-shadow:0 0 22px rgba(40,237,141,.28) !important; }
.art-user b { display:block !important; font-size:48px !important; line-height:22px !important; font-weight:400 !important; }
.art-eye { font-size:62px !important; color:#31e8ff !important; text-shadow:0 0 20px rgba(49,232,255,.45) !important; }
.art-panel { width:78px !important; height:52px !important; border:2px solid #28a9ff !important; border-radius:8px !important; display:block !important; padding:12px !important; box-sizing:border-box !important; box-shadow:0 0 18px rgba(40,169,255,.22) !important; }
.art-panel i { display:block !important; width:48px !important; height:4px !important; margin:0 0 8px !important; background:#268fff !important; opacity:.75 !important; }
.art-panel b { display:block !important; width:58px !important; height:18px !important; border-top:2px solid #268fff !important; border-right:2px solid #268fff !important; transform:skewY(-22deg) !important; opacity:.65 !important; }
.art-chart { display:flex !important; align-items:flex-end !important; gap:7px !important; height:60px !important; }
.art-chart i { display:block !important; width:7px !important; border-radius:3px 3px 0 0 !important; background:#ff9d21 !important; box-shadow:0 0 12px rgba(255,157,33,.3) !important; }
.art-chart i:nth-child(1){height:28px}.art-chart i:nth-child(2){height:44px}.art-chart i:nth-child(3){height:34px}.art-chart i:nth-child(4){height:64px}

.platform-page-twitter .platform-tool-link { border-color:rgba(32,227,113,.30) !important; background:radial-gradient(circle at 90% 20%, rgba(32,227,113,.06), transparent 35%), linear-gradient(145deg,rgba(5,22,15,.96),rgba(3,12,8,.99)) !important; }
.platform-page-twitter .platform-tool-icon,.platform-page-twitter .platform-tool-cta { color:#20e371 !important; border-color:rgba(32,227,113,.45) !important; }
.platform-page-instagram .platform-tool-icon,.platform-page-instagram .platform-tool-cta { color:#ff4fbf !important; }
.platform-page-threads .platform-tool-icon,.platform-page-threads .platform-tool-cta { color:#bba6ff !important; }
.platform-page-tumblr .platform-tool-icon,.platform-page-tumblr .platform-tool-cta { color:#58baff !important; }
.platform-page-netflix .platform-tool-icon,.platform-page-netflix .platform-tool-cta { color:#ff4764 !important; }

.platform-tools-promo { display:flex !important; align-items:center !important; gap:14px !important; margin-top:14px !important; padding:15px 18px !important; box-sizing:border-box !important; border-radius:12px !important; border:1px solid rgba(55,177,255,.24) !important; background:linear-gradient(90deg,rgba(12,28,45,.72),rgba(7,15,25,.92)) !important; }
.platform-tools-promo-icon { flex:0 0 44px !important; }
.platform-tools-promo > div { min-width:0 !important; flex:1 1 auto !important; }
.platform-tools-promo-action { flex:0 0 auto !important; margin-left:auto !important; white-space:nowrap !important; }

@media (max-width: 980px) and (min-width: 701px) {
  .platform-tools-grid { grid-template-columns:repeat(2,minmax(0,1fr)) !important; }
  .platform-tool-link { min-height:180px !important; }
}
@media (max-width: 700px) {
  .platform-tools { padding:18px 12px 14px !important; }
  .platform-tools-heading { grid-template-columns:1fr !important; gap:5px !important; }
  .platform-tools-heading-line { display:none !important; }
  .platform-tools-grid { grid-template-columns:1fr !important; gap:10px !important; }
  .platform-tool-link { min-height:180px !important; padding:15px !important; }
  .platform-tool-copy { width:72% !important; }
  .platform-tool-copy strong { font-size:17px !important; }
  .platform-tool-art { right:18px !important; top:70px !important; transform:scale(.82) !important; transform-origin:right center !important; }
  .platform-tools-promo { align-items:flex-start !important; flex-wrap:wrap !important; }
  .platform-tools-promo-action { width:100% !important; margin-left:0 !important; text-align:center !important; }
}
@media (max-width: 420px) {
  .platform-tool-link { min-height:170px !important; padding:13px !important; }
  .platform-tool-copy { width:75% !important; }
  .platform-tool-copy small { font-size:10.5px !important; }
  .platform-tool-art { opacity:.55 !important; transform:scale(.68) !important; }
}

/* ===== CODUM.TR WORKBENCH CLEANUP v5 ===== */
.codum-tool-workbench {
  margin: 12px 0 8px !important;
  border-radius: 12px !important;
}
.codum-tool-workbench-head {
  min-height: 66px !important;
  padding: 10px 14px !important;
}
.codum-tool-workbench-body {
  min-height: 0 !important;
  padding: 18px !important;
}

/* ID / profile tools: one clean aligned workspace */
.codum-id-tool,
.codum-profile-tool {
  grid-template-columns: 92px minmax(0,1fr) !important;
  gap: 18px !important;
  align-items: start !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.codum-id-orb,
.codum-profile-tool-visual {
  width: 92px !important;
  height: 92px !important;
  box-sizing: border-box !important;
}
.codum-id-tool .codum-tool-field {
  min-width: 0 !important;
  width: 100% !important;
}
.codum-id-tool .codum-tool-field > label {
  display: block !important;
  margin: 0 0 8px !important;
}
.codum-id-input-row {
  width: 100% !important;
  grid-template-columns: minmax(0,1fr) 156px !important;
  gap: 10px !important;
}
.codum-id-input-row .codum-tool-input {
  width: 100% !important;
  min-width: 0 !important;
  height: 44px !important;
  box-sizing: border-box !important;
}
.codum-id-input-row .codum-tool-btn {
  width: 156px !important;
  height: 44px !important;
  box-sizing: border-box !important;
}
.codum-x-id-result,
.codum-id-tool .codum-tool-result {
  width: 100% !important;
  max-width: none !important;
  margin: 12px 0 0 !important;
  box-sizing: border-box !important;
}
.codum-x-id-result .codum-v21-card {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

@media (max-width: 700px) {
  .codum-tool-workbench-body { padding: 14px !important; }
  .codum-id-tool,
  .codum-profile-tool {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .codum-id-orb,
  .codum-profile-tool-visual {
    width: 64px !important;
    height: 64px !important;
  }
  .codum-id-input-row {
    grid-template-columns: 1fr !important;
  }
  .codum-id-input-row .codum-tool-btn {
    width: 100% !important;
  }
}


/* =========================================================
   CODUM.TR TOOL MODAL v6
   Araçlar artık sayfanın içinde dev bir bölüm olarak değil,
   ekranın ortasında kompakt bir çalışma penceresi olarak açılır.
   ========================================================= */
html.codum-tool-modal-open,
body.codum-tool-modal-open { overflow:hidden !important; }
.codum-tool-modal-backdrop {
  position:fixed !important;
  inset:0 !important;
  z-index:99990 !important;
  background:rgba(0,3,7,.72) !important;
  backdrop-filter:blur(5px) !important;
  -webkit-backdrop-filter:blur(5px) !important;
}
.codum-tool-modal-backdrop[hidden] { display:none !important; }
.codum-tool-workbench.is-modal {
  position:fixed !important;
  z-index:99991 !important;
  left:50% !important;
  top:50% !important;
  width:min(820px, calc(100vw - 32px)) !important;
  max-width:820px !important;
  max-height:min(760px, calc(100vh - 44px)) !important;
  margin:0 !important;
  transform:translate(-50%,-50%) !important;
  border:1px solid rgba(32,227,113,.38) !important;
  border-radius:16px !important;
  background:
    radial-gradient(circle at 50% -10%, rgba(32,227,113,.08), transparent 38%),
    linear-gradient(145deg,rgba(5,13,18,.99),rgba(2,8,12,.99)) !important;
  box-shadow:
    0 30px 90px rgba(0,0,0,.58),
    0 0 0 1px rgba(44,175,220,.08),
    0 0 42px rgba(32,227,113,.07) !important;
  overflow:auto !important;
}
.codum-tool-workbench.is-modal .codum-tool-workbench-head {
  min-height:72px !important;
  padding:12px 16px !important;
  position:sticky !important;
  top:0 !important;
  z-index:8 !important;
  background:rgba(4,12,17,.96) !important;
  backdrop-filter:blur(8px) !important;
  -webkit-backdrop-filter:blur(8px) !important;
}
.codum-tool-workbench.is-modal .codum-tool-workbench-body {
  padding:20px !important;
  min-height:0 !important;
}
.codum-tool-workbench.is-modal .codum-tool-title-wrap h3 {
  font-size:20px !important;
  line-height:1.15 !important;
}
.codum-tool-workbench.is-modal .codum-tool-back {
  min-height:34px !important;
  padding:7px 11px !important;
  border-radius:9px !important;
}
.codum-tool-workbench.is-modal .codum-tool-badge { padding:7px 10px !important; }

/* ID result: kartvizit hissi */
.codum-tool-workbench.is-modal .codum-x-id-result .codum-v21-card {
  border:1px solid rgba(32,227,113,.30) !important;
  border-radius:14px !important;
  background:
    radial-gradient(circle at 12% 50%, rgba(32,227,113,.07), transparent 28%),
    linear-gradient(145deg,#07110d,#050b09) !important;
  box-shadow:inset 0 0 30px rgba(32,227,113,.025),0 12px 30px rgba(0,0,0,.20) !important;
}
.codum-tool-workbench.is-modal .codum-x-id-result { margin-top:14px !important; }

/* Gereksiz, tıklanmayan alt promosyon artık DOM'dan kaldırıldı. */
.platform-tools-promo { display:none !important; }

@media (max-width:700px){
  .codum-tool-workbench.is-modal {
    width:calc(100vw - 18px) !important;
    max-height:calc(100vh - 18px) !important;
    border-radius:13px !important;
  }
  .codum-tool-workbench.is-modal .codum-tool-workbench-head { min-height:64px !important; padding:10px 11px !important; }
  .codum-tool-workbench.is-modal .codum-tool-workbench-body { padding:14px !important; }
  .codum-tool-workbench.is-modal .codum-tool-title-wrap h3 { font-size:16px !important; }
}

/* =========================================================
   CODUM.TR V7 TYPOGRAPHY POLISH
   Modal/workbench metinleri hafif büyütüldü, okunabilirlik artırıldı.
   ========================================================= */
.codum-tool-workbench.is-modal .codum-tool-workbench-head {
  min-height: 76px !important;
  padding: 13px 18px !important;
}
.codum-tool-workbench.is-modal .codum-tool-workbench-body {
  padding: 22px !important;
}
.codum-tool-workbench.is-modal .codum-tool-title-wrap h3 {
  font-size: 22px !important;
  letter-spacing: .2px !important;
}
.codum-tool-workbench.is-modal .codum-tool-title-wrap .codum-tool-kicker,
.codum-tool-workbench.is-modal [data-tool-kicker] {
  font-size: 11px !important;
}
.codum-tool-workbench.is-modal .codum-tool-field label {
  font-size: 11px !important;
  letter-spacing: .35px !important;
}
.codum-tool-workbench.is-modal .codum-tool-input {
  min-height: 48px !important;
  font-size: 14px !important;
  padding: 0 14px !important;
}
.codum-tool-workbench.is-modal .codum-tool-btn {
  min-height: 48px !important;
  font-size: 12px !important;
  padding: 0 16px !important;
}
.codum-tool-workbench.is-modal .codum-tool-result {
  font-size: 13px !important;
  line-height: 1.55 !important;
}
.codum-tool-workbench.is-modal .codum-x-id-result .codum-v21-card {
  padding: 16px 18px !important;
}
.codum-tool-workbench.is-modal .codum-v21-top {
  font-size: 13px !important;
  margin-bottom: 11px !important;
}
.codum-tool-workbench.is-modal .codum-v21-name {
  font-size: 12px !important;
}
.codum-tool-workbench.is-modal .codum-v21-stat strong {
  font-size: 18px !important;
  line-height: 21px !important;
}
.codum-tool-workbench.is-modal .codum-v21-stat span {
  font-size: 9px !important;
  line-height: 12px !important;
}
.codum-tool-workbench.is-modal .codum-v21-idline {
  min-height: 38px !important;
  padding: 7px 9px !important;
}
.codum-tool-workbench.is-modal .codum-v21-idline span {
  font-size: 9px !important;
  line-height: 11px !important;
}
.codum-tool-workbench.is-modal .codum-v21-idline strong {
  font-size: 11px !important;
  line-height: 14px !important;
}
.codum-tool-workbench.is-modal .codum-v21-copy {
  height: 28px !important;
  padding: 0 9px !important;
  font-size: 9px !important;
}
.codum-tool-workbench.is-modal .codum-v21-actions a {
  height: 34px !important;
  font-size: 9px !important;
}
@media (max-width:700px){
  .codum-tool-workbench.is-modal .codum-tool-workbench-head { min-height: 68px !important; padding: 10px 12px !important; }
  .codum-tool-workbench.is-modal .codum-tool-workbench-body { padding: 16px !important; }
  .codum-tool-workbench.is-modal .codum-tool-title-wrap h3 { font-size: 18px !important; }
  .codum-tool-workbench.is-modal .codum-tool-input,
  .codum-tool-workbench.is-modal .codum-tool-btn { min-height: 46px !important; }
  .codum-tool-workbench.is-modal .codum-v21-stat strong { font-size: 16px !important; }
}

/* CODUM V2 SHAPED TEXT */
.codum-stylish-v2{position:relative;display:grid;gap:16px;padding:4px 0 8px;color:#f4f3fb;overflow:hidden}
.codum-stylish-v2:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 50% 22%,rgba(157,59,255,.10),transparent 34%),radial-gradient(circle at 75% 45%,rgba(0,112,255,.07),transparent 28%);pointer-events:none}
.codum-stylish-v2>*{position:relative;z-index:1}
.codum-stylish-v2-head{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:4px 6px 8px}
.codum-stylish-v2-title-wrap{display:flex;align-items:center;gap:14px}
.codum-stylish-v2-icon{width:52px;height:52px;display:grid;place-items:center;border:1px solid rgba(182,78,255,.45);border-radius:10px;background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(67,22,104,.08));box-shadow:0 0 24px rgba(151,45,255,.12);font:800 31px/1 Georgia,serif;color:#fff}
.codum-stylish-v2-title-wrap h2{margin:0;font-size:30px;line-height:1.05;font-weight:800;letter-spacing:-.7px}
.codum-stylish-v2-title-wrap p{margin:5px 0 0;color:#c8c5d1;font-size:15px}
.codum-stylish-v2-head-actions{display:flex;align-items:center;gap:10px}
.codum-stylish-v2-help,.codum-stylish-v2-theme{height:42px;border:1px solid rgba(174,58,255,.42);background:rgba(8,8,18,.72);color:#f0edf8;border-radius:10px;cursor:pointer}
.codum-stylish-v2-help{padding:0 15px;font-size:13px}.codum-stylish-v2-help:first-letter{color:#d86bff}.codum-stylish-v2-theme{width:42px;font-size:19px}
.codum-stylish-v2-stage{min-height:300px;display:grid;grid-template-columns:150px minmax(340px,1fr) 150px;align-items:center;gap:12px;padding:6px 4px;position:relative}
.codum-stylish-v2-center{min-height:296px;border:1px solid rgba(195,74,255,.72);border-radius:22px;background:radial-gradient(circle at 50% 40%,rgba(37,16,57,.18),rgba(3,8,18,.88) 58%);box-shadow:0 0 30px rgba(172,45,255,.15),inset 0 0 45px rgba(0,91,255,.035);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:18px;overflow:hidden}
.codum-stylish-v2-index{padding:7px 16px;border:1px solid rgba(188,74,255,.45);border-radius:999px;background:rgba(9,8,19,.75);font:700 12px/1 monospace;color:#eee9f8}
.codum-stylish-v2-maintext{max-width:88%;font-size:42px;font-weight:700;line-height:1.18;text-align:center;word-break:break-word;color:#fff;text-shadow:0 0 22px rgba(255,255,255,.08)}
.codum-stylish-v2-dots{display:flex;gap:9px;align-items:center}.codum-stylish-v2-dots i{display:block;width:7px;height:7px;border-radius:50%;background:#606272}.codum-stylish-v2-dots i.active{background:#b748ff;box-shadow:0 0 10px rgba(183,72,255,.9)}
.codum-stylish-v2-copy{height:48px;padding:0 25px;border:1px solid rgba(195,73,255,.5);border-radius:10px;background:linear-gradient(180deg,rgba(31,20,46,.95),rgba(10,8,19,.95));color:#fff;font-size:14px;font-weight:800;cursor:pointer;display:flex;align-items:center;gap:10px}.codum-stylish-v2-copy:hover,.codum-stylish-v2-card-copy:hover{border-color:#c453ff;box-shadow:0 0 18px rgba(190,69,255,.12)}
.codum-stylish-v2-side{height:225px;border:1px solid rgba(129,121,163,.22);border-radius:10px;background:linear-gradient(160deg,rgba(8,12,23,.86),rgba(3,7,15,.96));padding:14px 12px;display:flex;flex-direction:column;justify-content:space-between;overflow:hidden;opacity:.9;transform:perspective(600px) rotateY(7deg)}.codum-stylish-v2-side.side-right{transform:perspective(600px) rotateY(-7deg)}
.codum-stylish-v2-side .mini-num{font:500 12px/1 monospace;color:#e3dff0}.codum-stylish-v2-side strong{font-size:20px;line-height:1.25;color:#eee;word-break:break-word;text-align:center;font-weight:500}
.codum-stylish-v2-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:4;width:52px;height:52px;border:1px solid rgba(196,75,255,.7);border-radius:50%;background:rgba(5,7,15,.88);color:#fff;font-size:40px;line-height:40px;cursor:pointer;box-shadow:0 0 22px rgba(186,64,255,.18)}.codum-stylish-v2-arrow.left{left:-4px}.codum-stylish-v2-arrow.right{right:-4px}.codum-stylish-v2-arrow:hover{background:rgba(36,15,53,.95);box-shadow:0 0 28px rgba(186,64,255,.3)}
.codum-stylish-v2-input-row{height:56px;border:1px solid rgba(177,74,255,.38);border-radius:12px;background:rgba(4,8,17,.82);display:flex;align-items:center;padding:0 7px 0 17px;gap:12px}.codum-stylish-v2-input{flex:1;min-width:0;background:transparent;border:0;outline:0;color:#f6f4fb;font-size:17px}.codum-stylish-v2-count{font:500 12px monospace;color:#b8b5c1}.codum-stylish-v2-apply{height:44px;padding:0 22px;border:0;border-radius:9px;background:linear-gradient(135deg,#b52df0,#187fff);color:#fff;font-size:13px;font-weight:800;cursor:pointer;box-shadow:0 5px 18px rgba(83,55,255,.2)}
.codum-stylish-v2-list{border:1px solid rgba(98,106,132,.35);border-radius:12px;background:rgba(3,8,17,.7);padding:14px 14px 16px}.codum-stylish-v2-list-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}.codum-stylish-v2-list-head h3{margin:0;color:#d78aff;font-size:17px;letter-spacing:.2px}.codum-stylish-v2-list-head select{height:38px;padding:0 34px 0 13px;border:1px solid rgba(104,113,143,.45);border-radius:9px;background:#07101c;color:#eee;font-size:11px;outline:none}.codum-stylish-v2-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:9px}.codum-stylish-v2-card{min-width:0;min-height:128px;padding:10px;border:1px solid rgba(92,101,128,.3);border-radius:9px;background:linear-gradient(150deg,rgba(7,12,22,.92),rgba(4,9,17,.72));position:relative;display:flex;flex-direction:column;justify-content:space-between}.codum-stylish-v2-card:hover{border-color:rgba(173,80,255,.55);transform:translateY(-1px)}.codum-stylish-v2-card-top{display:flex;align-items:center;justify-content:space-between;gap:6px}.codum-stylish-v2-card-top span{padding:5px 7px;border:1px solid rgba(116,126,157,.25);border-radius:6px;background:rgba(255,255,255,.03);font:500 10px monospace;color:#dcd9e7}.codum-stylish-v2-card-top b{font-size:11px;font-weight:500;color:#e8e5ed;text-align:right}.codum-stylish-v2-card-text{min-height:48px;display:grid;place-items:center;text-align:center;color:#f7f5fa;font-size:16px;line-height:1.2;word-break:break-word}.codum-stylish-v2-card-copy{align-self:flex-end;height:32px;padding:0 9px;border:1px solid rgba(102,112,140,.32);border-radius:7px;background:rgba(255,255,255,.025);color:#d9d7e0;font-size:9px;font-weight:800;cursor:pointer}.codum-stylish-v2-card-copy.is-copied,.codum-stylish-v2-copy.is-copied{border-color:#6ef5a0;color:#7dffae}.codum-stylish-v2-more{display:block;margin:12px auto 0;height:40px;padding:0 30px;border:1px solid rgba(151,77,227,.42);border-radius:9px;background:rgba(8,10,20,.8);color:#e9e5ef;font-size:11px;cursor:pointer}.codum-stylish-v2-more:hover{border-color:#c452ff}
@media(max-width:1100px){.codum-stylish-v2-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.codum-stylish-v2-stage{grid-template-columns:100px minmax(260px,1fr) 100px}.codum-stylish-v2-maintext{font-size:34px}}
@media(max-width:760px){.codum-stylish-v2-head{align-items:flex-start}.codum-stylish-v2-title-wrap h2{font-size:23px}.codum-stylish-v2-title-wrap p{font-size:12px}.codum-stylish-v2-help span{display:none}.codum-stylish-v2-stage{grid-template-columns:1fr;min-height:0}.codum-stylish-v2-side{display:none}.codum-stylish-v2-center{min-height:260px}.codum-stylish-v2-arrow.left{left:8px}.codum-stylish-v2-arrow.right{right:8px}.codum-stylish-v2-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.codum-stylish-v2-maintext{font-size:29px}.codum-stylish-v2-input-row{height:auto;min-height:56px;flex-wrap:wrap;padding:8px}.codum-stylish-v2-input{min-width:150px}.codum-stylish-v2-count{margin-left:auto}.codum-stylish-v2-apply{width:100%}}

/* ============================================
   CODUM ECOSYSTEM APP PAGES
   ============================================ */
.codum-product-links{display:grid;gap:6px;margin:10px 0 12px;padding:10px;border:1px solid var(--border-main);border-radius:12px;background:rgba(8,18,14,.65)}
.codum-product-link{font-size:11px!important;letter-spacing:.08em}
.codum-app-page-main{width:100%;min-width:0;padding:40px 0 64px;overflow:visible;height:auto}
.codum-app-page-shell{width:100%;max-width:1240px;margin:0 auto;padding:0 24px;box-sizing:border-box}
.codum-app-breadcrumb{font:700 11px/1.2 ui-monospace,SFMono-Regular,Menlo,monospace;letter-spacing:.16em;color:#20e371;opacity:.8;margin-bottom:10px}
.codum-app-page-shell>h1{margin:0;color:#eafff1;font-size:38px;line-height:1.05}
.codum-app-lead{max-width:800px;color:#93a99e;font-size:15px;line-height:1.7;margin:12px 0 24px}
.codum-app-grid{display:grid;gap:16px}
.codum-app-grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}
.codum-app-grid.three{grid-template-columns:repeat(3,minmax(0,1fr))}
.codum-app-card,.codum-tool-card,.codum-pricing-card,.codum-auth-panel,.codum-account-panel,.codum-legal-card{border:1px solid #1d3930;background:linear-gradient(180deg,rgba(13,25,20,.96),rgba(7,13,11,.96));border-radius:18px;padding:22px;box-shadow:0 18px 50px rgba(0,0,0,.18)}
.codum-app-card.accent,.codum-pricing-card.pro{border-color:#20e371;box-shadow:0 0 0 1px rgba(32,227,113,.1),0 20px 60px rgba(0,0,0,.22)}
.codum-app-kicker{font:800 10px/1.2 ui-monospace,SFMono-Regular,Menlo,monospace;letter-spacing:.16em;color:#20e371;margin-bottom:8px}
.codum-app-card h2,.codum-tool-card h2,.codum-pricing-card h2,.codum-auth-panel h2,.codum-account-panel h2,.codum-legal-card h2{margin:0 0 8px;color:#effff4}
.codum-app-card p,.codum-tool-card p,.codum-pricing-card p,.codum-account-panel p,.codum-legal-card p{color:#9aaba3;line-height:1.7}
.codum-app-card ul,.codum-pricing-card ul{margin:14px 0 0;padding-left:18px;color:#bfd0c7;line-height:1.8}
.codum-app-btn{display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:0 15px;margin:12px 8px 0 0;border:1px solid #244438;border-radius:10px;color:#dffbe8;text-decoration:none;font:700 12px/1 ui-monospace,SFMono-Regular,Menlo,monospace;background:#0b1511}
.codum-app-btn:hover{border-color:#20e371;color:#20e371}
.codum-app-btn.primary{background:#20e371;border-color:#20e371;color:#041008}
.codum-app-note{margin-top:14px;padding:12px;border:1px dashed #315345;border-radius:10px;color:#8ea39a;font-size:12px;line-height:1.6}
.codum-auth-panel{max-width:520px}
.codum-auth-panel form{display:grid;gap:12px}
.codum-auth-panel label{display:grid;gap:7px;color:#a9bdb3;font-size:12px}
.codum-auth-panel input{min-height:42px;padding:0 12px;border:1px solid #28463a;border-radius:10px;background:#07100c;color:#ecfff2}
.codum-auth-panel .check{display:flex;align-items:center;gap:8px;display:flex}
.codum-form-error{margin-bottom:14px;padding:10px 12px;border:1px solid #713536;border-radius:10px;background:#301516;color:#ffbdbd}
.codum-account-panel{display:grid;grid-template-columns:1fr auto;gap:18px;align-items:center}
.codum-plan-chip{border:1px solid #315345;border-radius:999px;padding:8px 12px;font:800 11px/1 ui-monospace,SFMono-Regular,Menlo,monospace;color:#bde6ca}
.codum-plan-chip.pro{color:#07120b;background:#20e371;border-color:#20e371}
@media (max-width:900px){.codum-app-grid.two,.codum-app-grid.three{grid-template-columns:1fr}.codum-app-page-main{padding:16px}.codum-app-page-shell>h1{font-size:30px}.codum-account-panel{grid-template-columns:1fr}}
