/** ////////////////////////////////////////////
//  BOILERPLATES
///////////////////////////////////////////////*/
* {
  box-sizing: border-box;
}
body {
  background: #0f0f10;
  color: #eee;
  padding: 1rem;
  padding-top: 50px;
}
.box {
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 100px;
}
.page {
  display: flex;
}
.note {
  color: coral;
}
header.navbar {
  position: fixed;
  top: 0;
  width: 930px;
  z-index: 1000;
  color: #fff;
  padding: 10px 20px;
}

header .brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: #0d6efd;
  text-decoration: none;
}
footer {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  background-color: #0f0f10;
}
footer p {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #0d6efd;
  padding: 5px 0;
}
h1 {
  color: #0d6efd;
}
header .tagline {
  font-size: 0.9rem;
  color: #ccc;
}

header .btn {
  font-size: 0.9rem;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: end;
  padding: 4px;
  width: 900px;
  margin-top: 50px;
}
textarea {
  text-align: left;
  resize: none;
  height: 250px;
  width: 100%;
}
p {
  text-align: right;
  width: 100%;
}
form,
div {
  display: flex;
  flex-direction: column;
  align-items: end;
  text-align: right;
}
div > * {
  width: 100%;
}
div > ul {
  width: auto;
}
div > button {
  width: auto;
}
.home_header {
  text-align: center;
}
div > h1,
div > h2,
div > h3,
div > h4,
div > h5 {
  text-align: right;
}
.w-full,
form > * {
  width: 100%;
}
.btn-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin: 3px;
}
.btn-list > * {
  margin: 5px;
}

.btn-list > *:last-child {
  margin-right: 0;
}
.btn-list button {
  min-width: 100px;
}
@media (max-width: 500px) {
  .btn-list {
    flex-direction: column;
  }
  .btn-list > * {
    width: 100%;
    margin-top: 3px;
  }
}

.code,
.code:focus {
  background-color: rgb(107, 243, 95);
  border: 1px white;
  color: black;
  height: 60px;
  width: 100%;
  resize: none;
}

/** ////////////////////////////////////////////
//  MENU
///////////////////////////////////////////////*/
.menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: center;
  border-bottom: 1px solid #1b3b69;
}
.menu nav {
  display: flex;
  width: 100%;
}
.menu nav .active {
  background-color: #1b3b69;
}
.menu nav a {
  text-decoration: none;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 3px 6px;
  transition: all 0.2s ease-in-out;
  margin: 0 2px;
}
.menu nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}
.icon {
  width: 30px;
  height: 30px;
  margin: 0 10px;
}

.inline-a {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  justify-content: right;
  align-items: center;
  width: auto;
  text-align: right;
}

@media (max-width: 630px) {
  .menu nav {
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .menu nav a {
    margin: 5px 2px;
  }
}

/** ////////////////////////////////////////////
//  HOME
///////////////////////////////////////////////*/

.home-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0px;
}

.home-intro p,
.home-intro h4 {
  width: 500px;
  text-align: center;
}
.search {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 1px auto;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.search > input {
  width: calc(100% - 45px);
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  color: #000;
}
.search > input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}
.search > .go,
.search > .paste {
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.search .go {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  background: rgb(4, 155, 4);
  margin-left: 10px;
}
.search > .go:hover {
  background: rgb(6, 116, 6);
  transform: scale(1.05);
}
.search .paste {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  background: rgb(4, 64, 155);
  margin-right: 10px;
}
.search > .paste:hover {
  background: rgb(6, 71, 155);
  transform: scale(1.05);
}
.search > .go svg {
  width: 20px;
  height: 20px;
}

/** ////////////////////////////////////////////
//  SHAREA
///////////////////////////////////////////////*/
.page h5 {
  color: #fff;
}

#progressContainer {
  display: none;
  margin-top: 15px;
}

progress {
  width: 100%;
  height: 5px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}

progress::-webkit-progress-bar {
  background-color: #1e293b;
  border-radius: 12px;
}

progress::-webkit-progress-value {
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  border-radius: 12px;
  transition: all 0.3s ease;
}

progress.success::-webkit-progress-value {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 0 15px #22c55e;
}

#progressText {
  margin-top: 5px;
  font-size: 0.9rem;
  color: #94a3b8;
}

#result {
  display: none;
}

/** ////////////////////////////////////////////
//  ABOUT
///////////////////////////////////////////////*/
#input[style*="display: none"] {
  display: none !important;
}

.about-container {
  text-align: left;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

.about-container h2 {
  margin-top: 20px;
  color: #fff;
}

.about-container p {
  color: #ddd;
}

.about-container ul {
  color: #ccc;
  list-style: disc;
  margin-left: 20px;
}

/** ////////////////////////////////////////////
//  HELP
///////////////////////////////////////////////*/
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #111;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  z-index: 1000;
}

.help-box {
  max-width: 900px;
  margin: 90px auto 40px;
  background: rgba(255, 255, 255, 0.02);
  padding: 28px;
  border-radius: 12px;
  color: #eaeaea;
}

.help-box h1 {
  margin-bottom: 8px;
}

.help-box h3 {
  margin-top: 20px;
  color: #ddd;
}

.help-box p,
.help-box li {
  color: #cfcfcf;
}

.kbd {
  background: #222;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: monospace;
}
.muted {
  color: #9aa0a6;
  font-size: 0.95rem;
}
#output {
  text-align: left;
}
.valid-input {
  background-color: #2ecc71;
  border: 1px solid #27ae60;
  color: #fff;
}
.invalid-input {
  background-color: #e74c3c;
  border: 1px solid #c0392b;
  color: #fff;
}

/** ////////////////////////////////////////////
//  PASSWORD
///////////////////////////////////////////////*/
#result {
  display: none;
}

.pw-rules {
  display: flex;
  flex-direction: row;
  list-style: none;
}

.pw-rules li {
  margin: 0 3px;
}

.pw-rules li.invalid {
  color: #c0392b;
}

.pw-rules li.valid {
  color: #27ae60;
}

progress {
  width: 100%;
}

/** ////////////////////////////////////////////
//  PLANS
///////////////////////////////////////////////*/
.plan-card {
  border: 2px solid #e9ecef;
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  background: linear-gradient(145deg, #f8f9fa, #ffffff);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #00ff88;
}
.plan-card.popular {
  border-color: #00ff88;
  background: linear-gradient(145deg, #f0fff4, #ffffff);
  transform: scale(1.05);
}
.plan-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00ff88;
  margin: 1rem 0;
}
.plan-duration {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.feature-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.feature-icon {
  color: #00ff88;
}
.buy-btn {
  background: linear-gradient(45deg, #00ff88, #00cc6a);
  border: none;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  width: 100%;
}
.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  margin-bottom: 10px;
  align-items: center;
}
.row .col-md-4 > div{
  height: 270px;
  min-height: 270px;
}