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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

body {
  background: #0a0a0a;
  color: #bebebe;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  padding: 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  color: #ff83e6;
  border-bottom: 1px solid #d65ec0;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 200;
  letter-spacing: 1.2px;
  text-shadow: 0 0 20px #ff83e680;
}

h2 {
  color: #ff93f7;
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 200;
  letter-spacing: 1.1px;
  position: relative;
}

h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #d65ec033;
  box-shadow: -8px 0 16px 4px #ff83e680;
}

h3 {
  color: #ffcaff;
  font-weight: 200;
}

section {
  background: rgba(13, 13, 13, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid #ff83e62d;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(255, 131, 230, 0.15);
}

.info-box {
  background: rgba(8, 8, 8, 0.8);
  border-left: 5px solid #b43ea0;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.info-box h3 {
  color: #ff83e6;
  margin-bottom: 0.5rem;
}

ul,
ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

code {
  background: rgba(125, 34, 108, 0.3);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: 'Victor Mono', monospace;
  font-weight: 800;
  color: #ffcaff;
  border: 1px solid #7d226c;
}

.script-container {
  margin-top: 2rem;
}

.script-header {
  background: #7d226c;
  color: #ffcbff;
  padding: 1rem 1.5rem;
  border-radius: 4px 4px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.script-header h3 {
  margin: 0;
  color: #ffcbff;
}

.copy-btn {
  background: #b43ea0;
  color: #ffebff;
  border: 1px solid #ff83e6;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.copy-btn:hover {
  background: #d65ec0;
  box-shadow: 0 0 15px #ff83e680;
}

.copy-btn:active {
  background: #983d86;
}

.script-box {
  background: #060606;
  border: 2px solid #7d226c;
  border-top: none;
  border-radius: 0 0 4px 4px;
  padding: 1.5rem;
  overflow-x: auto;
  max-height: 600px;
  overflow-y: auto;
}

.script-box pre {
  margin: 0;
  font-family: 'Victor Mono', monospace;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #bebebe;
}

.line-number {
  color: #983d86;
  user-select: none;
  padding-right: 1rem;
  border-right: 1px solid #7d226c;
  margin-right: 1rem;
  display: inline-block;
  text-align: right;
  min-width: 3rem;
}

a {
  color: #ff83e6;
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  color: #ff93f7;
  text-shadow: 0 0 10px #ff83e680;
  text-decoration: underline;
}

.toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: #b43ea0;
  color: #ffebff;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  border: 1px solid #ff83e6;
  box-shadow: 0 4px 20px rgba(255, 131, 230, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
}

.quick-install {
  background: linear-gradient(135deg, #7d226c 0%, #b43ea0 100%);
  border: 2px solid #ff83e6;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 4px 25px rgba(255, 131, 230, 0.3);
}

.quick-install h3 {
  color: #ffebff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-shadow: 0 0 15px #ff83e680;
}

.quick-install p {
  color: #ffcaff;
  margin-bottom: 1.5rem;
}

.warning-note {
  margin: 1rem auto 0;
  max-width: 760px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(8, 8, 8, 0.85);
  border: 1px solid #ff83e6;
  border-left: 4px solid #ffb347;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: #ffe4fb;
  box-shadow: 0 4px 15px rgba(255, 131, 230, 0.2);
}

.warning-icon {
  background: #ffb347;
  color: #0a0a0a;
  border-radius: 50%;
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Victor Mono', monospace;
  flex-shrink: 0;
}

.install-command {
  background: rgba(6, 6, 6, 0.8);
  border: 1px solid #ff83e6;
  border-radius: 6px;
  padding: 1rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.install-command code {
  display: block;
  background: transparent;
  color: #ff93f7;
  font-size: 0.95rem;
  padding-right: 2.5rem;
  word-break: break-all;
  border: none;
}

.install-command button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: transparent;
  color: #ff83e6;
  border: 1px solid #ff83e6;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.install-command button:hover {
  background: #b43ea0;
  color: #ffebff;
  box-shadow: 0 0 10px #ff83e680;
}

.install-command button:active {
  background: #983d86;
}

.video-container {
  margin: 2rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 25px rgba(255, 131, 230, 0.3);
  border: 2px solid #d65ec0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.toggle-script {
  background: #7d226c;
  color: #ffcbff;
  border: 1px solid #ff83e6;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
  white-space: nowrap;
}

.toggle-script:hover {
  background: #b43ea0;
  box-shadow: 0 0 15px #ff83e680;
}

.toggle-script:active {
  background: #983d86;
}

.script-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}

.script-content.show {
  max-height: 5000px;
  opacity: 1;
}
