/* ===== MENU BUTTON (FINAL POLISH) ===== */
.menu-btn {
  width: 100%;
  padding: 12px;
  margin-top: 10px;

  background: #1a2238;
  color: #e6ecff;

  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;

  font-size: 14px;
  font-weight: 500;

  display: flex;
  align-items: center;
  gap: 10px;
    justify-content: center; /* THIS centers it */
  text-align: center;

  box-shadow: 0 4px 12px rgba(0,0,0,0.25);

  cursor: pointer;
  transition: all 0.2s ease;
}

.menu-btn:hover {
  background: #25306a;
  color: #ffffff;
  transform: translateY(-2px);
}

.menu-btn:active {
  transform: scale(0.97);
}
.menu-btn.pink {
  border-left: 3px solid #4fc3f7;
  padding-left: 10px;
}

/* Hover effect */
.menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 75, 110, 0.4);
}

/* Active click */
.menu-btn:active {
  transform: scale(0.97);
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #050914, #0a0f1c);
  color: #fff;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ===== HEADER ===== */
.header {
  background: linear-gradient(90deg, #b43c7b, #5d4cb7);
  padding: 15px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav h2 {
  font-size: 20px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
  font-size: 14px;
}

/* ===== SECTION ===== */
.section {
  padding: 70px 0;
}

/* ===== HERO ===== */
.hero-box {
  background: linear-gradient(135deg, #1a2238, #2b355a);
  padding: 40px 25px;
  border-radius: 18px;
  text-align: center;
  margin-bottom: 40px;
}

.hero-box h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

.hero-box p {
  color: #a0a8c0;
}

/* ===== CONTENT ===== */
.content-box {
  background: #12182b;
  padding: 30px;
  border-radius: 16px;
  line-height: 1.8;
}

.content-box h2 {
  margin-top: 25px;
  margin-bottom: 10px;
}

.content-box ul {
  margin-top: 10px;
  padding-left: 20px;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

@media(min-width:768px){
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== CARD ===== */
.card {
  background: #1a2238;
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: #070d18;
  padding: 40px 20px;
  text-align: center;
  margin-top: 60px;
}

.footer-container {
  max-width: 900px;
  margin: auto;
}

.footer-brand h2 {
  margin-bottom: 5px;
}

.footer-brand p {
  color: #888;
  margin-bottom: 20px;
}

/* LINKS FIX */
.footer-links {
  margin-top: 15px;
}

.footer-links a {
  color: #aab3d6;
  text-decoration: none;
  margin: 0 8px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

/* SOCIAL */
.footer-social span {
  margin: 0 8px;
  font-size: 18px;
}

/* COPYRIGHT */
.footer-bottom {
  margin-top: 15px;
  font-size: 13px;
  color: #777;
}

/* HEADER */
.app-header {
  background: #0b1220;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.app-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-logo {
  color: #fff;
  font-size: 16px;
}

/* BUTTONS */
.app-actions {
  display: flex;
  gap: 10px;
}

.btn {
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
}

.btn-secondary {
  background: #1c2541;
  color: #fff;
}

.btn-primary {
  background: linear-gradient(90deg, #ff4d6d, #ff6a88);
  color: #fff;
}

/* SIDEBAR */
.sidebar {
  background: #12182b;
  padding: 15px;
  border-radius: 15px;
}

/* SEARCH */
.search-box {
  background: #1a2238;
  padding: 12px;
  border-radius: 10px;
  margin: 15px 0;
}

.search-box input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  margin-bottom: 8px;
}

.search-box button {
  width: 100%;
  padding: 10px;
  background: #ff3b3b;
  color: white;
  border: none;
  border-radius: 8px;
}

/* MENU */
.menu button {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: none;
  border-radius: 8px;
  background: #1a2238;
  color: white;
  cursor: pointer;
}

/* PRICING CARDS UPGRADE */
.card h2 {
  margin-bottom: 10px;
}

.card p {
  font-size: 18px;
  margin-bottom: 15px;
}

.card ul {
  text-align: left;
  margin-bottom: 20px;
}

/* Highlight Super Ad */
.card:nth-child(1) {
  border: 2px solid #ff4d6d;
}

/* Highlight VIP */
.card:nth-child(2) {
  border: 2px solid #4fc3f7;
}

/* Highlight Latest */
.card:nth-child(3) {
  border: 2px solid #9c27b0;
}


.hero-box h1 {
  font-size: 28px;
  margin-bottom: 12px;
}

.hero-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

/* RULE CARDS LOOK BETTER */
.card h3 {
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: #cfd6ff;
}