* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #cfd9ee;
    color: #0f172a;
}

/* ================= HEADER ================= */
.header {
    background: #ffffff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #1e293b;
    font-size: 14px;
}

/* ================= HERO ================= */
.hero {
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    background: #1e3a8a;
    color: white;
    max-width: 620px;
    padding: 15px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 40px;
}

.download-box {
    background: #eef2ff;
    max-width: 620px;
    margin: auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.download-box h2 {
    margin-bottom: 15px;
}

.download-box input,
.download-box select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #c7d2fe;
}

.download-box button {
    width: 100%;
    padding: 12px;
    background: #1e3a8a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.download-box button:hover {
    background: #1d4ed8;
}

.box-note {
    font-size: 12px;
    margin-top: 12px;
    color: #475569;
}

/* ================= PLATFORMS ================= */
.platforms {
    padding: 50px 20px;
    text-align: center;
}

.platforms h2 {
    margin-bottom: 25px;
    font-size: 22px;
}

.platform-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.platform-grid span {
    background: #e0f2fe;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
}

/* ================= FOOTER ================= */
.footer {
    background: #ffffff;
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: #475569;
}
/* ===== FORM ENHANCEMENTS ===== */

.download-box.animate {
    animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-box input:focus,
.download-box select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    transition: 0.3s;
}

#status {
    margin-top: 12px;
    font-size: 13px;
    color: #1e293b;
}
/* ===== PREMIUM FORM EFFECTS ===== */

.download-box {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    transform: scale(1);
}

/* Hover = slight zoom OUT (premium feel) */
.download-box:hover {
    transform: scale(0.97);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Page load animation */
.download-box.animate {
    animation: softIn 0.7s ease forwards;
}

@keyframes softIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Input + Select focus glow */
.download-box input,
.download-box select {
    transition: all 0.3s ease;
}

.download-box input:focus,
.download-box select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
    transform: scale(1.02);
}

/* Button animation */
.download-box button {
    transition: all 0.3s ease;
}

.download-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
}

.download-box button:active {
    transform: scale(0.97);
}
/* ===== PLATFORM COLOR SYSTEM ===== */

:root {
    --accent-color: #2563eb; /* default */
}

/* Home */
.platform-home {
    --accent-color: #2563eb;
}

/* YouTube */
.platform-youtube {
    --accent-color: #ff0000;
}

/* Facebook */
.platform-facebook {
    --accent-color: #1877f2;
}

/* Instagram */
.platform-instagram {
    --accent-color: #e1306c;
}

/* TikTok */
.platform-tiktok {
    --accent-color: #000000;
}

/* Pinterest */
.platform-pinterest {
    --accent-color: #bd081c;
}

/* Twitter / X */
.platform-twitter {
    --accent-color: #1da1f2;
}

/* Threads */
.platform-threads {
    --accent-color: #000000;
}

/* Snapchat */
.platform-snapchat {
    --accent-color: #fffc00;
}

/* LinkedIn */
.platform-linkedin {
    --accent-color: #0a66c2;
}

/* ===== APPLY COLOR TO FORM ===== */

.download-box input:focus,
.download-box select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.download-box button {
    background: var(--accent-color);
}

.download-box button:hover {
    background: color-mix(in srgb, var(--accent-color) 85%, black);
}
/* ===== PAGE TITLE PILL (PLATFORM COLOR) ===== */

/* ===== PAGE TITLE PILL – FIXED ===== */

.page-title {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 999px;
    background-color: var(--accent-color) !important;
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    box-shadow: 0 10px 35px color-mix(in srgb, var(--accent-color) 55%, transparent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-title:hover {
    transform: scale(0.96);
    box-shadow: 0 18px 45px color-mix(in srgb, var(--accent-color) 70%, transparent);
}
/* ===== PLATFORM BASED PAGE BACKGROUND ===== */

body {
    background:
        radial-gradient(
            circle at top center,
            color-mix(in srgb, var(--accent-color) 25%, transparent),
            transparent 65%
        ),
        #dbe3f3;
    transition: background 0.4s ease;
}

/* Extra soft glow for platform pages */
.platform-youtube,
.platform-facebook,
.platform-instagram,
.platform-tiktok,
.platform-pinterest,
.platform-twitter,
.platform-threads,
.platform-snapchat,
.platform-linkedin {
    background:
        radial-gradient(
            ellipse at center,
            color-mix(in srgb, var(--accent-color) 30%, transparent),
            transparent 70%
        ),
        #dbe3f3;
}
/* ===== FORM + TITLE ALIGNMENT SYSTEM ===== */

.form-wrapper {
    max-width: 420px; /* same as form */
    margin: 0 auto 40px;
    text-align: center;
}

.form-wrapper .page-title {
    width: 100%;
}
/* ===== MASTER FORM WIDTH (HOME STANDARD) ===== */

.download-box {
    max-width: 620px;   /* HOME page width */
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    border-radius: 14px;
}
/* ===== FORCE TITLE WIDTH SAME AS FORM ===== */

.page-title {
    display: block;
    max-width: 620px;   /* SAME as .download-box */
    width: 100%;
    margin: 0 auto 30px;
    text-align: center;
}
/* ===== SUPPORTED PLATFORMS CARDS ===== */

.platforms-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
}

.platform-card {
  display: flex;
  align-items: center;
  background: #e8f8ec;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-6px) scale(1.07);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  background: linear-gradient(135deg, #d1f7e0, #e8f8ec);
}

.platform-card img,
.platform-card svg {
  margin-right: 12px;
  width: 26px;
  height: 26px;
  transition: transform 0.3s;
}

.platform-card:hover img,
.platform-card:hover svg {
  transform: rotate(8deg) scale(1.12);
}
/* Supported Platforms Title */
.platforms-title {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
}

.platforms-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #2d6cdf;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}



