.elementor-8491 .elementor-element.elementor-element-867ac14{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d58b4f4 */css = r"""/* =========================================================
   ART PORTAL - WORDPRESS SAFE CSS
   Cara pakai:
   1) Balut semua HTML portal anda dengan:
      <div class="art-portal"> ... </div>
   2) Paste CSS ini ke:
      WordPress Customizer > Additional CSS
      ATAU Elementor Custom CSS
   3) CSS ini di-scope bawah .art-portal supaya theme WP tak kacau
   ========================================================= */

.art-portal,
.art-portal *{
  box-sizing:border-box;
}

.art-portal{
  --ap-primary:#1d4ed8;
  --ap-primary2:#0ea5e9;
  --ap-text:#15224d;
  --ap-soft:#68759a;
  --ap-line:rgba(70,95,187,.12);
  --ap-shadow-lg:0 18px 40px rgba(43,71,163,.08);
  --ap-shadow-md:0 12px 28px rgba(43,71,163,.08);
  --ap-shadow-sm:0 10px 20px rgba(43,71,163,.06);
  --ap-radius-xl:28px;
  --ap-radius-lg:22px;
  --ap-radius-md:18px;
  --ap-radius-sm:14px;

  position:relative;
  margin:0;
  color:var(--ap-text);
  font-family:Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.10), transparent 28%),
    radial-gradient(circle at top right, rgba(34,211,238,.10), transparent 24%),
    linear-gradient(180deg, #f6f8ff 0%, #edf2ff 100%);
  overflow-x:hidden;
  line-height:1.5;
}

.art-portal img{
  max-width:100%;
  display:block;
}

.art-portal a,
.art-portal button{
  -webkit-tap-highlight-color:transparent;
}

.art-portal .bg-orb{
  position:fixed;
  border-radius:50%;
  filter:blur(80px);
  opacity:.28;
  pointer-events:none;
  z-index:0;
}
.art-portal .orb1{ width:260px; height:260px; background:#60a5fa; top:40px; left:-90px; }
.art-portal .orb2{ width:220px; height:220px; background:#22d3ee; top:220px; right:-70px; }
.art-portal .orb3{ width:240px; height:240px; background:#93c5fd; bottom:80px; left:18%; }

.art-portal .container{
  width:min(1180px, calc(100% - 28px));
  margin:0 auto;
  position:relative;
  z-index:1;
}

.art-portal .glass{
  background:rgba(255,255,255,.84);
  border:1px solid var(--ap-line);
  border-radius:var(--ap-radius-xl);
  box-shadow:
    0 18px 40px rgba(43,71,163,.08),
    inset 0 1px 0 rgba(255,255,255,.45);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

/* ===================== TOPBAR ===================== */
.art-portal .topbar{
  margin-top:18px;
  padding:16px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  position:relative;
  z-index:2000;
  overflow:visible;
}

.art-portal .brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.art-portal .brand-name{
  font-size:24px;
  font-weight:900;
  color:var(--ap-primary);
  line-height:1;
}

.art-portal .brand-sub{
  font-size:13px;
  color:#65739c;
  margin-top:4px;
}

.art-portal .nav{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  justify-content:center;
}

.art-portal .nav a{
  text-decoration:none;
  color:#475480;
  font-size:14px;
  font-weight:700;
  position:relative;
  transition:.2s ease;
}

.art-portal .nav a:hover{
  color:var(--ap-primary);
}

.art-portal .nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--ap-primary), var(--ap-primary2));
  transition:width .2s ease;
}

.art-portal .nav a:hover::after{
  width:100%;
}

.art-portal .topbar-actions{
  display:flex;
  align-items:center;
  gap:12px;
  position:relative;
  z-index:2100;
  overflow:visible;
}

.art-portal .lang-switcher{
  position:relative;
  z-index:2200;
  overflow:visible;
}

.art-portal .lang-toggle{
  min-width:130px;
  border:1px solid rgba(37,99,235,.10);
  border-radius:14px;
  padding:12px 14px;
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  color:var(--ap-primary);
  background:#eef4ff;
  box-shadow:0 10px 22px rgba(43,71,163,.06);
}

.art-portal .lang-menu{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  min-width:180px;
  background:rgba(255,255,255,.99);
  border:1px solid rgba(70,95,187,.12);
  border-radius:16px;
  box-shadow:0 18px 32px rgba(43,71,163,.12);
  padding:8px;
  display:none;
  z-index:9999;
}

.art-portal .lang-menu.show{ display:block; }

.art-portal .lang-menu button{
  width:100%;
  border:0;
  background:transparent;
  text-align:left;
  padding:11px 12px;
  border-radius:12px;
  font-size:14px;
  font-weight:700;
  color:#213173;
  cursor:pointer;
}

.art-portal .lang-menu button:hover{
  background:#eef4ff;
}

/* ===================== BUTTONS ===================== */
.art-portal .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:0;
  border-radius:16px;
  padding:14px 20px;
  font-weight:800;
  cursor:pointer;
  transition:.2s ease;
  text-align:center;
}

.art-portal .btn:hover{
  transform:translateY(-2px);
}

.art-portal .btn-primary{
  color:#fff;
  background:linear-gradient(90deg, var(--ap-primary), var(--ap-primary2));
  box-shadow:0 16px 28px rgba(29,78,216,.22);
}

.art-portal .btn-secondary{
  color:var(--ap-primary);
  background:#eef4ff;
  border:1px solid rgba(37,99,235,.10);
}

/* ===================== HERO ===================== */
.art-portal .hero{
  margin-top:20px;
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:20px;
}

.art-portal .hero-left,
.art-portal .hero-right{
  padding:30px;
}

.art-portal .pill{
  display:inline-block;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(37,99,235,.08);
  color:var(--ap-primary);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.art-portal .hero-left h1{
  font-size:58px;
  line-height:1.03;
  margin:16px 0 14px;
  color:#13204b;
  letter-spacing:-0.02em;
}

.art-portal .gradient-text{
  background:linear-gradient(90deg, var(--ap-primary), var(--ap-primary2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.art-portal .hero-left p{
  margin:0;
  color:#55658f;
  font-size:17px;
  line-height:1.8;
  max-width:580px;
}

.art-portal .hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.art-portal .hero-stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:24px;
}

.art-portal .mini-card{
  padding:16px;
  border-radius:20px;
  background:linear-gradient(180deg, #f7faff, #ffffff);
  border:1px solid rgba(55,85,190,.10);
  transition:.2s ease;
  box-shadow:var(--ap-shadow-sm);
}

.art-portal .mini-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 28px rgba(43,71,163,.10);
}

.art-portal .mini-card strong{
  display:block;
  color:var(--ap-primary);
  font-size:19px;
  margin-bottom:6px;
}

.art-portal .mini-card span{
  color:#627198;
  font-size:13px;
  line-height:1.6;
}

/* ===================== DASHBOARD ===================== */
.art-portal .dashboard-title{
  text-align:center;
  font-size:26px;
  font-weight:900;
  color:#21318a;
  margin-bottom:16px;
}

.art-portal .price-box,
.art-portal .claim-box{
  background:linear-gradient(180deg, #f8faff, #f0f4ff);
  border:1px solid rgba(73,101,203,.14);
  border-radius:24px;
  padding:18px;
  box-shadow:var(--ap-shadow-sm);
}

.art-portal .claim-box{ margin-top:14px; }

.art-portal .active-panel-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:12px;
}

.art-portal .active-panel-label{
  color:#3347a3;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  margin-bottom:8px;
}

.art-portal .active-panel-main{
  font-size:44px;
  font-weight:900;
  color:#16255f;
  letter-spacing:-0.03em;
  line-height:1;
}

.art-portal .active-panel-sub{
  margin-top:8px;
  color:#65739a;
  font-size:14px;
}

.art-portal .active-up{
  color:#16a34a;
  font-weight:800;
  margin-left:6px;
}

.art-portal .live-badge{
  white-space:nowrap;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(34,197,94,.10);
  color:#16a34a;
  border:1px solid rgba(34,197,94,.16);
  font-size:12px;
  font-weight:800;
}

.art-portal .customer-chart-wrap{
  width:100%;
  height:220px;
  margin-top:16px;
  overflow:hidden;
  border-radius:20px;
  background:linear-gradient(180deg, #fbfdff, #eef4ff);
  border:1px solid rgba(73,101,203,.12);
  position:relative;
}

.art-portal .customer-chart-svg{
  width:100%;
  height:100%;
  display:block;
}

.art-portal .customer-chart-note{
  position:absolute;
  left:16px;
  bottom:14px;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  color:var(--ap-primary);
  background:rgba(255,255,255,.82);
  border:1px solid rgba(37,99,235,.10);
  box-shadow:0 8px 18px rgba(43,71,163,.08);
}

.art-portal .active-stats-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.art-portal .active-stat-card{
  padding:16px;
  border-radius:18px;
  background:linear-gradient(180deg, #f7f3ff, #ffffff);
  border:1px solid rgba(95,109,210,.12);
  text-align:center;
  box-shadow:var(--ap-shadow-sm);
}

.art-portal .active-stat-card span{
  display:block;
  font-size:14px;
  color:#61709a;
  margin-bottom:8px;
}

.art-portal .active-stat-card strong{
  display:block;
  font-size:26px;
  color:#17245d;
  letter-spacing:-0.02em;
}

.art-portal .active-stat-card small{
  display:block;
  margin-top:6px;
  color:#7a86a8;
  font-size:12px;
}

.art-portal .active-desc{
  text-align:center;
  color:#6a7598;
  font-size:14px;
  line-height:1.7;
  margin:14px 0;
}

/* ===================== COMMON SECTIONS ===================== */
.art-portal .section{
  margin-top:20px;
  padding:24px;
}

.art-portal .section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}

.art-portal .eyebrow{
  display:inline-block;
  color:#2563eb;
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:8px;
}

.art-portal .section-head h2{
  margin:0;
  font-size:34px;
  color:#13204b;
  letter-spacing:-0.02em;
}

/* ===================== TICKER ===================== */
.art-portal .ticker-wrap{
  overflow:hidden;
  white-space:nowrap;
  border-radius:18px;
  background:linear-gradient(180deg, #f7faff, #ffffff);
  border:1px solid rgba(67,95,182,.10);
  padding:14px 0;
  box-shadow:var(--ap-shadow-sm);
}

.art-portal .ticker-track{
  display:inline-flex;
  gap:42px;
  white-space:nowrap;
  padding-left:100%;
  animation:apTickerMove 46s linear infinite;
}

.art-portal .ticker-wrap:hover .ticker-track{
  animation-play-state:paused;
}

.art-portal .ticker-item{
  position:relative;
  padding-left:18px;
  font-size:16px;
  font-weight:700;
  color:#213173;
}

.art-portal .ticker-item::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#16a34a;
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
}

@keyframes apTickerMove{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-100%); }
}

/* ===================== PROMO ===================== */
.art-portal .promo-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
}

.art-portal .promo-feature{
  min-height:340px;
  padding:26px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(34,211,238,.18), transparent 30%),
    linear-gradient(135deg, #18308f 0%, #0d1e64 60%, #0f214f 100%);
  color:#fff;
  border-radius:28px;
  box-shadow:0 18px 34px rgba(15,33,79,.20);
}

.art-portal .promo-feature::after{
  content:"";
  position:absolute;
  right:-50px;
  bottom:-50px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.15), transparent 65%);
}

.art-portal .promo-badge{
  display:inline-block;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  margin-bottom:14px;
}

.art-portal .promo-feature h3{
  font-size:48px;
  line-height:1;
  margin:0 0 10px;
  letter-spacing:-0.03em;
}

.art-portal .promo-feature .big-sub{
  font-size:22px;
  font-weight:800;
  margin-bottom:10px;
}

.art-portal .promo-feature p{
  max-width:500px;
  color:rgba(255,255,255,.84);
  line-height:1.8;
  margin:0 0 18px;
}

.art-portal .promo-side{
  display:grid;
  gap:16px;
}

.art-portal .promo-card{
  padding:22px;
  border-radius:24px;
  background:linear-gradient(180deg, #ffffff, #f6f9ff);
  border:1px solid rgba(66,92,188,.12);
  box-shadow:0 10px 24px rgba(43,71,163,.06);
  transition:.2s ease;
}

.art-portal .promo-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 30px rgba(43,71,163,.10);
}

.art-portal .promo-card span{
  display:inline-block;
  padding:7px 11px;
  border-radius:999px;
  background:#eef4ff;
  color:#2450c4;
  font-size:12px;
  font-weight:800;
  margin-bottom:10px;
}

.art-portal .promo-card h4{
  margin:0 0 8px;
  font-size:28px;
  color:#16245e;
}

.art-portal .promo-card p{
  margin:0;
  color:#68759a;
  line-height:1.7;
  font-size:14px;
}

/* ===================== STEPS / BENEFITS ===================== */
.art-portal .steps-grid,
.art-portal .benefits-grid,
.art-portal .categories-grid{
  display:grid;
  gap:16px;
}

.art-portal .steps-grid{
  grid-template-columns:repeat(4, 1fr);
}

.art-portal .step-card,
.art-portal .benefit-card{
  padding:20px;
  transition:.2s ease;
}

.art-portal .step-card:hover,
.art-portal .benefit-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 30px rgba(43,71,163,.10);
}

.art-portal .step-no{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg, var(--ap-primary), #22d3ee);
  margin-bottom:14px;
  box-shadow:0 10px 20px rgba(29,78,216,.20);
}

.art-portal .step-card h3{
  margin:0 0 8px;
  font-size:22px;
  color:#16245e;
}

.art-portal .step-card p{
  margin:0;
  font-size:14px;
  color:#68759a;
  line-height:1.7;
}

.art-portal .benefits-grid,
.art-portal .categories-grid{
  grid-template-columns:repeat(4, 1fr);
}

.art-portal .benefit-card,
.art-portal .category-card{
  padding:20px;
}

.art-portal .benefit-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-size:24px;
  background:linear-gradient(135deg, #dbeafe, #ecfeff);
  margin-bottom:14px;
}

.art-portal .benefit-card h3,
.art-portal .category-card h3{
  margin:0 0 8px;
  font-size:22px;
  color:#16245e;
}

.art-portal .benefit-card p{
  margin:0;
  font-size:14px;
  color:#68759a;
  line-height:1.7;
}

/* ===================== IMAGE CARD / GAME SUPPORT ===================== */
.art-portal .compact-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}

.art-portal .image-only{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  height:180px;
  background:#000;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease;
  padding:0;
  box-shadow:var(--ap-shadow-md);
  border:1px solid rgba(67,95,182,.12);
}

.art-portal .image-only:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 32px rgba(43,71,163,.14);
}

.art-portal .image-only img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease, filter .35s ease;
}

.art-portal .image-only:hover img{
  transform:scale(1.08);
  filter:saturate(1.05);
}

.art-portal .image-only::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.12), transparent 30%);
  z-index:1;
  pointer-events:none;
}

.art-portal .image-only::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.65) 100%);
  pointer-events:none;
  z-index:1;
}

.art-portal .play-btn{
  position:absolute;
  bottom:10px;
  left:50%;
  transform:translateX(-50%);
  padding:8px 14px;
  font-size:13px;
  border-radius:10px;
  font-weight:800;
  text-decoration:none;
  color:#fff;
  background:linear-gradient(90deg, var(--ap-primary), var(--ap-primary2));
  box-shadow:0 10px 20px rgba(29,78,216,.35);
  z-index:2;
  min-width:110px;
  text-align:center;
  white-space:nowrap;
  transition:.2s ease;
}

.art-portal .image-only:hover .play-btn{
  transform:translateX(-50%) translateY(-2px);
}

/* ===================== REVIEWS ===================== */
.art-portal .reviews-wrap{
  overflow:hidden;
  position:relative;
  mask-image:linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image:linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.art-portal .reviews-track{
  display:flex;
  gap:16px;
  width:max-content;
  animation:apReviewsMove 30s linear infinite;
}

.art-portal .reviews-wrap:hover .reviews-track{
  animation-play-state:paused;
}

.art-portal .review-card{
  width:320px;
  flex:0 0 auto;
  padding:18px;
  border-radius:22px;
  background:linear-gradient(180deg, #ffffff, #f7f9ff);
  border:1px solid rgba(64,89,188,.12);
  box-shadow:0 10px 22px rgba(43,71,163,.05);
}

.art-portal .review-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.art-portal .avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg, var(--ap-primary), #22d3ee);
  box-shadow:0 10px 18px rgba(29,78,216,.18);
}

.art-portal .review-top strong{
  display:block;
  color:#213173;
  margin-bottom:4px;
}

.art-portal .review-top span{
  color:#f59e0b;
  font-size:14px;
}

.art-portal .review-card p{
  margin:0;
  color:#68759a;
  font-size:14px;
  line-height:1.7;
}

@keyframes apReviewsMove{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* ===================== FINAL CTA ===================== */
.art-portal .final-cta{
  margin:20px 0 100px;
  padding:26px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:20px;
  align-items:center;
}

.art-portal .final-cta h2{
  margin:0 0 10px;
  font-size:38px;
  color:#14225a;
  letter-spacing:-0.02em;
}

.art-portal .final-cta p{
  margin:0;
  color:#65729a;
  line-height:1.8;
}

.art-portal .cta-stack{
  display:grid;
  gap:12px;
}

.art-portal .mobile-sticky-btn{
  display:none;
}

/* ===================== LANGUAGE MODAL ===================== */
.art-portal .lang-modal{
  position:fixed;
  inset:0;
  background:rgba(9,18,46,.62);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:16px;
}

.art-portal .lang-modal.hidden{
  display:none;
}

.art-portal .lang-box{
  width:100%;
  max-width:420px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(70,95,187,.12);
  border-radius:26px;
  box-shadow:0 24px 60px rgba(17,34,84,.18);
  padding:24px;
  text-align:center;
}

.art-portal .lang-box h2{
  margin:0 0 8px;
  color:#13204b;
  font-size:30px;
}

.art-portal .lang-box p{
  margin:0 0 18px;
  color:#66739a;
  line-height:1.7;
  font-size:14px;
}

.art-portal .lang-buttons{
  display:grid;
  gap:12px;
}

.art-portal .lang-btn{
  width:100%;
  border:0;
  border-radius:16px;
  padding:14px 16px;
  font-weight:800;
  cursor:pointer;
  font-size:15px;
  transition:.2s ease;
  background:linear-gradient(90deg, var(--ap-primary), var(--ap-primary2));
  color:#fff;
  box-shadow:0 14px 24px rgba(29,78,216,.18);
}

.art-portal .lang-btn:hover{
  transform:translateY(-2px);
}

/* ===================== WORDPRESS SAFE RESPONSIVE ===================== */
@media (max-width: 1024px){
  .art-portal .hero,
  .art-portal .promo-grid,
  .art-portal .final-cta{
    grid-template-columns:1fr;
  }

  .art-portal .steps-grid,
  .art-portal .benefits-grid,
  .art-portal .compact-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .art-portal .hero-stats{
    grid-template-columns:1fr;
  }

  .art-portal .hero-left h1{
    font-size:48px;
  }

  .art-portal .topbar{
    flex-wrap:wrap;
  }

  .art-portal .nav{
    width:100%;
    justify-content:flex-start;
  }
}

@media (max-width: 768px){
  .art-portal .container{
    width:min(100%, calc(100% - 18px));
  }

  .art-portal .nav{
    display:none;
  }

  .art-portal .topbar{
    padding:14px 14px;
    gap:12px;
  }

  .art-portal .topbar-actions{
    width:100%;
    justify-content:space-between;
    align-items:stretch;
    overflow:visible;
  }

  .art-portal .brand-name{
    font-size:20px;
  }

  .art-portal .brand-sub{
    font-size:12px;
  }

  .art-portal .hero-left,
  .art-portal .hero-right,
  .art-portal .section,
  .art-portal .final-cta{
    padding:18px;
    border-radius:22px;
  }

  .art-portal .hero-left h1{
    font-size:36px;
    line-height:1.08;
    margin:14px 0 12px;
  }

  .art-portal .section-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .art-portal .section-head h2{
    font-size:26px;
    line-height:1.15;
  }

  .art-portal .active-panel-main{
    font-size:34px;
  }

  .art-portal .active-panel-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .art-portal .customer-chart-wrap{
    height:180px;
  }

  .art-portal .steps-grid,
  .art-portal .benefits-grid,
  .art-portal .compact-grid,
  .art-portal .final-cta,
  .art-portal .active-stats-grid{
    grid-template-columns:1fr;
  }

  .art-portal .promo-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .art-portal .promo-feature{
    min-height:auto;
    padding:20px;
    border-radius:22px;
  }

  .art-portal .promo-feature h3{
    font-size:38px;
  }

  .art-portal .promo-card{
    padding:18px;
    border-radius:20px;
  }

  .art-portal .ticker-wrap{
    padding:12px 0;
  }

  .art-portal .ticker-track{
    gap:26px;
    animation-duration:52s;
  }

  .art-portal .ticker-item{
    font-size:14px;
    padding-left:16px;
  }

  .art-portal .review-card{
    width:260px;
    padding:16px;
  }

  .art-portal .image-only{
    height:190px;
  }

  .art-portal .cta-stack,
  .art-portal .hero-actions{
    width:100%;
    flex-direction:column;
  }

  .art-portal .cta-stack .btn,
  .art-portal .hero-actions .btn,
  .art-portal .top-btn,
  .art-portal .claim-btn,
  .art-portal .lang-toggle{
    width:100%;
  }

  .art-portal .lang-menu{
    left:0;
    right:auto;
    min-width:100%;
  }

  .art-portal .mobile-sticky-btn{
    position:fixed;
    left:12px;
    right:12px;
    bottom:12px;
    z-index:99;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    padding:15px;
    border-radius:16px;
    background:linear-gradient(90deg, var(--ap-primary), var(--ap-primary2));
    color:#fff;
    font-weight:900;
    box-shadow:0 16px 30px rgba(29,78,216,.26);
  }

  .art-portal .top-btn{ display:none; }
  .art-portal .bg-orb{ display:none; }
  .art-portal .final-cta{ margin-bottom:84px; }
}

@media (max-width: 480px){
  .art-portal .hero-left h1{
    font-size:32px;
  }

  .art-portal .section-head h2{
    font-size:23px;
  }

  .art-portal .dashboard-title{
    font-size:22px;
  }

  .art-portal .active-panel-main{
    font-size:30px;
  }

  .art-portal .mini-card strong,
  .art-portal .benefit-card h3,
  .art-portal .step-card h3{
    font-size:19px;
  }

  .art-portal .promo-feature h3{
    font-size:34px;
  }

  .art-portal .review-card{
    width:230px;
  }

  .art-portal .lang-box{
    padding:20px;
    border-radius:22px;
  }

  .art-portal .lang-box h2{
    font-size:24px;
  }

  .art-portal .image-only{
    height:175px;
  }

  .art-portal .play-btn{
    min-width:105px;
    font-size:12px;
    padding:8px 12px;
  }
}
"""
path = "/mnt/data/art_portal_wordpress_safe.css"
with open(path, "w", encoding="utf-8") as f:
    f.write(css)
print(path)/* End custom CSS */