/* Page-scoped styles for Welcome page */

:root { --gy-fade: 6rem; }
@media (max-width: 640px) { :root { --gy-fade: 3rem; } }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* Typography utility for Poppins headings */
.font-poppins { font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; }

/* Animated subtle gradient background */
@keyframes gy-gradient-flow {
    0% {
        background: radial-gradient(800px 800px at 20% 30%, #0B1426, #1E293B 40%, #0F172A 80%);
    }
    33% {
        background: radial-gradient(800px 800px at 80% 20%, #1E293B, #0B1426 40%, #0F172A 80%);
    }
    66% {
        background: radial-gradient(800px 800px at 60% 80%, #0F172A, #1E293B 40%, #0B1426 80%);
    }
    100% {
        background: radial-gradient(800px 800px at 20% 30%, #0B1426, #1E293B 40%, #0F172A 80%);
    }
}

.gy-subtle-gradient {
    animation: gy-gradient-flow 20s ease-in-out infinite;
}
/* Removed unused after/fixed watermark helpers */
/* Scroll ticker */
@keyframes gy-ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.gy-ticker-mask {
    -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0, #000 var(--gy-fade), #000 calc(100% - var(--gy-fade)), rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0, #000 var(--gy-fade), #000 calc(100% - var(--gy-fade)), rgba(0,0,0,0) 100%);
}
.gy-ticker-run { animation: gy-ticker 16s linear infinite; }

/* Simple reveal animations */
@keyframes fade-in-up { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes slide-in-left { 0% { opacity: 0; transform: translateX(-30px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes slide-in-right { 0% { opacity: 0; transform: translateX(30px); } 100% { opacity: 1; transform: translateX(0); } }
.animate-fade-in-up { animation: fade-in-up 0.6s ease-out forwards; opacity: 0; }
.animate-slide-in-left { animation: slide-in-left 0.8s ease-out forwards; opacity: 0; }
.animate-slide-in-right { animation: slide-in-right 0.8s ease-out forwards; opacity: 0; }

/* Utility: animation delay helpers */
.delay-100 { animation-delay: 0.1s !important; }
.delay-200 { animation-delay: 0.2s !important; }
.delay-300 { animation-delay: 0.3s !important; }
.delay-400 { animation-delay: 0.4s !important; }
.delay-500 { animation-delay: 0.5s !important; }

/* Marker highlight utilities */
.marker { box-decoration-break: clone; -webkit-box-decoration-break: clone; background: linear-gradient(transparent 58%, var(--hl-color, rgba(255,255,0,0.6)) 58%); padding: 0 0.15em; border-radius: 0.2rem; }
.marker-solid { background: var(--hl-color, rgba(255,255,0,0.85)); }
.marker-yellow { --hl-color: rgba(253, 230, 138, 0.95); }
.marker-lime { --hl-color: rgba(190, 242, 100, 0.9); }
.marker-cyan { --hl-color: rgba(103, 232, 249, 0.9); }
.marker-red { --hl-color: rgba(252, 165, 165, 0.9); }
.marker-orange { --hl-color: rgba(253, 186, 116, 0.9); }
.marker-fuchsia { --hl-color: rgba(240, 171, 252, 0.9); }
.marker-amber { --hl-color: rgba(251, 191, 36, 0.9); }
.marker-violet { --hl-color: rgba(196, 181, 253, 0.9); }
.marker-emerald { --hl-color: rgba(110, 231, 183, 0.9); }
.marker-teal { --hl-color: rgba(94, 234, 212, 0.9); }
.marker-pink { --hl-color: rgba(249, 168, 212, 0.9); }
.marker-blue { --hl-color: rgba(147, 197, 253, 0.9); }

/* Fancy marker highlight variations */
.highlight { display: inline-block; background: linear-gradient(100deg, #ffffaf00 1%, #ffffaf 2.5%, #ffffaf80 5.7%, #ffffaf1a 93%, #ffffafb4 95%, #ffffaf00 98%), linear-gradient(182deg, #ffffaf00, #ffffaf4d 8%, #ffffaf00 15%); padding: 0 0.15em; border-radius: 0.2rem; }
.green-highlight { display: inline-block; background: linear-gradient(100deg, #b8ffaf00 1%, #b8ffaf 2.5%, #b8ffaf80 5.7%, #b8ffaf1a 93%, #b8ffafb4 95%, #b8ffaf00 98%), linear-gradient(182deg, #b8ffaf00, #b8ffaf4d 8%, #b8ffaf00 15%); padding: 0 0.15em; border-radius: 0.2rem; }
.pink-highlight { display: inline-block; background: linear-gradient(100deg, #ffafd400 1%, #ffafd4 2.5%, #ffafd480 5.7%, #ffafd41a 93%, #ffafd4b4 95%, #ffafd400 98%), linear-gradient(182deg, #ffafd400, #ffafd44d 8%, #ffafd400 15%); padding: 0 0.15em; border-radius: 0.2rem; }
.blue-highlight { display: inline-block; background: linear-gradient(100deg, #afd7ff00 1%, #afd7ff 2.5%, #afd7ff80 5.7%, #afd7ff1a 93%, #afd7ffb4 95%, #afd7ff00 98%), linear-gradient(182deg, #afd7ff00, #afd7ff4d 8%, #afd7ff00 15%); padding: 0 0.15em; border-radius: 0.2rem; }
.orange-highlight { display: inline-block; background: linear-gradient(100deg, #ffd39b00 1%, #ffd39b 2.5%, #ffd39b80 5.7%, #ffd39b1a 93%, #ffd39bb4 95%, #ffd39b00 98%), linear-gradient(182deg, #ffd39b00, #ffd39b4d 8%, #ffd39b00 15%); padding: 0 0.15em; border-radius: 0.2rem; }

/* Color utilities replacing inline styles */
.topbar-bg { background-color: #EBEBEB; }
.nav-bg { background-color: #0B1426; }
.btn-red { background-color: #DC2626; color: #ffffff; }
.btn-orange { background-color: #F59E0B; color: #ffffff; }
.btn-orange:hover { filter: brightness(1.05); }
.hero-bg { background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 60%, #93C5FD 100%); }

/* Dark Mode Styles */
.gy-dark-bg { 
    background: linear-gradient(135deg, #000000 0%, #0B192C 50%, #1E3E62 100%);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
}

/* Subtle background animation overlay */
.gy-dark-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0B192C 0%, #1E3E62 50%, #000000 100%);
    opacity: 0.4;
    animation: gy-background-pulse 12s ease-in-out infinite;
    z-index: 1;
}

@keyframes gy-background-pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

.gy-dark-topbar { 
    background-color: #0B192C; 
    border-color: #374151;
}

.gy-dark-nav { 
    background-color: #0B192C; 
    border-color: #374151;
}

.gy-dark-hero { 
    background: linear-gradient(135deg, #1E3E62 0%, #0B192C 60%, #000000 100%); 
}

.gy-dark-section { 
    background: linear-gradient(135deg, #1E3E62 0%, #0B192C 100%); 
}

.gy-dark-card { 
    background: linear-gradient(135deg, #1E3E62 0%, #0B192C 100%); 
    border-color: #374151;
}

/* Fancy marker highlight variations - ORIGINAL EFFECT RESTORED */
.highlight { display: inline-block; background: linear-gradient(100deg, #ffffaf00 1%, #ffffaf 2.5%, #ffffaf80 5.7%, #ffffaf1a 93%, #ffffafb4 95%, #ffffaf00 98%), linear-gradient(182deg, #ffffaf00, #ffffaf4d 8%, #ffffaf00 15%); padding: 0 0.15em; border-radius: 0.2rem; }
.green-highlight { display: inline-block; background: linear-gradient(100deg, #b8ffaf00 1%, #b8ffaf 2.5%, #b8ffaf80 5.7%, #b8ffaf1a 93%, #b8ffafb4 95%, #b8ffaf00 98%), linear-gradient(182deg, #b8ffaf00, #b8ffaf4d 8%, #b8ffaf00 15%); padding: 0 0.15em; border-radius: 0.2rem; }
.pink-highlight { display: inline-block; background: linear-gradient(100deg, #ffafd400 1%, #ffafd4 2.5%, #ffafd480 5.7%, #ffafd41a 93%, #ffafd4b4 95%, #ffafd400 98%), linear-gradient(182deg, #ffafd400, #ffafd44d 8%, #ffafd400 15%); padding: 0 0.15em; border-radius: 0.2rem; }
.blue-highlight { display: inline-block; background: linear-gradient(100deg, #afd7ff00 1%, #afd7ff 2.5%, #afd7ff80 5.7%, #afd7ff1a 93%, #afd7ffb4 95%, #afd7ff00 98%), linear-gradient(182deg, #afd7ff00, #afd7ff4d 8%, #afd7ff00 15%); padding: 0 0.15em; border-radius: 0.2rem; }
.orange-highlight { display: inline-block; background: linear-gradient(100deg, #ffd39b00 1%, #ffd39b 2.5%, #ffd39b80 5.7%, #ffd39b1a 93%, #ffd39bb4 95%, #ffd39b00 98%), linear-gradient(182deg, #ffd39b00, #ffd39b4d 8%, #ffd39b00 15%); padding: 0 0.15em; border-radius: 0.2rem; }

/* Footer watermark */
.gy-footer-watermark {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: end center;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 639.98px) {
    .gy-footer-watermark {
        place-items: center center;
    }
}
.gy-footer-watermark span {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'Orbitron', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1;
    opacity: 0.06;
    color: #ffffff;
    transform: translateY(0);
}
@media (min-width: 1024px) {
    .gy-footer-watermark span { font-size: clamp(56px, 12vw, 160px); }
}
@media (min-width: 640px) and (max-width: 1023.98px) {
    .gy-footer-watermark span { font-size: clamp(32px, 8vw, 80px); }
}
@media (max-width: 639.98px) {
    .gy-footer-watermark span { font-size: clamp(24px, 6vw, 48px); }
}

/* Footer enhancements */
.gy-footer { position: relative; isolation: isolate; }
.gy-footer-divider { border-top: 1px solid rgba(255,255,255,0.12); }
.gy-footer-blob { position: absolute; width: 420px; height: 420px; filter: blur(48px); opacity: 0.25; z-index: 0; border-radius: 50%; }
.gy-footer-blob-a { left: -120px; bottom: -120px; background: radial-gradient(50% 50% at 50% 50%, rgba(23,78,226,0.5), transparent 70%); }
.gy-footer-blob-b { right: -120px; top: -140px; background: radial-gradient(50% 50% at 50% 50%, rgba(220,38,38,0.45), transparent 70%); }
.social-btn { display: inline-flex; height: 2.5rem; width: 2.5rem; align-items: center; justify-content: center; border-radius: 0.75rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #ffffff; transition: transform .2s ease, background .2s ease; }
.social-btn:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }
.footer-link { color: #e5e7eb; position: relative; text-decoration: none; transition: color .2s ease; }
.footer-link::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: linear-gradient(90deg, #174ee2, #dc2626); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.footer-link:hover { color: #ffffff; }
.footer-link:hover::after { transform: scaleX(1); }
.newsletter-input { 
  flex: 1 1 auto; 
  min-width: 0; 
  border-radius: 0.75rem; 
  padding: 0.75rem 0.9rem; 
  background: rgba(255,255,255,0.08); 
  color: #ffffff; 
  border: 1px solid rgba(255,255,255,0.18); 
  outline: none; 
  font-size: 0.875rem;
}
.newsletter-input::placeholder { color: rgba(229,231,235,0.7); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.35); box-shadow: 0 0 0 3px rgba(255,255,255,0.08); }
.newsletter-btn { 
  border-radius: 0.75rem; 
  padding: 0.75rem 1rem; 
  background: #DC2626; 
  color: #ffffff; 
  font-weight: 600; 
  font-size: 0.875rem;
  border: 1px solid rgba(255,255,255,0.18); 
  transition: transform .2s ease, filter .2s ease; 
  cursor: pointer;
}
.newsletter-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }

@media (min-width: 640px) {
  .newsletter-input { 
    padding: 0.65rem 0.9rem; 
    font-size: 1rem;
  }
  .newsletter-btn { 
    padding: 0.65rem 0.95rem; 
    font-size: 1rem;
  }
}
.chip { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.6rem; border-radius: 9999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #e5e7eb; transition: background .2s ease; text-decoration: none; }
.chip:hover { background: rgba(255,255,255,0.16); color: #ffffff; }


/* Enhanced card styles for About section */
.gy-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    will-change: transform, box-shadow;
}
.gy-card:hover { /* hover disabled */ }
.gy-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0.05) 30%, rgba(255,255,255,0.2) 70%, rgba(255,255,255,0.05));
    mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    padding: 1px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
}
.gy-card:hover::before { opacity: 1; }



.gy-icon {
    height: 3.5rem;
    width: 3.5rem;
    display: grid;
    place-items: center;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 10px 20px rgba(220,38,38,0.35);
}

.gy-aurora {
    position: relative;
    overflow: hidden;
}
.gy-aurora::after {
    content: '';
    position: absolute;
    inset: -20%;
    border-radius: 50%;
    background:
        radial-gradient(40% 40% at 30% 30%, var(--aurora-a, rgba(30, 64, 175, 0.45)), transparent 60%),
        radial-gradient(45% 45% at 70% 60%, var(--aurora-b, rgba(16, 185, 129, 0.35)), transparent 65%),
        radial-gradient(50% 50% at 60% 20%, rgba(11, 20, 38, 0.30), transparent 70%);
    filter: blur(24px);
    transform: translate3d(0,0,0) rotate(0deg) scale(1.2);
    animation: gy-aurora-move 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gy-aurora-move {
    0% { transform: translate(-5%, -5%) rotate(0deg) scale(1.1); }
    25% { transform: translate(6%, -8%) rotate(20deg) scale(1.15); }
    50% { transform: translate(10%, 6%) rotate(45deg) scale(1.08); }
    75% { transform: translate(-8%, 8%) rotate(70deg) scale(1.18); }
    100% { transform: translate(-5%, -5%) rotate(90deg) scale(1.1); }
}

/* Glowing shadow card (scoped, no global body styles) */
.gy-glow-card {
    position: relative;
    overflow: hidden;
    --card-color: rgba(11, 20, 38, 0.85);
    --text-color: #e5e7eb;
    --border-width: 2px;
    --bg-size: 1;
    --hue: 0;
    --hue-speed: 1;
    --rotate: 0;
    --animation-speed: 6s;
    --interaction-speed: 0.4s;
    --glow-scale: 1.6;
    --scale-factor: 1;
    --glow-blur: 6;
    --glow-opacity: 0.45;
    --glow-radius: 80;
    --glow-rotate-unit: 1deg;
}
.gy-glow-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background:
        radial-gradient(30% 30% at 35% 35%, rgba(23, 78, 226, 0.55), transparent 60%),
        radial-gradient(35% 35% at 70% 60%, rgba(220, 38, 38, 0.45), transparent 65%),
        radial-gradient(45% 45% at 60% 20%, rgba(11, 20, 38, 0.35), transparent 70%);
    filter: blur(14px);
    animation: gy-hue var(--animation-speed) linear infinite;
    pointer-events: none;
    z-index: 0;
}
.gy-glow-card > * { position: relative; z-index: 1; }
.gy-glow-card .gy-glow { position: absolute; width: 22%; height: 22%; left: 10%; top: 10%; animation: gy-rotate var(--animation-speed) linear infinite; transform: rotateZ(calc(var(--rotate) * var(--glow-rotate-unit))); transform-origin: center; border-radius: calc(var(--glow-radius) * 1px); z-index: 0; }
.gy-glow-card .gy-glow::after { content: ''; position: relative; display: block; width: 130%; height: 130%; left: -15%; top: -15%; filter: blur(calc(var(--glow-blur) * 10px)); background: linear-gradient(135deg, rgba(30, 64, 175, 0.6), rgba(16, 185, 129, 0.5)); border-radius: inherit; transform: scaleY(calc(var(--glow-scale) * var(--scale-factor) / 1.1)) scaleX(calc(var(--glow-scale) * var(--scale-factor) * 1.2)); opacity: var(--glow-opacity); }
.gy-glow-card:hover { /* hover disabled */ }

@keyframes gy-rotate { from { --rotate: -70; } to { --rotate: calc(360 - 70); } }
@keyframes gy-hue { 0% { --hue: 0; } 100% { --hue: 360; } }

.gy-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.gy-badge {
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

/* Emoji Animation */
@keyframes emoji-float {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.9;
        transform: translateY(-30px) scale(1.1) rotate(5deg);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-60px) scale(1.3) rotate(-3deg);
    }
    75% {
        opacity: 0.4;
        transform: translateY(-90px) scale(1.1) rotate(2deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-120px) scale(0.6) rotate(-1deg);
    }
}

@keyframes emoji-float-2 {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.8;
        transform: translateY(-40px) scale(1.2) rotate(-4deg);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-70px) scale(1.4) rotate(6deg);
    }
    75% {
        opacity: 0.3;
        transform: translateY(-100px) scale(1.0) rotate(-2deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-130px) scale(0.5) rotate(3deg);
    }
}

@keyframes emoji-float-3 {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.85;
        transform: translateY(-35px) scale(1.15) rotate(3deg);
    }
    50% {
        opacity: 0.65;
        transform: translateY(-65px) scale(1.25) rotate(-5deg);
    }
    75% {
        opacity: 0.35;
        transform: translateY(-95px) scale(1.05) rotate(4deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-125px) scale(0.7) rotate(-2deg);
    }
}

.animate-emoji-float {
    animation: emoji-float 3s ease-out forwards;
}

.animate-emoji-float:nth-child(2n) {
    animation: emoji-float-2 3.2s ease-out forwards;
}

.animate-emoji-float:nth-child(3n) {
    animation: emoji-float-3 2.8s ease-out forwards;
}

/* Terminal Component Styles */
.card {
  padding: 0.75rem;
  overflow: hidden;
  border: 1px solid #c5c5c5;
  border-radius: 12px;
  background-color: #d9d9d92f;
  backdrop-filter: blur(8px);
  min-width: 280px;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 640px) {
  .card {
    padding: 1rem;
    min-width: 344px;
  }
}
.wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 10;
  border: 0.5px solid #525252;
  border-radius: 8px;
  overflow: hidden;
}
.terminal {
  display: flex;
  flex-direction: column;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}
.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  min-height: 36px;
  padding-inline: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #202425;
}

@media (min-width: 640px) {
  .head {
    min-height: 40px;
    padding-inline: 12px;
  }
}
.title {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 2.5rem;
  user-select: none;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #8e8e8e;
}
.title > svg {
  height: 18px;
  width: 18px;
  margin-top: 2px;
  color: #006adc;
}
.copy_toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border: 0.65px solid #c1c2c5;
  margin-left: auto;
  border-radius: 6px;
  background-color: #202425;
  color: #8e8e8e;
  cursor: pointer;
}
.copy_toggle > svg {
  width: 20px;
  height: 20px;
}
.copy_toggle:active > svg > path,
.copy_toggle:focus-within > svg > path {
  animation: clipboard-check 500ms linear forwards;
}
.body {
  display: flex;
  flex-direction: column;
  position: relative;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  overflow-x: auto;
  padding: 0.75rem;
  line-height: 1.4;
  color: white;
  background-color: black;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .body {
    padding: 1rem;
    line-height: 19px;
  }
}
.pre {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-wrap: nowrap;
  white-space: pre;
  background-color: transparent;
  overflow: hidden;
  box-sizing: border-box;
  font-size: 14px;
}

@media (min-width: 640px) {
  .pre {
    font-size: 16px;
  }
}
.pre code:nth-child(1) {
  color: #575757;
}
.pre code:nth-child(2) {
  color: #e34ba9;
}
.cmd {
  height: 19px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.cmd::before {
  content: attr(data-cmd);
  position: relative;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  animation: inputs 8s steps(22) infinite;
}
.cmd::after {
  content: "";
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  background-color: transparent;
  border-right: 0.15em solid #e34ba9;
  animation: cursor 0.5s step-end infinite alternate, blinking 0.5s infinite;
}

@keyframes blinking {
  20%,
  80% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0);
  }
}
@keyframes cursor {
  50% {
    border-right-color: transparent;
  }
}
@keyframes inputs {
  0%,
  100% {
    width: 0;
  }
  10%,
  90% {
    width: 80px;
  }
  30%,
  70% {
    width: 300px;
    max-width: max-content;
  }
}

/* Sıralı terminal animasyonları */
@keyframes terminal-line-1 {
  0% { width: 0; }
  15% { width: 100%; }
  85% { width: 100%; }
  100% { width: 100%; }
}

@keyframes terminal-line-2 {
  0%, 15% { width: 0; }
  30% { width: 100%; }
  85% { width: 100%; }
  100% { width: 100%; }
}

@keyframes terminal-line-3 {
  0%, 30% { width: 0; }
  45% { width: 100%; }
  85% { width: 100%; }
  100% { width: 100%; }
}

@keyframes terminal-line-4 {
  0%, 45% { width: 0; }
  60% { width: 100%; }
  85% { width: 100%; }
  100% { width: 100%; }
}

@keyframes terminal-line-5 {
  0%, 60% { width: 0; }
  75% { width: 100%; }
  85% { width: 100%; }
  100% { width: 100%; }
}

@keyframes terminal-line-6 {
  0%, 75% { width: 0; }
  90% { width: 100%; }
  100% { width: 100%; }
}

@keyframes terminal-line-7 {
  0%, 90% { width: 0; }
  100% { width: 100%; }
}

.cmd-line-1::before { animation: terminal-line-1 8s infinite; }
.cmd-line-2::before { animation: terminal-line-2 8s infinite; }
.cmd-line-3::before { animation: terminal-line-3 8s infinite; }
.cmd-line-4::before { animation: terminal-line-4 8s infinite; }
.cmd-line-5::before { animation: terminal-line-5 8s infinite; }
.cmd-line-6::before { animation: terminal-line-6 8s infinite; }
.cmd-line-7::before { animation: terminal-line-7 8s infinite; }

/* Terminal Component Clean Styles */
.terminal-container {
  font-size: 12px;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .terminal-container {
    font-size: 14px;
    line-height: 1.6;
  }
}

.terminal-prompt {
  color: #575757;
}

.terminal-command {
  color: #e34ba9;
}

.terminal-output {
  color: #4ade80;
}

.terminal-white-text {
  color: white;
}

.terminal-line {
  margin-bottom: 0.25rem;
}

.terminal-line-last {
  margin-bottom: 0;
}

.terminal-indent {
  margin-left: 1rem;
}

/* Enhanced Ticker Styles */
.ticker-container {
  gap: 1rem;
}

.ticker-container-lg {
  gap: 2rem;
}

.ticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
  border-width: 1px;
}

.ticker-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  animation: pulse 2s infinite;
}

.ticker-text {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.ticker-text-lg {
  font-size: 1rem;
}

/* Ticker Color Themes */
.ticker-blue {
  background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
  border-color: rgba(96, 165, 250, 0.3);
}

.ticker-blue .ticker-dot {
  background-color: #60a5fa;
}

.ticker-blue .ticker-text {
  color: #dbeafe;
}

.ticker-purple {
  background: linear-gradient(to right, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
  border-color: rgba(168, 85, 247, 0.3);
}

.ticker-purple .ticker-dot {
  background-color: #a855f7;
}

.ticker-purple .ticker-text {
  color: #e9d5ff;
}

.ticker-green {
  background: linear-gradient(to right, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2));
  border-color: rgba(52, 211, 153, 0.3);
}

.ticker-green .ticker-dot {
  background-color: #34d399;
}

.ticker-green .ticker-text {
  color: #dcfce7;
}

.ticker-orange {
  background: linear-gradient(to right, rgba(249, 115, 22, 0.2), rgba(239, 68, 68, 0.2));
  border-color: rgba(251, 146, 60, 0.3);
}

.ticker-orange .ticker-dot {
  background-color: #fb923c;
}

.ticker-orange .ticker-text {
  color: #fed7aa;
}

.ticker-indigo {
  background: linear-gradient(to right, rgba(99, 102, 241, 0.2), rgba(59, 130, 246, 0.2));
  border-color: rgba(129, 140, 248, 0.3);
}

.ticker-indigo .ticker-dot {
  background-color: #818cf8;
}

.ticker-indigo .ticker-text {
  color: #e0e7ff;
}

.ticker-teal {
  background: linear-gradient(to right, rgba(20, 184, 166, 0.2), rgba(6, 182, 212, 0.2));
  border-color: rgba(45, 212, 191, 0.3);
}

.ticker-teal .ticker-dot {
  background-color: #2dd4bf;
}

.ticker-teal .ticker-text {
  color: #ccfbf1;
}

.ticker-yellow {
  background: linear-gradient(to right, rgba(234, 179, 8, 0.2), rgba(249, 115, 22, 0.2));
  border-color: rgba(251, 191, 36, 0.3);
}

.ticker-yellow .ticker-dot {
  background-color: #fbbf24;
}

.ticker-yellow .ticker-text {
  color: #fef3c7;
}

.ticker-pink {
  background: linear-gradient(to right, rgba(236, 72, 153, 0.2), rgba(244, 63, 94, 0.2));
  border-color: rgba(244, 114, 182, 0.3);
}

.ticker-pink .ticker-dot {
  background-color: #f472b6;
}

.ticker-pink .ticker-text {
  color: #fce7f3;
}
@keyframes clipboard-check {
  100% {
    color: #fff;
    d: path(
      "M 9 5 H 7 a 2 2 0 0 0 -2 2 v 12 a 2 2 0 0 0 2 2 h 10 a 2 2 0 0 0 2 -2 V 7 a 2 2 0 0 0 -2 -2 h -2 M 9 5 a 2 2 0 0 0 2 2 h 2 a 2 2 0 0 0 2 -2 M 9 5 a 2 2 0 0 1 2 -2 h 2 a 2 2 0 0 1 2 2 m -6 9 l 2 2 l 4 -4"
    );
  }
}



