:root{

  --bg:#060816;
  --card:#12192b;

  --border:rgba(255,255,255,.08);

  --text:#ffffff;
  --muted:#98a3bd;

  --accent:#ff7a3d;
  --accent2:#7b61ff;

  --blue:#3b82f6;

  --transition:.35s ease;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{

  background:
    linear-gradient(
      180deg,
      #050816,
      #0b1022
    );

  color:var(--text);

  font-family:'DM Sans',sans-serif;

  overflow-x:hidden;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  border-right: 1px solid var(--sidebar-border);
  transition: transform var(--transition);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--sidebar-border);
}

.brand-icon {
  font-size: 24px;
  color: var(--accent);
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.5px;
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 16px 12px;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  color: var(--sidebar-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
}

.sidebar-nav li a i {
  width: 18px;
  text-align: center;
  font-size: 15px;
}

.sidebar-nav li a:hover {
  background: var(--sidebar-hover);
  color: #fff;
  transform: translateX(4px);
}

.sidebar-nav li a:active {
  transform: translateX(2px) scale(0.98);
}

.sidebar-nav li.active a {
  background: var(--sidebar-active);
  color: var(--accent);
  border-left: 3px solid var(--accent);
}

.sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--sidebar-border);
  display: flex;
  gap: 16px;
}

.sidebar-footer a {
  color: var(--sidebar-text);
  font-size: 16px;
  transition: color var(--transition);
}

.sidebar-footer a:hover {
  color: var(--accent);
}

/* Sidebar backdrop (mobile) */
.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.sidebar-backdrop.visible {
  display: block;
}
/* NAVBAR */

.navbar{

  position:fixed;

  top:0;
  left:240px;
  right:0;

  height:82px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:0 30px;

  background:
    rgba(5,8,22,.82);

  backdrop-filter:blur(18px);

  border-bottom:
    1px solid var(--border);

  z-index:999;
}

.search-bar{

  width:420px;

  display:flex;
  align-items:center;

  gap:12px;

  padding:14px 18px;

  border-radius:999px;

  background:
    rgba(255,255,255,.05);

  border:
    1px solid var(--border);
}

.search-bar input{

  width:100%;

  border:none;
  outline:none;

  background:none;

  color:white;
}

.nav-actions{

  display:flex;
  gap:14px;
}

.outline-btn,
.primary-btn{

  border:none;

  padding:14px 20px;

  border-radius:18px;

  cursor:pointer;

  font-weight:700;
}

.outline-btn{

  background:
    rgba(255,255,255,.06);

  color:white;
}

.primary-btn{

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent2)
    );

  color:white;
}

/* MAIN */

.main-home{

  margin-left:240px;

  padding:120px 40px 160px;
}

/* HERO */

.hero-section{

  text-align:center;

  margin-bottom:70px;
}

.hero-badge{

  display:inline-flex;

  padding:12px 18px;

  border-radius:999px;

  background:
    rgba(255,255,255,.06);

  border:
    1px solid var(--border);

  margin-bottom:24px;
}

.hero-section h1{

  font-size:
    clamp(58px,8vw,110px);

  line-height:1;

  margin-bottom:20px;

  font-family:'Syne',sans-serif;
}

.hero-section h1 span{

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent2)
    );

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;
}

.hero-section p{

  color:var(--muted);

  max-width:760px;

  margin:auto;

  line-height:1.8;

  font-size:18px;
}

/* GRID */

.dock-grid{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

  gap:28px;
}

/* CARD */

.dock-card{

  background:
    linear-gradient(
      145deg,
      #12192b,
      #172038
    );

  border:
    1px solid var(--border);

  border-radius:32px;

  padding:30px;

  transition:var(--transition);
}

.dock-card:hover{

  transform:translateY(-8px);

  border-color:
    rgba(255,255,255,.14);
}

.card-top{

  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:26px;
}

.card-label{

  padding:10px 16px;

  border-radius:999px;

  background:
    rgba(255,255,255,.06);

  font-size:12px;

  color:#d9def7;
}

.card-icon{

  width:64px;
  height:64px;

  border-radius:20px;

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent2)
    );

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:24px;
}

.purple{
  background:linear-gradient(135deg,#7b61ff,#b794ff);
}

.blue{
  background:linear-gradient(135deg,#3b82f6,#38bdf8);
}

.dock-card h2{

  font-size:38px;

  margin-bottom:16px;

  font-family:'Syne',sans-serif;
}

.dock-card p{

  color:var(--muted);

  line-height:1.8;

  margin-bottom:30px;
}

/* DEMO */

.demo-box{

  height:220px;

  border-radius:28px;

  background:
    rgba(255,255,255,.03);

  border:
    1px solid rgba(255,255,255,.05);

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:26px;
}

/* MINI DOCK */

.mini-dock{

  display:flex;

  gap:14px;

  padding:16px 20px;

  border-radius:28px;

  background:
    rgba(255,255,255,.08);

  backdrop-filter:blur(18px);
}

.dock-item{

  width:64px;
  height:64px;

  border-radius:20px;

  background:
    rgba(255,255,255,.06);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:24px;

  transition:var(--transition);

  cursor:pointer;
}

.dock-item:hover{

  transform:
    translateY(-12px)
    scale(1.12);
}

.active{

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent2)
    );
}

/* NEON */

.neon-dock{

  background:
    rgba(123,97,255,.12);
}

.neon{

  box-shadow:
    0 0 20px rgba(123,97,255,.35);
}

/* MINIMAL */

.minimal-dock{

  background:
    rgba(255,255,255,.04);
}

.minimal{

  border:
    1px solid rgba(255,255,255,.08);
}

/* BUTTONS */

.card-buttons{

  display:flex;

  gap:14px;
}

.view-btn,
.copy-btn{

  flex:1;

  border:none;

  padding:16px;

  border-radius:18px;

  cursor:pointer;

  font-weight:700;
}

.view-btn{

  background:
    rgba(255,255,255,.06);

  color:white;
}

.copy-btn{

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent2)
    );

  color:white;
}

/* GLOBAL DOCK */

.global-dock{

  position:fixed;

  left:50%;
  bottom:24px;

  transform:translateX(-50%);

  display:flex;

  gap:14px;

  padding:18px 22px;

  border-radius:34px;

  background:
    rgba(10,14,30,.78);

  backdrop-filter:blur(20px);

  border:
    1px solid rgba(255,255,255,.08);

  z-index:9999;
}

.global-item{

  width:74px;
  height:74px;

  border-radius:24px;

  background:
    rgba(255,255,255,.05);

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  gap:6px;

  cursor:pointer;

  transition:var(--transition);

  font-size:14px;
}

.global-item i{

  font-size:22px;
}

.global-item:hover{

  transform:
    translateY(-10px)
    scale(1.08);
}

.active-global{

  background:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent2)
    );
}

/* RESPONSIVE */

@media(max-width:900px){

  .sidebar{
    display:none;
  }

  .navbar,
  .main-home{

    margin-left:0;

    left:0;
  }

}

@media(max-width:768px){

  .navbar{

    flex-direction:column;

    height:auto;

    padding:18px;

    gap:16px;
  }

  .search-bar{
    width:100%;
  }

  .main-home{
    padding:160px 20px 180px;
  }

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

  .global-dock{

    width:95%;

    justify-content:space-between;

    gap:10px;
  }

  .global-item{

    width:58px;
    height:58px;

    border-radius:18px;

    font-size:11px;
  }

  .global-item span{
    display:none;
  }

}
/* =====================================================
EXTRA CARD ICON COLORS
===================================================== */

.card-icon.pink {
  background: rgba(255, 0, 128, 0.12);
  color: #ff4da6;
}

.card-icon.cyan {
  background: rgba(0, 217, 255, 0.12);
  color: #00d9ff;
}

.card-icon.green {
  background: rgba(0, 255, 136, 0.12);
  color: #00d084;
}

.card-icon.orange {
  background: rgba(255, 153, 0, 0.12);
  color: #ff9800;
}

.card-icon.violet {
  background: rgba(140, 82, 255, 0.12);
  color: #8c52ff;
}

/* =====================================================
DEMO BOX
===================================================== */

.demo-box {
  position: relative;
  overflow: hidden;
}

/* =====================================================
ORBIT DOCK
===================================================== */

.orbit-dock {
  position: relative;
  width: 180px;
  height: 180px;
  margin: auto;
}

.orbit-ring {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: rotateOrbit 12s linear infinite;
}

.orbit-item {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(14px);
  transition: .35s ease;
}

.orbit-item:hover {
  transform: scale(1.12);
  background: rgba(255,255,255,0.1);
}

.orbit-item.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg,#ff7a3d,#7b61ff);
  box-shadow: 0 0 30px rgba(123,97,255,.35);
}

.orbit-item.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-item.right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.orbit-item.bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-item.left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes rotateOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* =====================================================
LIQUID DOCK
===================================================== */

.liquid-dock {
  gap: 14px;
}

.dock-item.liquid {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  transition: .35s cubic-bezier(.68,-0.6,.32,1.6);
  position: relative;
  overflow: hidden;
}

.dock-item.liquid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,217,255,.18),
    rgba(123,97,255,.18)
  );
  opacity: 0;
  transition: .35s;
}

.dock-item.liquid:hover::before {
  opacity: 1;
}

.dock-item.liquid:hover {
  transform: translateY(-10px) scale(1.1);
  border-color: rgba(0,217,255,0.35);
}

.dock-item.liquid.active {
  background: linear-gradient(
    135deg,
    rgba(0,217,255,.25),
    rgba(123,97,255,.25)
  );
  box-shadow: 0 10px 25px rgba(0,217,255,.18);
}

/* =====================================================
TERMINAL DOCK
===================================================== */

.terminal-dock {
  background: #0f172a;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(0,255,136,0.08);
  box-shadow: inset 0 0 20px rgba(0,255,136,.04);
}

.dock-item.terminal {
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.1);
  color: #00ff99;
  font-size: 18px;
  transition: .3s ease;
}

.dock-item.terminal:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 18px rgba(0,255,136,.25);
}

.dock-item.terminal.active {
  background: rgba(0,255,136,.14);
  box-shadow: 0 0 24px rgba(0,255,136,.35);
}

/* =====================================================
STACKED DOCK
===================================================== */

.stacked-dock {
  position: relative;
  width: fit-content;
  margin: auto;
}

.stack-layer {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.03);
  border-radius: 26px;
  transform: translateY(10px) scale(.96);
  z-index: 0;
}

.stack-layer.second {
  transform: translateY(18px) scale(.92);
  opacity: .6;
}

.stacked-dock .mini-dock {
  position: relative;
  z-index: 2;
}

.dock-item.stack {
  background: rgba(255,255,255,0.06);
  transition: .3s ease;
}

.dock-item.stack:hover {
  transform: translateY(-10px) rotate(-4deg);
}

.dock-item.stack.active {
  background: linear-gradient(135deg,#ff7a3d,#ffb347);
  box-shadow: 0 10px 24px rgba(255,122,61,.35);
}

/* =====================================================
NEURAL DOCK
===================================================== */

.neural-dock {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.neural-line {
  position: absolute;
  width: 78%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(140,82,255,.6),
    transparent
  );
  animation: pulseLine 2.5s infinite;
}

.dock-item.neural {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(140,82,255,.15);
  color: #d7cbff;
  transition: .35s ease;
}

.dock-item.neural::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(140,82,255,.15);
  opacity: 0;
  transition: .3s;
}

.dock-item.neural:hover::after {
  opacity: 1;
  inset: -10px;
}

.dock-item.neural:hover {
  transform: translateY(-8px) scale(1.08);
}

.dock-item.neural.active {
  background: linear-gradient(
    135deg,
    rgba(140,82,255,.35),
    rgba(123,97,255,.2)
  );
  box-shadow: 0 0 25px rgba(140,82,255,.3);
}

@keyframes pulseLine {

  0% {
    opacity: .3;
    transform: scaleX(.9);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }

  100% {
    opacity: .3;
    transform: scaleX(.9);
  }

}

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

@media (max-width: 768px) {

  .orbit-dock {
    transform: scale(.9);
  }

  .mini-dock {
    flex-wrap: wrap;
    justify-content: center;
  }

}
/* =====================================================
EXTRA CARD ICON COLORS
===================================================== */

.card-icon.pink {
  background: rgba(255, 0, 128, 0.12);
  color: #ff4da6;
}

.card-icon.cyan {
  background: rgba(0, 217, 255, 0.12);
  color: #00d9ff;
}

.card-icon.green {
  background: rgba(0, 255, 136, 0.12);
  color: #00d084;
}

.card-icon.orange {
  background: rgba(255, 153, 0, 0.12);
  color: #ff9800;
}

.card-icon.violet {
  background: rgba(140, 82, 255, 0.12);
  color: #8c52ff;
}

/* =====================================================
DEMO BOX
===================================================== */

.demo-box {
  position: relative;
  overflow: hidden;
}

/* =====================================================
ORBIT DOCK
===================================================== */

.orbit-dock {
  position: relative;
  width: 180px;
  height: 180px;
  margin: auto;
}

.orbit-ring {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: rotateOrbit 12s linear infinite;
}

.orbit-item {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(14px);
  transition: .35s ease;
}

.orbit-item:hover {
  transform: scale(1.12);
  background: rgba(255,255,255,0.1);
}

.orbit-item.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg,#ff7a3d,#7b61ff);
  box-shadow: 0 0 30px rgba(123,97,255,.35);
}

.orbit-item.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-item.right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.orbit-item.bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-item.left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes rotateOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* =====================================================
LIQUID DOCK
===================================================== */

.liquid-dock {
  gap: 14px;
}

.dock-item.liquid {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  transition: .35s cubic-bezier(.68,-0.6,.32,1.6);
  position: relative;
  overflow: hidden;
}

.dock-item.liquid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,217,255,.18),
    rgba(123,97,255,.18)
  );
  opacity: 0;
  transition: .35s;
}

.dock-item.liquid:hover::before {
  opacity: 1;
}

.dock-item.liquid:hover {
  transform: translateY(-10px) scale(1.1);
  border-color: rgba(0,217,255,0.35);
}

.dock-item.liquid.active {
  background: linear-gradient(
    135deg,
    rgba(0,217,255,.25),
    rgba(123,97,255,.25)
  );
  box-shadow: 0 10px 25px rgba(0,217,255,.18);
}

/* =====================================================
TERMINAL DOCK
===================================================== */

.terminal-dock {
  background: #0f172a;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(0,255,136,0.08);
  box-shadow: inset 0 0 20px rgba(0,255,136,.04);
}

.dock-item.terminal {
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.1);
  color: #00ff99;
  font-size: 18px;
  transition: .3s ease;
}

.dock-item.terminal:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 18px rgba(0,255,136,.25);
}

.dock-item.terminal.active {
  background: rgba(0,255,136,.14);
  box-shadow: 0 0 24px rgba(0,255,136,.35);
}

/* =====================================================
STACKED DOCK
===================================================== */

.stacked-dock {
  position: relative;
  width: fit-content;
  margin: auto;
}

.stack-layer {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.03);
  border-radius: 26px;
  transform: translateY(10px) scale(.96);
  z-index: 0;
}

.stack-layer.second {
  transform: translateY(18px) scale(.92);
  opacity: .6;
}

.stacked-dock .mini-dock {
  position: relative;
  z-index: 2;
}

.dock-item.stack {
  background: rgba(255,255,255,0.06);
  transition: .3s ease;
}

.dock-item.stack:hover {
  transform: translateY(-10px) rotate(-4deg);
}

.dock-item.stack.active {
  background: linear-gradient(135deg,#ff7a3d,#ffb347);
  box-shadow: 0 10px 24px rgba(255,122,61,.35);
}

/* =====================================================
NEURAL DOCK
===================================================== */

.neural-dock {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.neural-line {
  position: absolute;
  width: 78%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(140,82,255,.6),
    transparent
  );
  animation: pulseLine 2.5s infinite;
}

.dock-item.neural {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(140,82,255,.15);
  color: #d7cbff;
  transition: .35s ease;
}

.dock-item.neural::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(140,82,255,.15);
  opacity: 0;
  transition: .3s;
}

.dock-item.neural:hover::after {
  opacity: 1;
  inset: -10px;
}

.dock-item.neural:hover {
  transform: translateY(-8px) scale(1.08);
}

.dock-item.neural.active {
  background: linear-gradient(
    135deg,
    rgba(140,82,255,.35),
    rgba(123,97,255,.2)
  );
  box-shadow: 0 0 25px rgba(140,82,255,.3);
}

@keyframes pulseLine {

  0% {
    opacity: .3;
    transform: scaleX(.9);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }

  100% {
    opacity: .3;
    transform: scaleX(.9);
  }

}

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

@media (max-width: 768px) {

  .orbit-dock {
    transform: scale(.9);
  }

  .mini-dock {
    flex-wrap: wrap;
    justify-content: center;
  }

}
/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-left: var(--sidebar-w);
  background: #111;
  color: #aaa;
  padding: 0;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 40px;
  padding: 56px 48px 40px;
  max-width: 100%;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition);
}

.socials a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.newsletter-form button:hover {
  background: #d45c28;
}

.footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding: 20px 48px;
  text-align: center;
  font-size: 13px;
  color: #555;
}