/* ========================================
   Onur Danir — Personal Portfolio Styles
   ======================================== */

/* Base */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===========================
   Modern Hero Section
   =========================== */
.hero-section {
  background: #080d1a;
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0 50px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(59, 130, 246, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(139, 92, 246, 0.11) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 90%, rgba(16, 185, 129, 0.07) 0%, transparent 45%);
  animation: heroGlow 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlow {
  0%   { opacity: 0.75; transform: scale(1); }
  100% { opacity: 1;    transform: scale(1.06); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 450px; height: 450px;
  background: rgba(59, 130, 246, 0.1);
  top: -120px; right: -80px;
  animation: orbFloat 11s ease-in-out infinite;
}
.hero-orb-2 {
  width: 320px; height: 320px;
  background: rgba(139, 92, 246, 0.09);
  bottom: -60px; left: 5%;
  animation: orbFloat 14s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 220px; height: 220px;
  background: rgba(16, 185, 129, 0.07);
  top: 35%; right: 28%;
  animation: orbFloat 9s ease-in-out infinite 2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(-20px, 25px); }
  66%       { transform: translate(20px, -15px); }
}

/* Fade-up animation */
.hero-content {
  animation: heroFadeUp 0.9s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Availability badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #6ee7b7;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
  animation: heroPulse 2s ease infinite;
}
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  50%       { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* Title */
.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.025em;
}
.hero-name-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 55%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-bottom: 0.1em;
}
.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
}
.hero-desc {
  font-size: 1.03rem;
  color: #64748b;
  line-height: 1.75;
  max-width: 510px;
}

/* CTA Buttons */
.hero-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
  transition: all 0.25s ease;
}
.hero-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.55);
}
.hero-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}
.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  transform: translateY(-2px);
}

/* Tech Stack */
.hero-tech-stack {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-tech-label {
  color: #475569;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.hero-tech-badge {
  padding: 3px 11px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-tech-python  { background: rgba(59,130,246,0.14);  color: #93c5fd; border: 1px solid rgba(59,130,246,0.28); }
.hero-tech-django  { background: rgba(16,185,129,0.14);  color: #6ee7b7; border: 1px solid rgba(16,185,129,0.28); }
.hero-tech-react   { background: rgba(56,189,248,0.14);  color: #7dd3fc; border: 1px solid rgba(56,189,248,0.28); }
.hero-tech-docker  { background: rgba(99,102,241,0.14);  color: #a5b4fc; border: 1px solid rgba(99,102,241,0.28); }
.hero-tech-pg      { background: rgba(245,158,11,0.14);  color: #fcd34d; border: 1px solid rgba(245,158,11,0.28); }

/* Terminal Window */
.hero-terminal {
  background: #0d1117;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 30px 65px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  animation: heroFadeUp 0.9s ease 0.2s both;
}
.hero-terminal-header {
  background: #161b22;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hero-terminal-dots { display: flex; gap: 6px; }
.hero-terminal-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: block;
}
.hero-dot-red    { background: #ff5f56; }
.hero-dot-yellow { background: #ffbd2e; }
.hero-dot-green  { background: #27c93f; }
.hero-terminal-title {
  flex: 1;
  text-align: center;
  color: #6b7280;
  font-size: 0.78rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.hero-terminal-body { padding: 20px 22px; }
.hero-terminal-code {
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
  font-size: 0.81rem;
  line-height: 1.75;
  color: #e6edf3;
  margin: 0;
  white-space: pre;
}
.tc-keyword { color: #ff7b72; }
.tc-class   { color: #79c0ff; }
.tc-func    { color: #d2a8ff; }
.tc-str     { color: #a5d6ff; }
.tc-bool    { color: #79c0ff; }
.tc-comment { color: #8b949e; }
.tc-prompt  { color: #3fb950; }
.hero-cursor {
  display: inline-block;
  color: #3fb950;
  animation: heroBlink 1.2s step-end infinite;
}
@keyframes heroBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Stats Row */
.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  margin-top: 0.5rem;
}
.hero-stat { display: flex; flex-direction: column; gap: 3px; }
.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  color: #475569;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Cards */
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Blog Post Content */
.post-content {
  line-height: 1.8;
  font-size: 1.05rem;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 1.5rem auto;
}

.post-content h1,
.post-content h2,
.post-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.post-content h4,
.post-content h5,
.post-content h6 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.post-content p {
  margin-bottom: 1rem;
}

.post-content ul,
.post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.post-content blockquote {
  border-left: 4px solid #0d6efd;
  padding-left: 1rem;
  color: #6c757d;
  font-style: italic;
  margin: 1.5rem 0;
}

.post-content pre {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
  margin-bottom: 1rem;
  border: 1px solid #e9ecef;
}

.post-content code {
  background: #f8f9fa;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
  color: #d63384;
}

.post-content pre code {
  background: transparent;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.post-content table {
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: collapse;
}

.post-content table th,
.post-content table td {
  padding: 0.5rem 0.75rem;
  border: 1px solid #dee2e6;
}

.post-content table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

/* Footer */
footer {
  margin-top: auto;
}

.footer-logo {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.9;
}

footer a:hover {
  opacity: 0.8;
}

/* Badges */
.badge {
  font-weight: 500;
}

/* Navbar */
.navbar {
  padding-top: 14px;
  padding-bottom: 14px;
}

.navbar-brand {
  padding: 0;
  line-height: 1;
}

.navbar-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.navbar-brand:hover .navbar-avatar {
  border-color: rgba(255, 255, 255, 0.95);
}

.navbar-logo {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.navbar-brand:hover .navbar-logo {
  opacity: 0.85;
}

.navbar .nav-link {
  font-weight: 500;
  transition: color 0.15s ease;
}

/* Section Title */
.section-title {
  margin-bottom: 2rem;
}

/* Utility */
.text-md-end {
  text-align: end;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .hero-title { font-size: 2.6rem; }
}
@media (max-width: 767.98px) {
  .hero-section {
    padding: 36px 0 28px;
  }
  .hero-title { font-size: 2rem; }
  .hero-stat-number { font-size: 1.5rem; }
  .hero-desc { font-size: 0.97rem; }
}

/* ===========================
   SERVICE CARDS
   =========================== */
:root {
  --svc-blue: #3b82f6;
  --svc-purple: #8b5cf6;
  --svc-cyan: #06b6d4;
  --svc-amber: #f59e0b;
  --svc-emerald: #10b981;
  --svc-indigo: #6366f1;
  --svc-pink: #ec4899;
  --svc-red: #ef4444;
}

.svc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--card-color, #3b82f6), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.svc-card:hover::before { opacity: 1; }
.svc-card .svc-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}
.svc-card:hover .svc-icon-wrap { transform: scale(1.12) rotate(-4deg); }
.svc-card h5 { color: #e2e8f0; font-weight: 700; margin-bottom: 0.6rem; }
.svc-card p { color: #64748b; font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* Renk varyantları */
.svc-blue  { --card-color: var(--svc-blue);    }
.svc-blue .svc-icon-wrap  { background: rgba(59,130,246,0.15); color: #60a5fa; }

.svc-purple { --card-color: var(--svc-purple); }
.svc-purple .svc-icon-wrap { background: rgba(139,92,246,0.15); color: #a78bfa; }

.svc-cyan  { --card-color: var(--svc-cyan);    }
.svc-cyan .svc-icon-wrap  { background: rgba(6,182,212,0.15); color: #22d3ee; }

.svc-amber { --card-color: var(--svc-amber);   }
.svc-amber .svc-icon-wrap { background: rgba(245,158,11,0.15); color: #fbbf24; }

.svc-emerald { --card-color: var(--svc-emerald); }
.svc-emerald .svc-icon-wrap { background: rgba(16,185,129,0.15); color: #34d399; }

.svc-indigo { --card-color: var(--svc-indigo); }
.svc-indigo .svc-icon-wrap { background: rgba(99,102,241,0.15); color: #818cf8; }

.svc-pink  { --card-color: var(--svc-pink);    }
.svc-pink .svc-icon-wrap  { background: rgba(236,72,153,0.15); color: #f472b6; }

.svc-red   { --card-color: var(--svc-red);     }
.svc-red .svc-icon-wrap   { background: rgba(239,68,68,0.15); color: #f87171; }

/* ===========================
   SCROLL ANIMATION
   =========================== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   TYPING TEXT
   =========================== */
.typing-text {
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 1.05rem;
  font-weight: 500;
  color: #22d3ee;
  letter-spacing: 0.02em;
}
@keyframes typingCursor { 0%, 100% { border-color: currentColor; } 50% { border-color: transparent; } }

/* ===========================
   HOW I WORK STEPS
   =========================== */
.work-step {
  text-align: center;
  padding: 1.5rem 1rem;
}
.work-step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.work-step-num {
  display: inline-flex;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.work-connector {
  position: absolute;
  top: 50%;
  right: -15px;
  color: #334155;
  font-size: 1.2rem;
}

/* ===========================
   DARK SECTIONS — SERVICES
   =========================== */
.services-section {
  background: #080d1a;
  padding: 5rem 0;
}
.services-section .section-title-white {
  color: #f1f5f9;
  margin-bottom: 2.5rem;
}
.section-subtitle {
  color: #64748b;
  font-size: 1.05rem;
}

/* ===========================
   SKILL BADGES (about page)
   =========================== */
.skill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 3px;
}
.skill-badge-blue    { background: rgba(59,130,246,0.15); color: #93c5fd; border: 1px solid rgba(59,130,246,0.25); }
.skill-badge-purple  { background: rgba(139,92,246,0.15); color: #c4b5fd; border: 1px solid rgba(139,92,246,0.25); }
.skill-badge-cyan    { background: rgba(6,182,212,0.15);  color: #67e8f9; border: 1px solid rgba(6,182,212,0.25); }
.skill-badge-amber   { background: rgba(245,158,11,0.15); color: #fcd34d; border: 1px solid rgba(245,158,11,0.25); }
.skill-badge-green   { background: rgba(16,185,129,0.15); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.25); }
.skill-badge-indigo  { background: rgba(99,102,241,0.15); color: #a5b4fc; border: 1px solid rgba(99,102,241,0.25); }
.skill-badge-pink    { background: rgba(236,72,153,0.15); color: #fbcfe8; border: 1px solid rgba(236,72,153,0.25); }
.skill-badge-red     { background: rgba(239,68,68,0.15);  color: #fca5a5; border: 1px solid rgba(239,68,68,0.25); }
.skill-badge-gray    { background: rgba(100,116,139,0.15);color: #cbd5e1; border: 1px solid rgba(100,116,139,0.25); }

/* ===========================
   SVC-ICON alias (svc-icon-wrap'a eşdeğer)
   =========================== */
.svc-card .svc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}
.svc-card:hover .svc-icon { transform: scale(1.12) rotate(-4deg); }
.svc-blue .svc-icon  { background: rgba(59,130,246,0.15); color: #60a5fa; }
.svc-purple .svc-icon { background: rgba(139,92,246,0.15); color: #a78bfa; }
.svc-cyan .svc-icon  { background: rgba(6,182,212,0.15); color: #22d3ee; }
.svc-amber .svc-icon { background: rgba(245,158,11,0.15); color: #fbbf24; }
.svc-emerald .svc-icon { background: rgba(16,185,129,0.15); color: #34d399; }
.svc-indigo .svc-icon { background: rgba(99,102,241,0.15); color: #818cf8; }
.svc-pink .svc-icon  { background: rgba(236,72,153,0.15); color: #f472b6; }
.svc-red .svc-icon   { background: rgba(239,68,68,0.15); color: #f87171; }
.svc-teal .svc-icon  { background: rgba(20,184,166,0.15); color: #2dd4bf; }
.svc-orange .svc-icon { background: rgba(249,115,22,0.15); color: #fb923c; }
.svc-green .svc-icon { background: rgba(34,197,94,0.15); color: #4ade80; }

/* Inline ikon (başlık içi) */
.svc-card .svc-inline-icon {
  font-size: 1em;
  vertical-align: -0.1em;
}
.svc-blue    .svc-inline-icon { color: #60a5fa; }
.svc-purple  .svc-inline-icon { color: #a78bfa; }
.svc-cyan    .svc-inline-icon { color: #22d3ee; }
.svc-amber   .svc-inline-icon { color: #fbbf24; }
.svc-emerald .svc-inline-icon { color: #34d399; }
.svc-indigo  .svc-inline-icon { color: #818cf8; }
.svc-pink    .svc-inline-icon { color: #f472b6; }
.svc-red     .svc-inline-icon { color: #f87171; }
.svc-teal    .svc-inline-icon { color: #2dd4bf; }
.svc-orange  .svc-inline-icon { color: #fb923c; }
.svc-green   .svc-inline-icon { color: #4ade80; }

/* Extra svc-card renk varyantları */
.svc-teal  { --card-color: #14b8a6; }
.svc-orange { --card-color: #f97316; }
.svc-green { --card-color: #22c55e; }

/* ===========================
   HOW I WORK steps (how-step sınıfı)
   =========================== */
.how-step {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: 16px;
  transition: background 0.2s ease;
}
.how-step:hover { background: rgba(0,0,0,0.04); }
.how-step-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.how-step-emoji { font-size: 2.2rem; display: block; }
.how-step-num {
  position: absolute;
  top: -6px; right: -12px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ===========================
   HERO TECH BADGE — Ek renkler (LangChain, n8n, Power BI)
   =========================== */
.hero-tech-langchain { background: rgba(139,92,246,0.14); color: #c4b5fd; border: 1px solid rgba(139,92,246,0.28); }
.hero-tech-n8n       { background: rgba(234,88,12,0.14);  color: #fdba74; border: 1px solid rgba(234,88,12,0.28); }
.hero-tech-powerbi   { background: rgba(234,179,8,0.14);  color: #fde047; border: 1px solid rgba(234,179,8,0.28); }

/* ===========================
   SECTION-TITLE-WHITE (standalone)
   =========================== */
.section-title-white {
  color: #f1f5f9;
  margin-bottom: 2rem;
}

/* ===========================
   DARK CARD (posts section)
   =========================== */
.dark-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
}
.latest-posts-dark { background: #0a0f1e; }
.cta-gradient { background: linear-gradient(135deg, #0a0f1e 0%, #1e1b4b 50%, #0a0f1e 100%); }

/* ===========================
   TYPING CURSOR span
   =========================== */
.typing-cursor {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  color: #22d3ee;
  animation: heroBlink 0.75s step-end infinite;
  margin-left: 2px;
}

/* ===========================
   DARK FORM FIELDS (contact page)
   =========================== */
.form-field-dark input,
.form-field-dark select,
.form-field-dark textarea {
  background-color: #1e2537;
  border: 1px solid rgba(255,255,255,0.12);
  color: #e2e8f0;
  border-radius: 8px;
}
.form-field-dark input:focus,
.form-field-dark select:focus,
.form-field-dark textarea:focus {
  background-color: #252d42;
  border-color: rgba(59,130,246,0.5);
  color: #f1f5f9;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
  outline: none;
}
.form-field-dark input::placeholder,
.form-field-dark textarea::placeholder {
  color: #475569;
}

/* ===========================
   Site Toast Popup
   =========================== */
.site-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 420px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid;
  backdrop-filter: blur(12px);
  margin-bottom: 8px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.site-toast--success {
  background: rgba(17, 24, 39, 0.92);
  border-color: rgba(34, 197, 94, 0.35);
  color: #86efac;
}
.site-toast--success .site-toast__icon { color: #22c55e; }
.site-toast--error {
  background: rgba(17, 24, 39, 0.92);
  border-color: rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}
.site-toast--error .site-toast__icon { color: #ef4444; }
.site-toast--warning {
  background: rgba(17, 24, 39, 0.92);
  border-color: rgba(245, 158, 11, 0.35);
  color: #fcd34d;
}
.site-toast--warning .site-toast__icon { color: #f59e0b; }
.site-toast__icon { font-size: 1.1rem; flex-shrink: 0; }
.site-toast__text { flex: 1; font-size: .9rem; line-height: 1.4; }
.site-toast__close {
  background: none;
  border: none;
  color: inherit;
  opacity: 0.6;
  cursor: pointer;
  padding: 0;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}
.site-toast__close:hover { opacity: 1; }
