:root{
  --bg: #f6faf8;
  --card-bg: #ffffff;
  --muted: #9aa6b2;
  --radius: 10px;
  --accent1: #1e88ff; /* blue */
  --accent2: #22c17e; /* green */
  --text: #f6faf8;
  --border-gradient: linear-gradient(90deg,var(--accent1),var(--accent2));
  --btn-gradient: linear-gradient(90deg,var(--accent1),var(--accent2));
  font-synthesis: none;
}

/* Page basics */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: var(--bg);
  font-family: 'Poppins',sans-serif;
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Glass Header */
.glass-header {
  display:flex;
  align-items:center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(246,250,248,0.1);
  border-bottom: 1px solid rgba(246,250,248,0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  text-align: center;
  z-index: 1000;
}

.glass-header h1 {
  font-size: 25px;
  font-weight: 700;
  margin:0 0 0 4px;
  color: #ffffff;
}

.glass-header p {
  font-size: 12px;
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

/* app container for mobile-like look */
.app{
  max-width:1200px; /* increased for desktop */
  margin:0 auto;
  padding:16px;
}

/* Top bar */
.topbar{
  display:flex;
  align-items:center;
  gap:0px;
  margin-bottom:16px;
}

.brand{
  margin:0 0 0 4px;
  font-weight:700;
  font-size:25px;
  color:#000;
  padding:0px;
}
.brand span{ 
  background: linear-gradient(90deg,var(--accent1),var(--accent2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
}

.img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.content{display:block; gap:16px;}

.btn{
  width: auto;
  flex:1;
  padding:16px 16px;
  border-radius:10px;
  border:none;
  font-weight:700;
  font-size:14px;
  line-height:1;
  display:block;
  text-decoration: none;
  align-items:center;
  text-align: center;
  gap:16px;
  cursor:pointer;
  box-shadow: 0 6px 14px rgba(34,70,120,0.12);
}
.btn--primary{
  color:#fff;
  text-align: center;
  background: var(--btn-gradient);
}

.titles{
  font-size:20px;
  font-weight:700;
  gap:16px;
  color:#000;
  margin:8px 0px;
}
.titles span{ 
  background: linear-gradient(90deg,var(--accent1),var(--accent2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.title{
  color:#000;
  text-align: center;
  font-size:30px;
  font-weight:700;
  margin:8px 0px;
}
.title span{
  background: linear-gradient(90deg,var(--accent1),var(--accent2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.p {
  font-size:16px;
  font-weight:400;
  text-align: center;
  color:#000;
  margin:16px;
}

.h1 {
  color:#f6faf8;
  text-align: center;
  font-size:25px;
  font-weight:700;
  margin:8px 0px;
}

/* Container */
.cards {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1px;
  border-radius: 10px;
  background: var(--border-gradient);
  max-width: 400px;
  margin: 16px auto;
}

.card, .btn2 {
  background: #fff;
  border-radius: 9px;
  padding: 16px;
  text-decoration: none;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(46, 168, 255, 0.08);
  transition: all 0.2s ease;
}

.btn2 h3, .card h3 {
  font-size: 18px;
  margin: 0 0 16px;
  color: #0b1b2b;
  font-weight: 600;
}

.icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(46, 168, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.icon-wrap img {
  width: 28px;
  height: 28px;
  stroke: var(--accent1);
  fill: none;
  stroke-width: 2;
}

.card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  text-align: center;
}

.p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  text-align: center;
}

.note {
  background: #fff3cd;
  color: #856404;
  padding: 15px;
  border-left: 5px solid #ffc107;
  margin: 20px 0;
  border-radius: 10px;
}

/* === Footer Styling === */
footer {
  background: #f6faf8;
  padding: 40px 20px 20px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: #4b5563;
  border-top: 1px solid #e5e7eb;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  text-align: center;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: #6b7280;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
}

.footer-links h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #9ca3af;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
}

.footer-bottom a {
  display: block;
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

/* 📱 Mobile - max 480px */
@media (max-width: 480px) {
  .brand{font-size:30px;}
  .title{font-size:22px;}
  .cards2{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    margin: 16px 0;
  }
  .cards{
    width: 100%;
  }
  .footer-links {
    grid-template-columns: (2, 1fr);
    text-align: center;
  }
}

/* 📱 Tablet - 481px to 768px */
@media (min-width: 481px) and (max-width: 768px) {
  .app {
    max-width: 700px;
  }
  .brand {
    font-size: 26px;
  }
  .title {
    font-size: 28px;
  }
  .cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    margin: 16px 0;
  }
  .card {
    width: 100%;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

/* 💻 Laptop - 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .app {
    max-width: 950px;
  }
  .brand {
    font-size: 28px;
  }
  .title {
    font-size: 32px;
  }
  .cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    margin: 16px 0;
  }
  .card {
    width: 100%;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

/* 🖥️ Desktop - 1025px and above */
@media (min-width: 1025px) {
  .app {
    max-width: 1200px;
  }
  .brand {
    font-size: 30px;
  }
  .title {
    font-size: 36px;
  }
  .cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    margin: 16px 0;
  }
  .card {
    width: 100%;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}