* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: #0f172a;
  color: white;
  padding: 20px;
  line-height: 1.6;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1e293b;
  padding: 15px 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  position: sticky;
  top: 10px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #22c55e;
}
.logo a {
  color: inherit;
  text-decoration: none;
}

.logo a:hover {
  opacity: 0.9;
}
.main-nav a {
  color: #cbd5e1;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s;
}

.main-nav a:hover {
  color: #22c55e;
}
.platform-selection{
margin:20px 0;
}

.platform-selection label{
display:block;
margin-bottom:8px;
font-weight:600;
}

.platform-selection select{
width:100%;
padding:12px;
font-size:16px;
border-radius:8px;
}
/* CONTAINER */
.container {
  max-width: 800px;
  margin: auto;
}

/* HERO */
.hero {
  text-align: center;
  padding: 70px 30px;
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 16px;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 12px;
  color: #f1f5f9;
}

.hero p {
  font-size: 17px;
  color: #94a3b8;
}

.hero-buttons {
  margin-top: 25px;
}

.btn {
  display: inline-block;
  background: #22c55e;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: 0.2s;
}

.btn:hover {
  background: #16a34a;
  transform: scale(1.04);
}

/* STATS */
.stats-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.stat-card {
  background: #1e293b;
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #334155;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: #22c55e;
}

.stat-card h2 {
  font-size: 30px;
  color: #22c55e;
  margin-bottom: 6px;
}

.stat-card p {
  color: #94a3b8;
  font-size: 14px;
}

/* CARD */
.card {
  background: #1e293b;
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1px solid #334155;
}

.card h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #f1f5f9;
}

/* INPUTS */
input,
textarea {
  width: 100%;
  padding: 13px 16px;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 10px;
  font-size: 15px;
  color: white;
  margin-bottom: 12px;
  outline: none;
  transition: border 0.2s;
}

input:focus,
textarea:focus {
  border-color: #22c55e;
}

input::placeholder,
textarea::placeholder {
  color: #64748b;
}

/* SELECT */
select {
  width: 100%;
  padding: 13px 16px;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 10px;
  font-size: 15px;
  color: white;
  margin-bottom: 12px;
  outline: none;
  cursor: pointer;
  transition: border 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

select:focus {
  border-color: #22c55e;
}

select option {
  background: #1e293b;
  color: white;
}

/* BUTTONS */
button {
  padding: 13px 22px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
  transition: 0.2s;
  width: 100%;
  margin-bottom: 10px;
}

button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.format-btn {
  background: #22c55e;
  color: white;
}

.copy-btn {
  background: #3b82f6;
  color: white;
}

/* OUTPUT */
.output {
  background: #0f172a;
  padding: 18px;
  border-radius: 10px;
  min-height: 160px;
  white-space: pre-wrap;
  margin-top: 5px;
  border: 1px solid #334155;
  color: #e2e8f0;
  font-size: 15px;
  line-height: 1.7;
}

/* HOOK CARD */
.hook-card {
  background: #1e293b;
  padding: 14px 16px;
  margin-bottom: 10px;
  border-radius: 10px;
  border-left: 4px solid #22c55e;
  transition: 0.2s;
  color: #e2e8f0;
  font-size: 14px;
}

.hook-card:hover {
  transform: translateX(4px);
  background: #0f172a;
}

/* TOOLS GRID */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.tool-link {
  display: flex;
  text-decoration: none;
  pointer-events: auto;  /* ← add cheyyi */
  cursor: pointer;       /* ← add cheyyi */
}

.tool-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.tool-link:hover .tool-card {
  transform: translateY(-5px);
  border-color: #22c55e;
}

.tool-card:hover {
  transform: translateY(-5px);
  border-color: #22c55e;
}

.tool-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  min-height: 48px;
  display: flex;
  align-items: center;
  color: #f1f5f9;
  line-height: 1.4;
}

.tool-card p {
  margin: 0;
  line-height: 1.6;
  color: #9ca3af;
  font-size: 13px;
}
.seo-content{
max-width:900px;
margin:60px auto;
line-height:1.8;
padding:20px;
}

.seo-content h2{
margin-bottom:15px;
}

.seo-content p{
margin-bottom:20px;
}

.seo-content ul{
padding-left:20px;
}
/* Mobile */
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .header {
    flex-direction: column;
    gap: 12px;
  }

  .main-nav a {
    margin-left: 10px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 28px;
  }
}
.faq-section{
max-width:900px;
margin:60px auto;
padding:20px;
line-height:1.8;
}

.faq-item{
margin-bottom:25px;
}

.faq-item h3{
margin-bottom:8px;
}
/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  color: #64748b;
  font-size: 14px;
  margin-top: 20px;
  border-top: 1px solid #1e293b;
}

footer a {
  color: #22c55e;
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  text-decoration: underline;
}
