body {
	margin: 0;
	background-color: #131313;
	font-family: Arial, Helvetica, sans-serif;
	-ms-user-select: none;
	user-select: none;
	  scroll-behavior: smooth;
}

.static-text {
	display: inline;
}

.typewriter {
	display: inline;
	border-right: 1px solid #858585;
	white-space: nowrap;
	overflow: hidden;
	vertical-align: bottom;
	border-right: 2px solid #858585;
	animation: blink-caret 1s step-start infinite;
}


.button-18 {
  align-items: center;
  background-color: #1d1d1d;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: -apple-system, system-ui, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  max-width: 480px;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}

.button-18:hover,
.button-18:focus { 
  background-color: #707070e8;
  color: #ffffff;
}

.button-18:active {
  background: #a04dff2c;
  color: rgb(255, 255, 255, .7);
}

.button-18:disabled { 
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}

@keyframes blink-caret {

	0%,
	50% {
		border-color: #858585;
	}

	50.01%,
	100% {
		border-color: transparent;
	}
}


hr {
    border: 0;
    height: 2px;
	border-radius: 40px;
    background: #333;
    background-image: linear-gradient(to right, #383838, #1d1d1d, #4d4d4d);
	width:95%
}


nav#navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(80deg, #2b2b2b 0%, #1a1a1a 50%);
	padding: 0 10px;
	height: 60px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

.navLogo {
	height: 40px;
	transition: transform 0.3s ease;
}

.navLogo:hover {
	transform: scale(1.1);
}

.navLogo.spin {
	animation: powerUpSpin 0.6s ease-out;
}

@keyframes powerUpSpin {
	0% {
		transform: scale(1.1) rotate(0deg);
	}

	20% {
		transform: scale(1.1) rotate(-20deg);
	}

	40% {
		transform: scale(1.1) rotate(10deg);
	}

	70% {
		transform: scale(1.1) rotate(330deg);
	}

	100% {
		transform: scale(1.1) rotate(360deg);
	}
}

ul#navLinks {
	list-style-type: none;
	display: flex;
	margin: 0;
	padding: 0;
}

ul#navLinks li {
	margin: 0 8px;
}

ul#navLinks li a {
	color: white;
	text-decoration: none;
	padding: 14px 16px;
	display: block;
	border-radius: 6px;
	transition: background-color 0.3s ease;
}

ul#navLinks li a:hover:not(.active) {
	background-color: #444;
}

.active {
	background: #793FFF;
	background: linear-gradient(80deg, rgba(121, 63, 255, 1) 0%, rgb(109, 47, 255) 50%);
	box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
}

.content {
	color: white;
	padding: 80px 20px 20px 20px;
	max-width: 900px;
	margin: auto;
	font-size: 1.1em;
	line-height: 1.6;
}

.menu-toggle {
	display: none;
	color: white;
	font-size: 28px;
	cursor: pointer;
	padding: 0 10px;
	right: 10px;
	left: auto;
	z-index: 200;
}

@media (max-width: 768px) {
	.menu-toggle {
		display: block;
		position: fixed;
		top: 15px;
		left: 10px;
		z-index: 200;
		right: 10px;
		left: auto;
		z-index: 200;
	}

	nav#navbar {
    	flex-direction: column;
		align-items: flex-start;
		height: auto;
		padding: 10px;
	}

	.navLogo {
		margin-bottom: 10px;
	}

	ul#navLinks {
		display: none;
		flex-direction: column;
		width: 100%;
	}

	ul#navLinks.show {
		display: flex;
	}

	ul#navLinks li {
		width: 100%;
	}

	ul#navLinks li a {
		text-align: left;
		width: 100%;
	}

	.content {
		padding-top: 140px;
	}
}


.button {
  background-color: #2c2c2c;
  border-radius: 60px;
  border: 1px solid #1a1a1a;
  color: #ffffff;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 48px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  transition: background-color 0.25s ease, transform 0.1s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

img[onclick^="CopyMe"] {
	cursor: pointer;
	transition: transform 0.2s ease;
	margin-left: 8px;
}

img[onclick^="CopyMe"]:hover {
	transform: scale(1.1);
}

.content h1 {
	font-size: 2.4em;
	margin-bottom: 0.2em;
}

.content h3 {
	color: #ccc;
	font-weight: 500;
	margin-top: 1.8em;
	margin-bottom: 0.4em;
}

.content code {
	display: inline-block;
	margin-top: 8px;
}


code {
  font-family: Consolas,"courier new";
  color: rgb(189, 189, 189);
  background-color: #0f0f0f;
  padding: 2px;
  font-size: 105%;
  border-radius: 10px;
  padding: 5px;
}

.button:hover {
  background-color: #1e1e1e;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.button:hover::before {
  opacity: 1;
}

.button:active {
  transform: translateY(2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


a {
    text-decoration: none;
    color:#9669ff
}

a:hover {
    color:#b799ff
}


.api-card {
	background-color: #1a1a1a;
	border-radius: 10px;
	padding: 20px;
	margin-top: 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	transition: transform 0.2s ease;
}


#topBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
  height: 60px;
  width: auto;
  	transition: transform 0.2s ease;
}

#topBtn:hover {
transform: scale(1.1);
}