:root{
  --bg:#f7f8fc;
  --white:#ffffff;
  --card:#ffffff;
  --soft:#f4f6fb;
  --line:#e4e8f0;
  --text:#16202a;
  --muted:#6b7a8c;
  --brand:#e0a325;
  --brand-2:#f6c65b;
  --brand-dark:#b88212;
  --green:#2ecc71;
  --red:#e74c3c;
  --shadow:0 18px 50px rgba(15,23,42,.08);
  --shadow-soft:0 10px 26px rgba(15,23,42,.05);
  --shadow-gold:0 12px 30px rgba(224,163,37,.18);
  --radius:24px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

html, body{
  overflow-x:hidden;
}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:
    radial-gradient(circle at top left, rgba(246,198,91,.08), transparent 24%),
    linear-gradient(180deg,#fbfcff 0%, #f7f8fc 100%);
  color:var(--text);
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(1240px,94%);
  margin:auto;
}

main{
  min-height:500px;
}

::selection{
  background:#f3d38a;
  color:#111;
}

/* header */
.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(228,232,240,.9);
  box-shadow:0 8px 24px rgba(15,23,42,.04);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  font-size:22px;
  color:#111827;
  min-width:0;
}

.brand img{
  width:54px;
  height:54px;
  object-fit:contain;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--line);
  padding:5px;
  box-shadow:var(--shadow-soft);
  flex-shrink:0;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.main-nav a{
  color:#1f2937;
  font-weight:700;
  font-size:15px;
  transition:.25s ease;
  position:relative;
}

.main-nav a:hover{
  color:var(--brand-dark);
}

.mobile-menu-toggle{
  display:none;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#111;
  border:none;
  border-radius:14px;
  width:46px;
  height:46px;
  font-size:22px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(224,163,37,.24);
}

/* buttons */
.btn,
button.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#111111;
  padding:13px 20px;
  border-radius:14px;
  font-weight:800;
  border:none;
  cursor:pointer;
  transition:.25s ease;
  box-shadow:var(--shadow-gold);
}

.btn:hover,
button.btn:hover{
  transform:translateY(-2px);
}

.btn-sm{
  padding:10px 14px;
  font-size:14px;
}

.btn-dark{
  background:#1f3b5b;
  color:#ffffff !important;
  box-shadow:none;
}

.premium-gold-btn{
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#111 !important;
}

.premium-small-btn{
  padding:10px 16px;
  font-size:14px;
}

.premium-outline-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border:1px solid #e0c06f;
  color:#8d6600;
  background:#fffaf0;
  border-radius:14px;
  font-weight:700;
  transition:.25s ease;
}

.premium-outline-btn:hover{
  background:#fff3d8;
  transform:translateY(-1px);
}

/* generic */
.card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}

.meta{
  color:var(--muted);
  font-size:14px;
}

.small{
  font-size:13px;
  color:var(--muted);
}

.section{
  padding:54px 0;
}

.grid{
  display:grid;
  gap:22px;
}

.grid-2{
  grid-template-columns:repeat(2,1fr);
}

.grid-3{
  grid-template-columns:repeat(3,1fr);
}

.grid-4{
  grid-template-columns:repeat(4,1fr);
}

.section-sub-text{
  color:var(--muted);
  margin:10px 0 0;
  line-height:1.7;
  max-width:720px;
  word-break:break-word;
}

/* old homepage support */
.hero{
  padding:72px 0 30px;
  background-size:cover;
  background-position:center;
  position:relative;
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.94),rgba(255,255,255,.78));
}

.hero-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:24px;
  align-items:center;
}

.hero-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:34px;
}

.hero h1{
  font-size:48px;
  line-height:1.1;
  margin:0 0 12px;
  color:#111827;
}

.hero p{
  color:#4f6175;
  font-size:18px;
}

.search-box{
  display:flex;
  gap:12px;
  background:#fff;
  padding:12px;
  border-radius:18px;
  margin-top:24px;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

.search-box input,
.search-box select,
.form-control{
  width:100%;
  padding:14px;
  border:1px solid #d9e1eb;
  border-radius:12px;
  font-size:15px;
  background:#fff;
  color:#1b2430;
  outline:none;
}

.search-box input:focus,
.search-box select:focus,
.form-control:focus,
.home-hero-search input:focus,
.home-hero-search select:focus{
  border-color:#e0c06f;
  box-shadow:0 0 0 4px rgba(224,163,37,.12);
}

.search-box input,
.search-box select{
  background:#f8fafc;
}

.hero-image{
  min-height:380px;
  border-radius:28px;
  background:#f7f9fd;
  display:flex;
  align-items:end;
  justify-content:center;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.marquee{
  background:#ffffff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:12px 0;
  overflow:hidden;
  white-space:nowrap;
}

.marquee span{
  display:inline-block;
  padding-left:100%;
  animation:marq 24s linear infinite;
  color:#9a6400;
  font-weight:800;
}

@keyframes marq{
  0%{transform:translateX(0)}
  100%{transform:translateX(-100%)}
}

/* premium full width homepage */
.home-hero-full{
  position:relative;
  min-height:760px;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  overflow:hidden;
}

.home-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.20)),
    linear-gradient(90deg,rgba(0,0,0,.05),rgba(0,0,0,.03));
}

.home-hero-inner{
  position:relative;
  z-index:2;
  padding:70px 0 0;
}

.home-hero-content-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
}

.home-hero-content{
  max-width:860px;
  text-align:center;
  padding:38px 16px 10px;
}

.home-hero-content h1{
  margin:0 0 16px;
  font-size:60px;
  line-height:1.06;
  letter-spacing:-1px;
  text-shadow:0 3px 14px rgba(0,0,0,.20);
}

.home-hero-content p{
  margin:0 auto 28px;
  max-width:760px;
  font-size:18px;
  line-height:1.85;
  font-weight:500;
  text-shadow:0 2px 10px rgba(0,0,0,.12);
}

.home-hero-search{
  max-width:880px;
  margin:0 auto;
  padding:12px;
  border-radius:24px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.72);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 22px 42px rgba(15,23,42,.10);
  display:flex;
  gap:12px;
  align-items:center;
}

.home-hero-search-grid{
  flex:1;
  display:grid;
  grid-template-columns:1.5fr .8fr;
  gap:12px;
}

.home-hero-search input,
.home-hero-search select{
  width:100%;
  height:58px;
  border:none;
  outline:none;
  border-radius:16px;
  background:rgba(255,255,255,.96);
  box-shadow:inset 0 0 0 1px #dde5ef;
  padding:0 18px;
  font-size:15px;
  color:#1a2430;
}

/* floating category cards */
.hero-category-floating-wrap{
  margin-top:112px;
}

.hero-category-floating-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
  align-items:stretch;
}

.hero-glass-category-card{
  min-height:124px;
  padding:18px 14px;
  border-radius:24px;
  background:rgba(255,255,255,.42);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 14px 30px rgba(15,23,42,.10);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  transition:.25s ease;
}

.hero-glass-category-card:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.56);
}

.hero-glass-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  background:linear-gradient(135deg,#fff2cf,#f0c96a);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#916400;
  font-size:20px;
  font-weight:800;
  margin-bottom:12px;
  box-shadow:0 10px 18px rgba(224,163,37,.16);
  overflow:hidden;
}

.hero-glass-icon img{
  width:28px;
  height:28px;
  object-fit:contain;
  display:block;
}

.hero-glass-text{
  font-size:16px;
  line-height:1.35;
  font-weight:800;
  color:#1a2230;
  word-break:break-word;
}

/* editable line */
.home-scroll-line-bar{
  width:100%;
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:14px 0;
  overflow:hidden;
}

.home-scroll-line-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  overflow:hidden;
}

.home-scroll-line-text{
  flex:1;
  min-width:240px;
  overflow:hidden;
  white-space:nowrap;
}

.home-scroll-line-text span{
  display:inline-block;
  padding-left:100%;
  animation:marq 22s linear infinite;
  font-weight:800;
  color:#8b6200;
  white-space:nowrap;
}

/* premium sections */
.premium-section{
  padding:74px 0;
}

.premium-light-section{
  background:linear-gradient(180deg,#fbfcff,#f7f8fc);
}

.premium-section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:28px;
}

.premium-section-head.left-only{
  align-items:center;
}

.premium-section-head h2{
  margin:6px 0 0;
  font-size:40px;
  line-height:1.12;
  color:#111827;
}

.premium-section-label{
  display:inline-block;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.7px;
  color:#9a7000;
  background:#fff4d8;
  border:1px solid #efd07a;
  padding:8px 14px;
  border-radius:999px;
}

.premium-section-label.light{
  color:#fff4cc;
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.16);
}

/* listings */
.premium-listing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.premium-listing-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.28s ease;
  height:100%;
  display:flex;
  flex-direction:column;
}

.premium-listing-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 46px rgba(15,23,42,.10);
}

.premium-listing-image-wrap{
  position:relative;
}

.premium-listing-image{
  width:100%;
  height:230px;
  object-fit:cover;
  background:#eef3f8;
}

.premium-rating-badge{
  position:absolute;
  top:16px;
  right:16px;
  background:#fff8df;
  color:#8b6300;
  font-size:13px;
  font-weight:800;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid #eed27f;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
}

.premium-listing-body{
  padding:22px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.premium-listing-cat{
  color:#9a6c00;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;
  margin-bottom:8px;
}

.premium-listing-card h3{
  margin:0 0 8px;
  font-size:24px;
  line-height:1.2;
  color:#111827;
  word-break:break-word;
}

.premium-listing-location{
  color:#6f7f90;
  font-size:14px;
  margin-bottom:12px;
}

.premium-listing-card p{
  margin:0 0 16px;
  color:#56687b;
  line-height:1.7;
  font-size:15px;
}

.premium-read-link{
  color:#a87700;
  font-weight:800;
  font-size:15px;
}

.premium-empty-box{
  grid-column:1/-1;
  background:#fff;
  border:1px dashed #d8deea;
  border-radius:28px;
  padding:36px;
  text-align:center;
  color:#607284;
  box-shadow:var(--shadow-soft);
}

.premium-empty-box h3{
  color:#1f2937;
  margin-top:0;
}

/* news */
.grid-news-home{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.premium-news-list{
  display:grid;
  gap:20px;
}

.premium-news-card{
  display:grid;
  grid-template-columns:210px 1fr;
  gap:18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  transition:.25s ease;
}

.premium-news-card:hover{
  transform:translateY(-4px);
}

.premium-news-thumb{
  min-height:100%;
  background:#f3f6fb;
}

.premium-news-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.premium-news-placeholder{
  height:100%;
  min-height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#fff1cc,#f0c96c);
  color:#8d6300;
  font-size:26px;
  font-weight:800;
}

.premium-news-content{
  padding:20px 20px 20px 0;
}

.premium-news-date{
  color:#9a6b00;
  font-size:13px;
  font-weight:800;
  margin-bottom:8px;
}

.premium-news-content h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.25;
  color:#111827;
  word-break:break-word;
}

.premium-news-content p{
  margin:0 0 14px;
  color:#5f7183;
  line-height:1.7;
}

/* events */
.home-event-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.home-event-card{
  display:grid;
  grid-template-columns:110px 1fr;
  gap:18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:20px;
  box-shadow:var(--shadow-soft);
  align-items:start;
  transition:.25s ease;
}

.home-event-card:hover{
  transform:translateY(-4px);
}

.home-event-date-box{
  border-radius:20px;
  background:linear-gradient(135deg,#fff2cf,#f3cb6c);
  color:#7d5900;
  text-align:center;
  padding:18px 10px;
  box-shadow:0 10px 20px rgba(224,163,37,.16);
}

.home-event-date-box .day{
  display:block;
  font-size:34px;
  line-height:1;
  font-weight:900;
}

.home-event-date-box .month{
  display:block;
  margin-top:6px;
  font-size:14px;
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
}

.home-event-content h3{
  margin:0 0 10px;
  color:#111827;
  font-size:24px;
}

.home-event-content p{
  margin:0 0 10px;
  color:#5f7183;
  line-height:1.7;
}

.home-event-meta{
  color:#8b6200;
  font-size:14px;
  font-weight:700;
}

/* apk + qr/support */
.home-two-box-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.home-download-card,
.home-support-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:30px;
  box-shadow:var(--shadow);
  min-height:100%;
}

.home-download-card h2,
.home-support-card h2{
  margin:12px 0 12px;
  font-size:36px;
  line-height:1.18;
  color:#111827;
}

.home-download-card p,
.home-support-card p{
  color:#5b6d80;
  line-height:1.8;
  margin:0 0 18px;
}

.home-download-image{
  margin-top:22px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#f7f9fd;
}

.home-download-image img{
  width:100%;
  max-height:320px;
  object-fit:cover;
}

.home-support-qr{
  width:180px;
  max-width:100%;
  margin:20px 0;
  padding:12px;
  border-radius:20px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

.home-support-qr img{
  width:100%;
  height:auto;
}

/* team */
.home-team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.home-team-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:24px;
  text-align:center;
  box-shadow:var(--shadow-soft);
  transition:.25s ease;
}

.home-team-card:hover{
  transform:translateY(-4px);
}

.home-team-image{
  width:112px;
  height:112px;
  border-radius:50%;
  overflow:hidden;
  margin:0 auto 18px;
  border:4px solid #fff6dc;
  box-shadow:0 12px 24px rgba(15,23,42,.08);
  background:#f3f6fb;
}

.home-team-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.home-team-card h3{
  margin:0 0 8px;
  font-size:24px;
  color:#111827;
}

.home-team-role{
  color:#9a6a00;
  font-size:14px;
  font-weight:800;
  margin-bottom:12px;
  text-transform:uppercase;
  letter-spacing:.4px;
}

.home-team-card p{
  margin:0;
  color:#5c6f82;
  line-height:1.7;
}

/* custom section */
.home-custom-html-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
  overflow:auto;
}

/* disclaimer */
.home-disclaimer-box{
  background:linear-gradient(180deg,#fffaf0,#ffffff);
  border:1px solid #edd490;
  border-radius:26px;
  padding:24px 26px;
  box-shadow:var(--shadow-soft);
}

.home-disclaimer-box h3{
  margin:0 0 10px;
  color:#111827;
}

.home-disclaimer-box p{
  margin:0;
  color:#6a5c36;
  line-height:1.8;
}

/* info legacy support */
.premium-news-layout{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:26px;
}

.premium-info-column{
  display:grid;
  gap:22px;
}

.premium-info-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}

.premium-info-card h2,
.premium-info-card h3{
  margin-top:0;
  color:#111827;
}

.premium-info-card p{
  color:#56687b;
  line-height:1.8;
}

.premium-gradient-card{
  background:linear-gradient(135deg,#16202a,#243448);
  border:none;
}

.premium-gradient-card h2,
.premium-gradient-card p{
  color:#ffffff;
}

.premium-feature-list{
  list-style:none;
  margin:0;
  padding:0;
}

.premium-feature-list li{
  position:relative;
  padding-left:22px;
  margin-bottom:12px;
  color:#53677b;
  line-height:1.7;
}

.premium-feature-list li:before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:#c69013;
  font-size:20px;
  line-height:1;
}

/* auth / forms */
.auth-wrap,
.dashboard-wrap{
  width:min(920px,92%);
  margin:44px auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:26px;
  box-shadow:var(--shadow);
}

.form-group{
  margin-bottom:16px;
}

.label{
  display:block;
  margin-bottom:8px;
  color:#243447;
  font-weight:700;
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.form-control{
  width:100%;
  padding:14px;
  border:1px solid #d9e1eb;
  border-radius:12px;
  font-size:15px;
  background:#fff;
  color:#1b2430;
  outline:none;
}

textarea.form-control{
  resize:vertical;
  min-height:110px;
}

/* old support */
.cat-chip{
  display:inline-block;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  margin:6px;
  color:#334155;
  font-weight:700;
  box-shadow:0 6px 14px rgba(15,23,42,.04);
}

.listing-card .thumb{
  height:180px;
  object-fit:cover;
  border-radius:16px;
  width:100%;
  background:#f3f6fb;
}

/* tables */
.table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
}

.table th,
.table td{
  padding:12px;
  border-bottom:1px solid var(--line);
  vertical-align:top;
  color:#243447;
  word-break:break-word;
}

.table th{
  background:#f8fafc;
  color:#111827;
  text-align:left;
}

/* admin */
.admin-layout{
  display:grid;
  grid-template-columns:280px 1fr;
  min-height:100vh;
}

.sidebar{
  background:#ffffff;
  border-right:1px solid var(--line);
  padding:24px;
  position:sticky;
  top:0;
  height:100vh;
  overflow:auto;
}

.sidebar a{
  display:block;
  padding:12px 14px;
  border-radius:12px;
  color:#243447;
  margin-bottom:8px;
  background:#f8fafc;
  border:1px solid var(--line);
  font-weight:700;
  transition:.25s ease;
}

.sidebar a:hover{
  background:#fff4dc;
  color:#8a6200;
}

.content{
  padding:24px;
}

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.stat{
  padding:20px;
  border-radius:20px;
  background:#ffffff;
  border:1px solid var(--line);
  box-shadow:0 10px 24px rgba(15,23,42,.06);
}

.stat h3,
.stat p{
  margin:0;
}

/* badges */
.badge{
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  display:inline-block;
}

.badge.ok{
  background:rgba(46,204,113,.14);
  color:#1d7f49;
}

.badge.warn{
  background:rgba(246,183,60,.18);
  color:#8b5a00;
}

.badge.danger{
  background:rgba(255,107,107,.14);
  color:#c0392b;
}

/* messages */
.notice{
  padding:14px 16px;
  border-radius:14px;
  margin-bottom:16px;
}

.notice.ok{
  background:rgba(46,204,113,.10);
  color:#1d7f49;
}

.notice.err{
  background:rgba(255,107,107,.10);
  color:#c0392b;
}

.news-list li{
  margin-bottom:14px;
  color:#334155;
}

hr{
  border:none;
  border-top:1px solid var(--line);
}

/* footer */
.site-footer{
  padding:30px 0;
  background:#ffffff;
  border-top:1px solid var(--line);
  margin-top:40px;
  color:#425466;
}

/* special public page responsive fixes */
@media (max-width:980px){
  div.grid[style*="grid-template-columns:1.05fr .95fr"]{
    grid-template-columns:1fr !important;
  }

  div.grid[style*="grid-template-columns:1.1fr .9fr"]{
    grid-template-columns:1fr !important;
  }

  div.grid[style*="grid-template-columns:1.3fr .7fr"]{
    grid-template-columns:1fr !important;
  }

  .table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
  }

  .card img[style*="height:460px"]{
    height:260px !important;
  }

  .card img[style*="max-height:420px"]{
    max-height:260px !important;
  }
}

/* responsive */
@media (max-width:1200px){
  .hero-category-floating-grid{
    grid-template-columns:repeat(4,1fr);
  }

  .premium-listing-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .grid-news-home{
    grid-template-columns:1fr;
  }

  .home-team-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:1100px){
  .home-hero-content h1{
    font-size:48px;
  }

  .home-event-grid{
    grid-template-columns:1fr;
  }

  .home-two-box-grid{
    grid-template-columns:1fr;
  }

  .stats{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:900px){
  .hero-inner,
  .two-col,
  .admin-layout,
  .grid-3,
  .grid-4{
    grid-template-columns:1fr;
  }

  .sidebar{
    height:auto;
    position:relative;
  }

  .hero h1{
    font-size:34px;
  }

  .search-box{
    flex-direction:column;
  }

  .nav-wrap{
    align-items:center;
  }

  .mobile-menu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .main-nav{
    width:100%;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:16px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:var(--shadow-soft);
    margin-top:10px;
  }

  .main-nav.show{
    display:flex;
  }

  .home-hero-full{
    min-height:auto;
  }

  .home-hero-inner{
    padding:46px 0 0;
  }

  .home-hero-content h1{
    font-size:38px;
  }

  .home-hero-content p{
    font-size:16px;
  }

  .home-hero-search{
    flex-direction:column;
  }

  .home-hero-search-grid{
    grid-template-columns:1fr;
    width:100%;
  }

  .hero-category-floating-wrap{
    margin-top:48px;
  }

  .hero-category-floating-grid{
    grid-template-columns:repeat(4,1fr);
    gap:10px;
  }

  .hero-glass-category-card{
    min-height:82px;
    padding:12px 8px;
  }

  .hero-glass-icon{
    width:42px;
    height:42px;
    margin-bottom:8px;
  }

  .hero-glass-icon img{
    width:22px;
    height:22px;
  }

  .hero-glass-text{
    font-size:12px;
    line-height:1.25;
  }

  .premium-listing-grid{
    grid-template-columns:1fr;
  }

  .premium-news-card{
    grid-template-columns:1fr;
  }

  .premium-news-content{
    padding:0 20px 20px;
  }

  .home-team-grid{
    grid-template-columns:1fr;
  }

  .home-scroll-line-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .premium-listing-card h3{
    font-size:21px;
  }

  .premium-section-head h2{
    font-size:32px;
  }

  .home-event-content h3,
  .premium-news-content h3{
    font-size:21px;
  }
}

@media (max-width:600px){
  .container{
    width:min(94%,94%);
  }

  .brand{
    font-size:18px;
  }

  .brand img{
    width:46px;
    height:46px;
  }

  .home-hero-content{
    padding:14px 2px 6px;
  }

  .home-hero-content h1{
    font-size:31px;
    line-height:1.16;
  }

  .home-hero-content p{
    font-size:15px;
    line-height:1.7;
  }

  .hero-category-floating-grid{
    grid-template-columns:repeat(4,1fr);
    gap:8px;
  }

  .hero-glass-category-card{
    min-height:76px;
    padding:10px 6px;
    border-radius:20px;
  }

  .hero-glass-icon{
    width:38px;
    height:38px;
  }

  .hero-glass-text{
    font-size:11px;
  }

  .premium-section{
    padding:54px 0;
  }

  .premium-section-head h2{
    font-size:28px;
  }

  .home-download-card h2,
  .home-support-card h2{
    font-size:28px;
  }

  .home-event-card{
    grid-template-columns:1fr;
  }

  .stats{
    grid-template-columns:1fr;
  }

  .content{
    padding:16px;
  }

  .card{
    padding:18px;
    border-radius:20px;
  }

  .premium-listing-image{
    height:210px;
  }

  .premium-news-placeholder{
    min-height:140px;
  }

  .table th,
  .table td{
    padding:10px;
    font-size:13px;
  }

  .btn,
  button.btn,
  .premium-outline-btn{
    width:100%;
  }

  .home-scroll-line-inner .btn{
    width:auto;
  }
}