/* style.css — Professional Investment Platform Theme (Kamaai.click Style) */
:root{
  /* Brand & surface */
  --brand:  #10B981;   /* Emerald green */
  --brand2: #059669;   /* Darker emerald */
  --brand-light: #D1FAE5; /* Light emerald */
  --bar:    #F0FDF4;   /* Very light green bar (header/footer) */
  --bg:     #FFFFFF;   /* Pure white background */
  --card:   #FFFFFF;   /* White card background */
  --card-hover: #FAFAFA; /* Card hover */
  --text:   #111827;   /* Dark gray text */
  --text-light: #6B7280; /* Light gray text */
  --muted:  #9CA3AF;   /* Muted text */

  /* Accents */
  --success: #10B981;   /* Green (success) */
  --error:   #EF4444;   /* Red (error) */
  --warning: #F59E0B;  /* Orange (warning) */
  --info:    #3B82F6;   /* Blue (info) */
  --line:    #E5E7EB;   /* Light border */
  --line2:   #F3F4F6;   /* Softer border */
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Header/Footer heights */
  --header-base: 64px;
  --header-compact: 58px;
  --header-h: calc(var(--header-base) + env(safe-area-inset-top, 0px));
  --footer-base: 72px;
  --footer-compact: 68px;
  --footer-h: calc(var(--footer-base) + env(safe-area-inset-bottom, 0px));
}

*{ 
  box-sizing:border-box; 
  margin:0; 
  padding:0; 
}
html,body{ 
  height:100%; 
  margin:0; 
  padding:0; 
}
body{
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, sans-serif;
  color: var(--text);
  background: var(--bg);
  padding-top: var(--header-h);
  padding-bottom: calc(var(--footer-h) + 20px); /* Extra padding to prevent overlap */
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a{ 
  color: inherit; 
  text-decoration: none; 
  transition: all 0.2s ease;
}

/* Layout */
.container{ 
  max-width:560px; 
  margin:0 auto; 
  padding:16px; 
  width: 100%;
}
.row{ 
  display:flex; 
  gap:12px; 
  width: 100%;
}
.row > *{ flex:1; }

/* Header */
.header{
  position: fixed; 
  top:0; 
  left:0; 
  right:0;
  z-index: 1100;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-top: env(safe-area-inset-top, 0px);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.header .bar{ 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  min-height:var(--header-base); 
  padding:0 16px;
  width: 100%;
}
@media (max-width:360px){ 
  :root{ --header-h: calc(var(--header-compact) + env(safe-area-inset-top, 0px)); }
  .header .bar{ min-height:var(--header-compact); padding: 0 12px; } 
}
.header .left,.header .right{ 
  display:flex; 
  align-items:center; 
  gap:8px; 
}
.logo{ 
  display:inline-flex; 
  align-items:center; 
  justify-content:center;
  font-weight:700; 
  color:#FFFFFF; 
  font-size:20px; 
  letter-spacing:.3px; 
  text-decoration:none;
  text-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.nav-btn{
  display:inline-flex; 
  align-items:center; 
  justify-content:center;
  height:40px; 
  min-width:40px; 
  padding:8px 12px;
  border-radius:10px; 
  background:rgba(255,255,255,.15); 
  color:#FFFFFF; 
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}
.nav-btn:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,.15);
}
.nav-btn .ico{ 
  width:20px; 
  height:20px; 
  stroke-width:2.5; 
  vertical-align:middle; 
}

/* Cards */
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius:16px;
  padding:20px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--brand-light);
}
.card:hover::before {
  opacity: 1;
}
.card.soft{
  background: var(--card-hover);
  border-color: var(--line2);
}
.card h2, .card h3 {
  margin: 0 0 16px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

/* Buttons */
.btn{
  display:inline-block; 
  width:auto;
  padding:14px 24px; 
  border-radius:12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#FFFFFF; 
  font-weight:600; 
  font-size: 15px;
  border:0;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow);
}
.btn.block{ 
  display:block; 
  width:100%; 
  text-align:center; 
}
.btn.ghost{
  background:#FFFFFF; 
  color:var(--brand);
  border:2px solid var(--brand);
  box-shadow:none;
}
.btn.ghost:hover {
  background: var(--brand-light);
  color: var(--brand2);
}
.btn.small{ 
  padding:10px 16px; 
  font-size:14px; 
  border-radius:10px; 
}
.btn.danger{ 
  background:linear-gradient(135deg, var(--error), #DC2626); 
  color:#FFFFFF; 
  box-shadow:0 4px 12px rgba(239,68,68,.3); 
}
.btn.danger:hover {
  box-shadow: 0 6px 16px rgba(239,68,68,.4);
}
.btn.danger.ghost{ 
  background:#FFFFFF; 
  color:var(--error); 
  border:2px solid var(--error); 
}
.btn.primary{
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#FFFFFF;
  border:none;
  font-weight:600;
}

/* Inputs */
.input, select, .form-control, .form-select{
  width:100%; 
  padding:14px 16px;
  border-radius:12px; 
  border:2px solid var(--line);
  background:#FFFFFF; 
  color:var(--text);
  font-family: inherit;
  font-size: 15px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}
.input:focus, select:focus, .form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(16,185,129,.1);
  background: #FFFFFF;
}
.input::placeholder {
  color: var(--muted);
}
label, .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

/* Alerts */
.alert{
  padding:14px 16px; 
  border-radius:12px;
  background:#ECFDF5; 
  border:2px solid #A7F3D0; 
  color:#065F46;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.alert.success{
  background:#ECFDF5; 
  border-color:#A7F3D0; 
  color:#065F46;
}
.alert.danger {
  background: #FEF2F2;
  border: 2px solid #FECACA;
  color: #991B1B;
}
.alert.warning {
  background: #FFFBEB;
  border: 2px solid #FDE68A;
  color: #92400E;
}
.alert.info {
  background: #EFF6FF;
  border: 2px solid #BFDBFE;
  color: #1E40AF;
}

/* Ticker */
.ticker{ 
  white-space:nowrap; 
  overflow:hidden; 
  background:#FFFFFF; 
  border:1px solid var(--line); 
  border-radius: 12px;
}
.ticker span{ 
  display:inline-block; 
  padding-left:100%; 
  animation:ticker 22s linear infinite; 
  color:var(--text); 
}
@keyframes ticker{ 
  0%{transform:translateX(0)} 
  100%{transform:translateX(-100%)} 
}

/* Ticker with card */
.card.ticker{
  overflow:hidden;
  border:2px solid var(--brand-light);
  background:linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
  position:relative;
  padding: 0;
}
.ticker-track {
  padding: 12px 16px;
}
.card.ticker::before,
.card.ticker::after{
  content:"";
  position:absolute;
  top:0;
  width:50px;
  height:100%;
  z-index:2;
  pointer-events:none;
}
.card.ticker::before{
  left:0;
  background:linear-gradient(to right,#FFFFFF 0%,transparent 100%);
}
.card.ticker::after{
  right:0;
  background:linear-gradient(to left,#FFFFFF 0%,transparent 100%);
}
.card.ticker span{
  display:inline-flex;
  white-space:nowrap;
  padding:8px 10px;
  color:var(--brand2);
  gap:30px;
  font-weight: 500;
  animation: tickerLoop 12s linear infinite;
}
.card.ticker span::after{
  content: attr(data-text);
  white-space:nowrap;
}
@keyframes tickerLoop{
  from{
    transform: translateX(-15%);
    opacity:1;
  }
  to{
    transform: translateX(100%);
    opacity:0.8;
  }
}

/* KPIs */
.kpis{ 
  display:grid; 
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); 
  gap:16px; 
  margin-top:16px; 
  margin-bottom: 16px;
}
.kpi{
  background:linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
  border:2px solid var(--line);
  border-radius:16px; 
  padding:20px; 
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.kpi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
}
.kpi:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--brand-light);
}
.kpi h4{ 
  margin:0 0 8px; 
  font-size:13px; 
  font-weight:600; 
  color:var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.kpi .v{ 
  font-size:28px; 
  font-weight:700; 
  color:var(--brand2);
  line-height: 1.2;
}

/* Offers (list tiles) */
.offer{
  background:#FFFFFF; 
  border:2px solid var(--line); 
  border-radius:16px; 
  padding:20px; 
  margin-bottom:16px;
  transition: all 0.3s ease;
}
.offer:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.offer .price{ 
  font-size:24px; 
  font-weight:800; 
  color:var(--text); 
  text-align:center; 
}
.offer .meta{
  display:flex; 
  gap:12px; 
  color:var(--text-light); 
  font-size:14px; 
  margin:8px 0 12px; 
  justify-content:center; 
  flex-wrap:wrap;
}

/* VIP Offer Cards */
.offers-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:20px;
  margin-top:20px;
}
.offer-vip{
  background:linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
  border:2px solid var(--brand-light);
  border-radius:16px;
  padding:20px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.offer-vip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
}
.offer-vip:hover{
  box-shadow: var(--shadow-xl);
  transform:translateY(-6px);
  border-color: var(--brand);
}
.price-bubble{
  background:linear-gradient(135deg, var(--brand-light), #FFFFFF);
  border:2px solid var(--brand-light);
  border-radius:12px;
  padding:16px;
  text-align:center;
  margin-bottom:16px;
  box-shadow: var(--shadow);
}
.price-line{
  font-size:13px;
  opacity:.7;
  margin-bottom: 6px;
  color: var(--text-light);
  font-weight: 500;
}
.price-main{
  font-weight:800;
  color:var(--brand2); 
  font-size: 24px;
  line-height: 1.2;
}
.offer-meta{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:12px;
  margin-top:12px;
}
.offer-cell{
  background:#FFFFFF;
  border:2px solid var(--brand-light);
  border-radius:12px;
  padding:12px 8px;
  font-size:13px;
  text-align:center;
  line-height: 1.5;
  transition: all 0.2s ease;
}
.offer-cell:hover {
  border-color: var(--brand);
  background: var(--brand-light);
}
.offer-cell strong{
  font-weight:800;
  color:var(--brand2);
  display: block;
  margin-top: 6px;
  font-size: 16px;
}
.offer-actions{
  margin-top:16px;
}
.glow{
  text-shadow:0 0 12px rgba(16,185,129,.5);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Referral Card */
.ref-card{ 
  margin-top: 16px;
  background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
  border: 2px solid var(--brand-light);
}
.ref-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--brand2);
}
.ref-row{ 
  display:flex; 
  gap:12px; 
  align-items:center; 
  margin-bottom: 12px;
}
.ref-row .input{ 
  flex:1; 
  border-color: var(--brand-light);
}
.ref-card .btn.icon{
  display:inline-flex; 
  align-items:center; 
  justify-content:center;
  padding:12px 16px; 
  border-radius:12px; 
  border:2px solid var(--brand-light); 
  background:#FFFFFF;
  transition:all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.ref-card .btn.icon:hover{ 
  background:var(--brand-light); 
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.ref-card .btn.icon:active{ 
  transform:translateY(0); 
}
.ref-card .btn.icon .emoji{ 
  font-size:20px; 
  line-height:1; 
}
.copy-btn{ 
  border-color:var(--brand-light); 
  background:var(--brand-light); 
}
.copy-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
}
.wa-btn{ 
  border-color:var(--brand-light); 
  background:#FFFFFF; 
}
.wa-btn:hover{ 
  background:var(--brand-light); 
  border-color: var(--brand);
}
.ref-note{ 
  font-size:13px; 
  opacity:.8; 
  margin-top:8px; 
  color: var(--text-light);
}

/* Badges & small text */
.badge{
  background:var(--brand-light); 
  color:var(--brand2); 
  border:1px solid var(--brand);
  border-radius:999px; 
  padding:6px 12px; 
  font-size:12px;
  display: inline-block;
  font-weight: 600;
}
.badge.bg-success {
  background: #ECFDF5;
  color: #065F46;
  border-color: #A7F3D0;
}
.badge.bg-danger {
  background: #FEF2F2;
  color: #991B1B;
  border-color: #FECACA;
}
.badge.bg-warning {
  background: #FFFBEB;
  color: #92400E;
  border-color: #FDE68A;
}
.small{ 
  font-size:13px; 
  color:var(--text-light); 
}
hr.sep{ 
  border:0; 
  border-top:2px dashed var(--line); 
  margin:20px 0; 
}

/* Icons */
.icon{ 
  width:20px; 
  height:20px; 
  display:inline-block; 
  vertical-align:middle; 
}

/* Banner */
.banner{ 
  border-radius:16px; 
  overflow:hidden; 
  margin-bottom:16px; 
  border:2px solid var(--line); 
  box-shadow: var(--shadow-md);
}
.banner img{ 
  width:100%; 
  display:block; 
}

/* ===== Tables (history/admin) ===== */
.table, .admin-table, .wtable{
  width:100%; 
  border:2px solid var(--line); 
  border-radius:16px; 
  overflow:hidden; 
  background:#FFFFFF;
  box-shadow: var(--shadow);
}
.table thead {
  background: linear-gradient(135deg, var(--brand-light), #FFFFFF);
}
.table th, .table td {
  padding: 16px;
  text-align: right;
  border-bottom: 1px solid var(--line2);
}
.table th {
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.table .tr, .admin-table .tr, .wtable .tr{
  display:grid; 
  gap:0; 
  padding:16px; 
  align-items:center; 
  border-top:1px solid var(--line2);
  transition: background 0.2s ease;
}
.table .tr:hover {
  background: var(--brand-light);
}
.table .tr.th, .admin-table .tr.th, .wtable .tr.th{
  background:linear-gradient(135deg, var(--brand-light), #FFFFFF); 
  font-weight:700; 
  border-top:0; 
  padding:12px 16px;
}
.table .tr > div, .admin-table .tr > div, .wtable .tr > div{
  min-width:0; 
  overflow:hidden; 
  text-overflow:ellipsis; 
  white-space:nowrap; 
  font-size:14px; 
  color:var(--text);
}

/* ===== Bottom App-Style Navigation ===== */
.footer-nav{
  position: fixed; 
  left:0; 
  right:0; 
  bottom:0; 
  z-index:1000;
  background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
  border-top: 2px solid var(--line);
  backdrop-filter: blur(10px);
  min-height: var(--footer-h);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}
.footer-nav .tabs{
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 0;
  padding: 10px 12px;
  min-height: var(--footer-base);
  user-select: none;
}
.footer-nav .tab{
  text-decoration:none; 
  color:var(--text);
  min-width: 0;
  display:flex; 
  flex-direction:column; 
  align-items:center; 
  justify-content:center;
  padding:10px 8px; 
  border-radius:12px; 
  line-height:1; 
  white-space:nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
}
.footer-nav .tab .ico{ 
  font-size:20px; 
  line-height: 1;
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}
.footer-nav .tab .lbl{ 
  font-size:11px; 
  margin-top:2px;
  color:var(--text-light);
  font-weight: 500;
}
.footer-nav .tab.active{
  background:linear-gradient(135deg, var(--brand-light), #FFFFFF); 
  color:var(--brand2);
  border:2px solid var(--brand-light);
  box-shadow: var(--shadow);
}
.footer-nav .tab.active .lbl {
  color: var(--brand2);
  font-weight: 600;
}

/* Floating Referral Button (Center) */
.fab-referral{
  position:absolute;
  left:50%;
  transform:translate(-50%, -28px);
  width:64px;
  height:64px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#FFFFFF;
  border: 4px solid #FFFFFF;
  box-shadow: var(--shadow-xl);
  font-size:24px;
  text-decoration: none;
  z-index: 1001;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fab-referral:hover {
  transform:translate(-50%, -32px) scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(16,185,129,.4);
}
.fab-referral:active{
  transform:translate(-50%,-24px) scale(.95);
}
.fab-referral.active{
  filter:saturate(1.2) brightness(1.05);
}
.fab-referral svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}

/* Tiny screens: compact but single line */
@media (max-width:360px){
  :root{ --footer-h: calc(var(--footer-compact) + env(safe-area-inset-bottom, 0px)); }
  .footer-nav .tabs{ min-height: var(--footer-compact); gap:6px; padding: 8px; }
  .footer-nav .tab{ height:44px; padding: 8px 4px; }
  .footer-nav .tab .lbl{ font-size:10px; }
  .fab-referral {
    width: 56px;
    height: 56px;
    transform: translate(-50%, -24px);
  }
}

/* Form elements */
form {
  margin: 0;
}
button, input[type="submit"], input[type="button"] {
  font-family: inherit;
  cursor: pointer;
}
input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="tel"], textarea {
  font-family: inherit;
}

/* Section styling */
section {
  margin: 24px 0;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 16px 0;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
p {
  margin: 0 0 16px 0;
  line-height: 1.7;
  color: var(--text);
}

/* Pager */
.pager, .admin-pager{
  display:flex; 
  gap:12px; 
  align-items:center; 
  justify-content:center; 
  margin-top:20px;
}
.pager .small, .admin-pager .small{ 
  color:var(--text-light); 
}

/* Ticker row inside card variant (if used) */
.card.ticker{ 
  background:#FFFFFF; 
  border-color:var(--line); 
}

/* Utility */
.text-center{ 
  text-align:center; 
}
.mt-8{ 
  margin-top:8px; 
}
.mt-12{ 
  margin-top:12px; 
}
.mt-16 {
  margin-top: 16px;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}

/* Urdu Font */
.urdu, [lang="ur"], body[dir="rtl"] {
  font-family: "Noto Nastaliq Urdu", serif !important;
  direction: rtl !important;
  text-align: right !important;
  line-height: 1.9;
  font-size: 1.05rem;
}
.urdu *, [lang="ur"] * {
  font-family: "Noto Nastaliq Urdu", serif !important;
}
.urdu-text{
  font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;
  direction: rtl;
  text-align: right;
  font-size: 15px;
  line-height: 1.9;
}

/* Offers Section */
.offers-section { 
  margin-top: 24px; 
}
.offers-section .head { 
  display:flex; 
  align-items:flex-end; 
  gap:12px; 
  margin-bottom: 16px;
}
.offers-section .head h3 { 
  margin:0; 
  font-size:22px; 
  line-height:1.2; 
  color:var(--brand2);
  font-weight: 700;
}

/* VIP Offers */
.vip-offers { 
  margin-top: 32px; 
}
.vip-headline { 
  margin-bottom: 20px; 
}
.sub { 
  font-size: 15px; 
  color: var(--text-light); 
  margin: 0;
  line-height: 1.6;
}
.ticker-soft {
  margin-top: 8px;
  font-size: 14px;
  color: var(--brand2);
  text-align: center;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 16px;
  }
  .kpis {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .row {
    flex-direction: column;
  }
  .card {
    padding: 16px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}
