/* :root {
  --circle-size: 300px;
  --gap: 15px;
  --transition-speed: 0.4s;
  --color-instagram: #e1306c;
  --color-twitter: #1da1f2;
  --color-github: #333333;
  --color-discord: #5865f2;
  --text-light: #ffffff;
}

#social {
  padding: 100px 20px;
}

.social_container {
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 20px;
}

.social-circle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: var(--circle-size);
  height: var(--circle-size);
  gap: var(--gap);
}

.social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f4f4;
  text-decoration: none;
  font-size: 2.5rem;
  transition: all var(--transition-speed)
    cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #444;
  overflow: hidden;
}

.instagram {
  border-radius: 100% 10px 10px 10px;
}
.twitter {
  border-radius: 10px 100% 10px 10px;
}
.github {
  border-radius: 10px 10px 10px 100%;
}
.discord {
  border-radius: 10px 10px 100% 10px;
}

.social-item:hover {
  transform: scale(1.3);
  color: var(--text-light);
  z-index: 10;
}

.instagram:hover {
  background-color: var(--color-instagram);
}
.twitter:hover {
  background-color: var(--color-twitter);
}
.github:hover {
  background-color: var(--color-github);
}
.discord:hover {
  background-color: var(--color-discord);
} */

/* :root {
  
  --dock-bg: rgba(255, 255, 255, 0.1);
  --dock-border: rgba(255, 255, 255, 0.2);
  --blur-amount: 10px;
}

.social-dock {
  display: flex;
  gap: 20px;
  padding: 15px 30px;
  background: var(--dock-bg);
  backdrop-filter: blur(var(--blur-amount)); 
  border: 1px solid var(--dock-border);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dock-item {
  font-size: 2rem;
  color: #555;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}


.dock-item:hover {
  transform: translateY(-15px) scale(1.2);
  color: var(--brand-color); 
}

.dock-item::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.dock-item:hover::after {
  opacity: 1;
  box-shadow: 0 0 10px currentColor;
}


.instagram:hover {
  --brand-color: #e1306c;
}
.twitter:hover {
  --brand-color: #1da1f2;
}
.github:hover {
  --brand-color: #333333;
}
.discord:hover {
  --brand-color: #5865f2;
} */
:root {
  --term-bg: #fafafa;
  --term-header: #e5e5e5;
  --term-text: #383a42;
  --term-prompt: #50a14f;
  --term-keyword: #4078f2;
}

html.dark-mode {
  --term-bg: #2d2d2d;
  --term-header: #1a1a1a;
  --term-text: #e0e0e0;
  --term-prompt: #50d950;
  --term-keyword: #60a5fa;
}
.social_container {
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 20px;
}
.terminal-social {
  max-width: 550px;
  margin: 40px auto;

  background: var(--term-bg);
  border-radius: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
}

.terminal-header {
  background: var(--term-header);
  padding: 12px 18px;
  display: flex;
  align-items: center;
}

.terminal-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) inset;
}
.terminal-header .dot.red {
  background: #ff5f56;
}
.terminal-header .dot.yellow {
  background: #ffbd2e;
}
.terminal-header .dot.green {
  background: #27c93f;
}

html.dark-mode .terminal-header {
  background: rgba(26, 26, 26, 0.9);
}
html.dark-mode .terminal-header .dot.red {
  background: #ff6b6b;
}
html.dark-mode .terminal-header .dot.yellow {
  background: #ffd166;
}
html.dark-mode .terminal-header .dot.green {
  background: #34d399;
}

.terminal-title {
  color: #888;
  font-size: 13px;
  margin-left: 15px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

html.dark-mode .terminal-title {
  color: #999;
}

.terminal-body {
  padding: 25px;
  line-height: 1.8;
}

.social_vibe {
  max-width: 700px;
  text-align: center;
  color: var(--term-text);
  margin: 8px 0 0 0;
  font-style: italic;
  opacity: 0.95;
}

.social_slogan {
  text-align: center;
  font-weight: 600;
  color: var(--term-text);
  margin-top: 18px;
  font-size: 16px;
}

.term-link {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease;
  transition: all 0.2s ease;
}

html.dark-mode .term-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.term-link:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.prompt {
  color: var(--term-prompt);
  margin-right: 8px;
}
.command {
  color: var(--term-keyword);
  margin-right: 10px;
}
.platform {
  color: var(--term-text);
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--term-prompt);
  margin-left: 5px;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 400px) {
  :root {
    --circle-size: 250px;
  }
}
