:root {
  --bg: #ffffff;
  --text: #1f2937;
  --gray: #6b7280;
  --primary: #2563eb;
  --blueprimary: #0000FF; /* Or another valid hex */
  --light: #f9fafb;
  --card-bg: #ffffff;
  --card-text: #1f2937;
  --hover-scale: 1.05;
}

[data-theme="dark"] {
  --bg: #0f172a;
  --text: #f8fafc;
  --gray: #9ca3af;
  --primary: #3b82f6;
    --blueprimary: #3b82f6;
  --light: #1e293b;
  --card-bg: #1e293b;
  --card-text: #f1f5f9;
  --hover-scale: 1.02;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Arial', sans-serif;
  background: var(--bg);
  color: var(--text);
  animation: gradientBG 10s ease infinite;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  line-height: 1.7;
  transition: background 0.3s, color 0.3s;
  margin: 0;
  padding: 0;
}
.container {
  background: var(--card-bg);
  color: var(--card-text);
  max-width: 1000px;
  text-align: center;
   padding: 1rem;
  
   
}
.container h1 {
  font-size: 24px;
  
}
h2 {
  font-size: 24px;
  margin: 20px 0;
  color: var(--primary);
}



.menu-button {
      background-color: black;
      color: white;
      padding: 12px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .button-section {
      max-width: 500px;
      margin: 0 auto 24px auto;
    }
    .main-button {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: white;
      font-weight: bold;
      padding: 12px;
     box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      margin-bottom: 16px;
      text-decoration: none;
    }
 .telegram {
      background: linear-gradient(to right, #2563eb, #1e40af);
    }
   .main-button img {
      width: 24px;
      height: 24px;
    }




.hero {
      background: var(--light);
      line-height: 1.7;
      border-radius: var(--radius);
      }
.blog {
   max-width: 1000px;
      margin: 6px;
      background: var(--light);
      padding: 1.3rem;
      margin-top: 0rem;
      border-radius: var(--radius);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
     line-height: 1.7;
      font-size: 1rem;
      color: var(--text);
   }
.blog-article {
      line-height: 1.7;
      font-size: 1rem;
      color: var(--text);
    }
.blog ul {
	margin: 20px; 
      line-height: 1.8;
    }
 .highlight {
      background: var(--light);
      padding: 12px;
      border-left: 5px solid green;
      margin: 20px 0;
        }
a {
  text-decoration: none;
}
@keyframes gradientBG {
  0% { background-position: 0% 50% }
  50% { background-position: 100% 50% }
  100% { background-position: 0% 50% }
}
.input-row {
  display: flex;
    margin-bottom: 20px;
  align-items: stretch;
}
.input-wrapper {
  position: relative;
  flex: 1;
}

input[type="url"] {
  width: 100%;
  padding: 14px 75px 14px 14px;
  font-size: 16px;
  background-color: var(--light);
  color: var(--text);
  border: 6px solid #800080;
  box-sizing: border-box;
  height: 60px;
  
}

.paste-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background: var(--light);
  color: var(--blueprimary);
  border: none;
  padding: 5px 6px;
  font-size: 19px;
  cursor: pointer;
  height: 39px;
  display: flex;
  align-items: center;
  border-radius: 4px;
}
.clear-btn {
  background: var(--light);
  color: var(--blueprimary);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  border: none;
  padding: 5px 6px;
  font-size: 19px;
  cursor: pointer;
  height: 39px;
  display: flex;
  align-items: center;
  border-radius: 4px;
}

.input-wrapper {
  position: relative;
  flex-grow: 1;
}

.input-wrapper input {
  width: 100%;
  padding-right: 80px; /* Make space for the button */
}

.input-wrapper button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}



.icon-download-btn {
  background-color: var(--primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 56px;
  transition: transform 0.2s ease;
}

.icon-download-btn:hover {
  transform: scale(var(--hover-scale));
}

.icon-download-btn img {
  width: 60px;
  height: 60px;
}
.steps {
  counter-reset: step-counter;
}

.step {
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
  color: var(--text);
}

.step:before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary);
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature {
  background-color: var(--card-bg);
  color: var(--card-text);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease;
}
.feature:hover {
  transform: scale(var(--hover-scale));
}

.platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.platform {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: var(--light);
  color: var(--text);
  border-radius: 5px;
  transition: transform 0.3s ease;
}
.platform:hover {
  transform: scale(var(--hover-scale));
}

.platform img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.faq-item {
  margin-bottom: 15px;
  color: var(--text);
}

.faq-question {
  font-weight: bold;
  color: var(--primary);
  cursor: pointer;
}
.formats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }
        .format {
            display: flex;
            align-items: center;
            padding: 10px;
            background-color: #f5f5f5;
            border-radius: 5px;
        }
        .format img {
            width: 30px;
            height: 30px;
            margin-right: 10px;
        }


@media (min-width: 760px) {
  .input-row {
    flex-direction: row;
  }

  .icon-download-btn {
    min-width: 56px;
    padding: 0;
  }
}

@media (min-width: 769px) {
  .container {
    margin: 6%;
    padding: 2rem 1.5rem; /* Top/bottom and sides using rem */
  }
.blog {
   margin: 20px;
     padding: 3rem;
      }
      h2 {
  font-size: 34px;
  }

}





