﻿:root{
  --brand-blue:#3d4cf4;
  --brand-purple:#7b61ff;
  --brand-pink:#ff2862;
  --brand-gradient:linear-gradient(135deg,var(--brand-blue) 0%,var(--brand-purple) 52%,var(--brand-pink) 100%);
  --secondary-gradient:linear-gradient(135deg,#16a34a 0%,#10b981 55%,#14b8a6 100%);
  --tertiary-gradient:linear-gradient(135deg,#f97316 0%,#f59e0b 55%,#facc15 100%);
  --ink:#111827;
  --text:#111827;
  --muted:#6b7280;
  --accent:var(--brand-blue);
  --accent-hover:#2f3ed8;
  --surface:#f8f9fc;
  --border:#e5e7eb;
  --white:#ffffff;
  --prompt-image-ratio:4/5;
  --radius:18px;
  --shadow:0 16px 40px rgba(30,35,55,.09)
}
*{
  box-sizing:border-box
}
html{
  scroll-behavior:smooth
}
body{
  margin:0;
  color:var(--text);
  background:var(--white);
  font:16px/1.6 Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif
}
img{
  display:block;
  max-width:100%;
  -webkit-user-drag:none;
  user-select:none
}
a{
  color:inherit;
  text-decoration:none
}
button,input,textarea,select{
  font:inherit
}
button,a{
  touch-action:manipulation
}
:focus-visible{
  outline:3px solid rgba(61,76,244,.28);
  outline-offset:3px
}
.container{
  width:min(80rem,calc(100% - 32px));
  margin-inline:auto
}
.skip-link{
  position:fixed;
  z-index:99;
  left:16px;
  top:-60px;
  background:var(--ink);
  color:#fff;
  padding:10px 14px;
  border-radius:8px
}
.skip-link:focus{
  top:16px
}
.site-header{
  position:relative;
  z-index:20;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(12px)
}
.header-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  gap:24px
}
.brand{
  font-size:1.2rem;
  font-weight:850;
  letter-spacing:-.04em
}
.brand img{
    max-height: 161px;
}
.header-inner nav{
  display:flex;
  gap:22px;
  margin-left:auto
}
.header-inner nav a:hover{
  color:var(--accent)
}
.header-search input{
  width:210px;
  padding:10px 14px;
  border:1px solid var(--border);
  border-radius:999px
}
.menu-toggle{
  display:none;
  background:transparent;
  border:1px solid var(--border);
  border-radius:9px;
  padding:8px 11px
}
.hero{
  padding:100px 0 80px;
  background:radial-gradient(circle at 85% 15%,rgba(123,97,255,.13),transparent 32%),linear-gradient(145deg,#fff,#f8f9fc)
}
.hero .container{
  max-width:920px;
  text-align:center
}
.eyebrow{
  display:block;
  color:var(--accent);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase
}
.hero h1,.page-head h1,.detail-content h1{
  font-size:clamp(2.4rem,6vw,4.5rem);
  line-height:1.04;
  letter-spacing:-.055em;
  margin:14px 0 22px
}
.hero p{
  max-width:700px;
  margin:0 auto 34px;
  font-size:1.15rem;
  color:var(--muted)
}
.hero .hero-models{
  margin:-8px auto 14px;
  color:var(--brand-blue);
  background:var(--brand-gradient);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  font-size:4.2rem;
  line-height:1.05;
  letter-spacing:.01em
}
.hero-models span{
  margin-inline:5px;
  font-weight:650
}
.hero-search{
  display:flex;
  gap:10px;
  max-width:680px;
  margin:0 auto
}
.hero-search input{
  min-width:0;
  flex:1;
  padding:15px 18px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:11px;
  padding:13px 18px;
  background:var(--brand-gradient);
  color:#fff;
  font-weight:750;
  cursor:pointer;
  transition:transform .15s,box-shadow .15s
}
.button:hover{
  box-shadow:0 9px 24px rgba(61,76,244,.24)
}
.button:active{
  transform:scale(.98)
}
.button-secondary{
  background:var(--ink)
}
.button-secondary:hover{
  background:#253047
}
.section{
  padding-top:72px;
  padding-bottom:72px
}
.surface{
  background:var(--surface)
}
.section-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  margin-bottom:28px
}
.section-heading h2{
  font-size:clamp(1.8rem,4vw,2.4rem);
  line-height:1.15;
  letter-spacing:-.04em;
  margin:7px 0 0
}
.section-heading>a{
  color:var(--accent);
  font-weight:700
}
.prompt-browser-section{
  background:linear-gradient(180deg,#f2f6ff 0%,var(--surface) 100%)
}
.prompt-tabs{
  display:flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  max-width:100%;
  margin:0 auto 30px;
  padding:6px;
  border:1px solid rgba(123,97,255,.1);
  border-radius:999px;
  background:#fff;
  box-shadow:0 12px 28px rgba(61,76,244,.08)
}
.prompt-tab{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  padding:10px 16px;
  border:0;
  border-radius:999px;
  background:transparent;
  color:#526078;
  font:750 .9rem/1 Inter,ui-sans-serif,system-ui,sans-serif;
  cursor:pointer
}
.prompt-tab.is-active{
  background:var(--brand-gradient);
  color:#fff;
  box-shadow:0 7px 18px rgba(61,76,244,.2)
}
.prompt-tab:focus-visible{
  outline:3px solid rgba(123,97,255,.25);
  outline-offset:2px
}
.prompt-tab-panel[hidden]{
  display:none
}
.prompt-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px
}
.prompt-card{
  position:relative;
  aspect-ratio:var(--prompt-image-ratio);
  overflow:hidden;
  background:var(--ink);
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:0 14px 34px rgba(17,24,39,.09);
  transition:transform .15s,box-shadow .15s
}
.prompt-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow)
}
.card-image{
  position:absolute;
  inset:0;
  display:block;
  background:var(--surface);
  overflow:hidden
}
.card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .3s
}
.prompt-card:hover .card-image img{
  transform:scale(1.025)
}
.card-body{
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  z-index:2;
  padding:22px;
  border-radius:22px 22px 0 0;
  background:rgba(255,255,255,.9);
  box-shadow:0 -10px 30px rgba(17,24,39,.08);
  backdrop-filter:blur(12px)
}
.card-category{
  position:absolute;
  top:16px;
  left:16px;
  z-index:2;
  max-width:calc(100% - 90px);
  overflow:hidden;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  color:var(--ink);
  font-size:.72rem;
  font-weight:850;
  letter-spacing:.05em;
  text-overflow:ellipsis;
  text-transform:uppercase;
  white-space:nowrap;
  box-shadow:0 6px 18px rgba(17,24,39,.1)
}
.card-like-button{
  position:absolute;
  top:16px;
  right:16px;
  z-index:2;
  display:flex;
  align-items:center;
  flex-direction:column;
  justify-content:center;
  gap:2px;
  min-width:46px;
  min-height:60px;
  padding:8px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.95);
  color:var(--ink);
  box-shadow:0 6px 18px rgba(17,24,39,.12);
  cursor:pointer
}
.card-like-button i{
  font-size:1.15rem
}
.card-like-button.is-liked i{
  color:var(--brand-pink)
}
.card-like-button .like-count{
  font-size:.8rem;
  font-weight:800
}
.badge{
  display:inline-block;
  padding:5px 9px;
  border-radius:999px;
  background:var(--brand-gradient);
  color:#fff;
  font-size:.75rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.07em
}
.card-body h3{
  font-size:1.18rem;
  line-height:1.3;
  margin:0 0 5px
}
.card-body p{
  display:-webkit-box;
  overflow:hidden;
  color:var(--muted);
  font-size:.92rem;
  margin:0;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2
}
.card-footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:16px
}
.card-actions{
  display:flex;
  align-items:center;
  gap:9px
}
.card-copy-button,.card-share-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  cursor:pointer
}
.card-copy-button{
  gap:7px;
  padding:10px 15px;
  border-radius:999px;
  background:var(--brand-gradient);
  color:#fff;
  font-weight:800;
  box-shadow:0 8px 18px rgba(61,76,244,.22)
}
.card-share-button{
  width:40px;
  height:40px;
  padding:0;
  border:1px solid var(--border);
  border-radius:50%;
  background:#fff;
  color:#526078;
  box-shadow:0 5px 14px rgba(17,24,39,.07)
}
.card-author{
  color:var(--muted);
  font-size:.78rem;
  white-space:nowrap
}
.category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px
}
.category-card{
  position:relative;
  aspect-ratio:var(--prompt-image-ratio);
  overflow:hidden;
  border-radius:var(--radius);
  background:var(--ink);
  color:#fff
}
.category-card:after{
  content:"";
  position:absolute;
  inset:0;
}
.category-card img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}
.category-card span{
  position:absolute;
  z-index:1;
  left:18px;
  right:18px;
  bottom:16px
}
.category-card strong,.category-card small{
  display:block
}
.category-card small{
  opacity:.75
}
.page-head{
  padding-top:70px;
  padding-bottom:26px
}
.page-head h1{
  font-size:clamp(2.4rem,5vw,4rem);
  margin-bottom:12px
}
.page-head p{
  max-width:720px;
  color:var(--muted)
}
.breadcrumbs{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:.9rem;
  margin-bottom:28px
}
.breadcrumbs a:hover{
  color:var(--accent)
}
.prompt-detail{
  padding-top:42px;
  padding-bottom:42px
}
.detail-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:64px;
  align-items:start
}
.detail-image{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:var(--prompt-image-ratio);
  object-fit:cover;
  border-radius:24px
}
.prompt-category-badges{
  display:flex;
  flex-wrap:wrap;
  gap:7px
}
.hero-popular{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:7px;
  margin-top:18px;
  color:var(--muted);
  font-size:.92rem
}
.hero-popular strong{
  color:var(--ink)
}
.hero-popular a{
  color:var(--brand-blue);
  font-weight:750
}
.hero-popular a:hover{
  color:var(--brand-pink)
}
.hero-popular span{
  color:#c4c8d0
}
.header-login{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:9px 14px;
  border-radius:10px;
  background:var(--brand-gradient);
  color:#fff;
  font-weight:750
}
.header-premium{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:var(--brand-purple);
  font-size:.9rem;
  font-weight:800;
  white-space:nowrap
}
.header-premium i{
  color:#f59e0b
}
.header-premium:hover{
  color:var(--brand-pink)
}
.header-account{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.88rem
}
.header-account span{
  max-width:130px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.header-account button{
  border:0;
  background:transparent;
  color:var(--muted);
  cursor:pointer
}
.header-user-menu{position:relative}
.header-user-menu summary{display:grid;place-items:center;width:42px;height:42px;overflow:hidden;border-radius:50%;background:var(--brand-gradient);color:#fff;font-weight:850;cursor:pointer;list-style:none}
.header-user-menu summary::-webkit-details-marker{display:none}
.header-user-menu summary img{width:100%;height:100%;object-fit:cover}
.header-user-dropdown{position:absolute;top:52px;right:0;z-index:50;display:grid;min-width:210px;padding:10px;border:1px solid var(--border);border-radius:16px;background:#fff;box-shadow:0 18px 50px rgba(17,24,39,.16)}
.header-user-dropdown strong{padding:8px 10px;border-bottom:1px solid var(--border)}
.header-user-dropdown a,.header-user-dropdown button{display:flex;align-items:center;gap:9px;width:100%;padding:10px;border:0;border-radius:9px;background:none;color:var(--ink);text-align:left;cursor:pointer}
.header-user-dropdown a:hover,.header-user-dropdown button:hover{background:var(--surface)}
.header-user-dropdown form{margin:0}
.profile-page{padding-top:42px;padding-bottom:70px}
.profile-hero,.profile-panel,.profile-stats article{border:1px solid var(--border);background:#fff;box-shadow:var(--shadow)}
.profile-hero{display:flex;align-items:center;gap:22px;padding:28px;border-radius:24px}
.profile-avatar{display:grid;place-items:center;flex:0 0 92px;width:92px;height:92px;overflow:hidden;border-radius:28px;background:var(--brand-gradient);color:#fff;font-size:2rem;font-weight:900}
.profile-avatar img{width:100%;height:100%;object-fit:cover}
.profile-identity{min-width:0;flex:1}.profile-name-row,.profile-meta{display:flex;align-items:center;flex-wrap:wrap;gap:10px}
.profile-name-row h1{margin:0;font-size:2rem}.profile-identity>p{margin:3px 0;color:var(--muted)}.profile-meta{color:var(--muted);font-size:.88rem}
.provider-badge,.plan-badge{display:inline-flex;align-items:center;gap:6px;width:max-content;padding:5px 9px;border-radius:999px;background:#eef2ff;color:var(--brand-blue);font-size:.75rem;font-weight:800}
.provider-badge.connected,.provider-badge.google{background:#ecfdf5;color:#047857}.profile-edit{margin-left:auto}
.profile-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin:22px 0 52px}
.profile-stats article{display:grid;grid-template-columns:auto 1fr;gap:2px 12px;padding:20px;border-radius:18px}
.profile-stats i{grid-row:1/3;align-self:center;color:var(--brand-purple);font-size:1.3rem}.profile-stats strong{font-size:1.35rem}.profile-stats span{color:var(--muted);font-size:.85rem}
.profile-section{margin:54px 0}.profile-empty{padding:58px 24px;border:1px dashed #ccd3e0;border-radius:22px;background:linear-gradient(135deg,#f8f9fc,#f4f0ff);text-align:center}
.profile-empty.compact{padding:36px 20px}.profile-empty>i{color:var(--brand-purple);font-size:2.4rem}.profile-empty h3{margin:12px 0 5px;font-size:1.35rem}.profile-empty p{max-width:600px;margin:0 auto 20px;color:var(--muted)}
.library-tabs{display:flex;gap:8px;margin:-10px 0 26px;padding:6px;border-radius:999px;background:var(--surface);width:max-content;max-width:100%;overflow:auto}
.library-tabs a{padding:9px 16px;border-radius:999px;white-space:nowrap;font-weight:750}.library-tabs a.is-active{background:var(--brand-gradient);color:#fff}
.profile-two-column,.settings-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px;margin:46px 0 22px}.profile-panel{padding:26px;border-radius:22px}.profile-panel h2{margin-top:0}
.membership-panel{background:linear-gradient(145deg,#fff,#f6f2ff)}.membership-panel .button{margin-top:10px}
.activity-timeline{display:grid;gap:0}.activity-timeline>div{display:flex;gap:12px;padding:12px 0;border-bottom:1px solid var(--border)}.activity-timeline>div:last-child{border:0}
.activity-timeline i{display:grid;place-items:center;flex:0 0 34px;width:34px;height:34px;border-radius:50%;background:#f1efff;color:var(--brand-purple)}.activity-timeline p{margin:0}.activity-timeline small{display:block;color:var(--muted)}
.account-settings{margin-top:22px}.settings-grid{margin:0}.settings-grid form{display:grid;gap:13px}.settings-grid label{display:grid;gap:6px;font-weight:750}.settings-grid input{width:100%;padding:11px 12px;border:1px solid var(--border);border-radius:10px;background:var(--surface)}
.connected-accounts{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}.connected-accounts h3{width:100%;margin:0 0 5px}.purchase-cards{display:grid;gap:10px}.purchase-cards article{display:flex;justify-content:space-between;padding:15px;border-radius:12px;background:var(--surface)}
.danger-zone{display:flex;align-items:center;gap:12px;margin-top:22px;border-color:#fecaca}.danger-zone>div{flex:1}.danger-zone h2{color:#b42318;margin-bottom:2px}.danger-zone p{margin:0;color:var(--muted)}.danger-placeholder{background:#fee2e2;color:#991b1b}
.detail-content{
  position:sticky;
  top:105px
}
.detail-content h1{
  font-size:clamp(2.3rem,5vw,4rem)
}
.prompt-byline{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin:8px 0 0;
  color:var(--muted);
  font-size:.94rem
}
.prompt-byline strong{
  color:var(--brand-blue)
}
.prompt-box{
  margin:25px 0;
  padding:20px;
  border:1px solid var(--border);
  border-radius:15px;
  background:var(--surface)
}
.prompt-box-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px
}
.prompt-save-button{
  gap:8px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--ink);
  transform:translateY(-6px)
}
.prompt-save-button:hover,.prompt-save-button.is-saved{
  border-color:rgba(123,97,255,.35);
  background:#fff;
  color:var(--brand-purple);
  box-shadow:0 8px 20px rgba(61,76,244,.12)
}
.prompt-box h2{
  font-size:1rem;
  margin:0 0 12px
}
.prompt-box pre{
  margin:0;
  white-space:pre-wrap;
  word-break:break-word;
  font:inherit
}
.negative-prompt-section{
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid var(--border)
}
.negative-prompt-section h3{
  margin:0 0 10px;
  color:var(--muted);
  font-size:.9rem;
  font-weight:650
}
.negative-prompt-section h3 span{
  font-weight:500
}
.negative-prompt-section pre{
  color:var(--muted);
  font-size:.94rem
}
.prompt-box-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid var(--border)
}
.prompt-box-actions .copy-button{
  gap:8px;
  background:var(--brand-gradient);
  border-color:transparent;
  color:#fff;
  box-shadow:0 8px 20px rgba(61,76,244,.22)
}
.prompt-box-actions .like-button{
  gap:7px;
  margin-left:auto;
  background:var(--tertiary-gradient);
  color:#fff;
  box-shadow:0 8px 20px rgba(245,158,11,.24)
}
.prompt-box-actions .like-button:hover{
  box-shadow:0 10px 24px rgba(245,158,11,.32)
}
.prompt-box-actions .like-button.is-liked{
  filter:saturate(.82)
}
.like-count{
  min-width:1ch;
  font-variant-numeric:tabular-nums
}
.social-share-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-top:18px;
  padding:18px 20px;
  border:1px solid var(--border);
  border-radius:15px;
  background:var(--surface);
  box-shadow:var(--shadow)
}
.social-share-title{
  display:flex;
  align-items:center;
  gap:9px;
  font-size:1.05rem
}
.social-share-title i{
  color:var(--muted);
  font-size:1.05rem
}
.social-share-links{
  display:flex;
  align-items:center;
  gap:10px
}
.social-share-link{
  display:inline-grid;
  place-items:center;
  width:38px;
  height:38px;
  padding:0;
  border:0;
  border-radius:50%;
  color:#fff;
  font:800 1rem/1 Inter,ui-sans-serif,system-ui,sans-serif;
  cursor:pointer;
  transition:transform .15s,box-shadow .15s
}
.social-share-link:hover{
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 7px 16px rgba(17,24,39,.18)
}
.social-facebook{background:#1877f2}
.social-x{background:#111827}
.social-threads{background:#000}
.social-pinterest{background:#e60023}
.social-whatsapp{background:#20bd5a}
.social-copy{background:#9ca3af}
.content-sections{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  margin-top:56px
}
.content-section{
  padding:24px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface)
}
.content-section h2{
  margin-top:0;
  font-size:1.35rem
}
.content-section p{
  margin-bottom:0
}
.ad-slot{
  min-height:90px;
  margin-top:32px;
  margin-bottom:32px;
  padding:16px;
  border:1px dashed var(--border);
  text-align:center
}
.pagination{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:42px
}
.pagination a{
  display:grid;
  place-items:center;
  min-width:40px;
  height:40px;
  border:1px solid var(--border);
  border-radius:9px
}
.pagination a[aria-current]{
  background:var(--brand-gradient);
  border-color:transparent;
  color:#fff
}
.empty-state,.error-page{
  text-align:center;
  padding:80px 16px
}
.error-page{
  min-height:60vh
}
.error-code{
  font-size:clamp(5rem,20vw,11rem);
  line-height:1;
  font-weight:900;
  color:#ecebff
}
.account-page{
  display:grid;
  place-items:center;
  min-height:calc(100vh - 160px);
  padding-top:48px;
  padding-bottom:64px
}
.account-card{
  width:min(100%,520px);
  padding:34px 36px;
  border:1px solid var(--border);
  border-radius:24px;
  background:#fff;
  box-shadow:0 24px 70px rgba(61,76,244,.11);
  text-align:center
}
.account-logo{
  display:block;
  width:min(220px,75%);
  height:auto;
  margin:0 auto 18px
}
.account-card h1{
  margin:0;
  font-size:2rem
}
.account-card>p{
  margin:4px 0 24px;
  color:var(--muted)
}
.account-form{
  text-align:left
}
.account-form label,.account-label-row{
  display:block;
  margin:14px 0 6px;
  color:#8290aa;
  font-size:.72rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase
}
.account-label-row{
  display:flex;
  justify-content:space-between
}
.account-label-row label{margin:0}
.account-label-row a{color:var(--brand-blue)}
.account-input{
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 14px;
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--surface);
  color:#94a3b8
}
.account-input:focus-within{
  border-color:var(--brand-purple);
  box-shadow:0 0 0 3px rgba(123,97,255,.1)
}
.account-input input{
  width:100%;
  padding:12px 0;
  border:0;
  outline:0;
  background:transparent;
  font:inherit
}
.password-toggle{
  padding:8px;
  border:0;
  background:transparent;
  color:#94a3b8;
  cursor:pointer
}
.account-submit{
  width:100%;
  margin-top:24px
}
.account-divider{
  display:flex;
  align-items:center;
  gap:12px;
  margin:28px 0 20px;
  color:#94a3b8;
  font-size:.7rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase
}
.account-divider:before,.account-divider:after{
  content:"";
  flex:1;
  height:1px;
  background:var(--border)
}
.oauth-buttons{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:12px
}
.oauth-buttons a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px;
  border:1px solid var(--border);
  border-radius:12px;
  font-weight:750
}
.oauth-buttons .fa-google{color:#4285f4}
.oauth-buttons .fa-facebook{color:#1877f2}
.account-switch{margin-top:24px!important}
.modal-open{
  overflow:hidden
}
.save-signup-modal{
  position:fixed;
  inset:0;
  z-index:1000;
  display:grid;
  place-items:center;
  padding:20px
}
.save-signup-modal[hidden]{
  display:none
}
.save-signup-backdrop{
  position:absolute;
  inset:0;
  background:rgba(17,24,39,.55);
  backdrop-filter:blur(5px)
}
.save-signup-card{
  position:relative;
  z-index:1;
  width:min(100%,540px);
  max-height:calc(100vh - 40px);
  overflow-y:auto;
  padding:32px 38px;
  border:1px solid var(--border);
  border-radius:24px;
  background:#fff;
  box-shadow:0 28px 90px rgba(17,24,39,.24);
  text-align:center
}
.save-signup-card .account-logo{
  width:84px;
  margin-bottom:12px
}
.save-signup-card h2{
  margin:0;
  font-size:1.8rem
}
.save-signup-card>p{
  margin:6px auto 18px;
  color:var(--muted)
}
.save-signup-close{
  position:absolute;
  top:16px;
  right:16px;
  display:grid;
  width:38px;
  height:38px;
  place-items:center;
  border:1px solid var(--border);
  border-radius:50%;
  background:#fff;
  color:var(--muted);
  cursor:pointer
}
.save-signup-login{
  margin:18px 0 0!important;
  font-size:.92rem
}
.save-signup-login a{
  color:var(--brand-blue);
  font-weight:800
}
.account-switch a{color:var(--brand-blue);font-weight:800}
.account-alert{
  margin:18px 0;
  padding:11px 13px;
  border-radius:10px;
  text-align:left;
  font-size:.9rem
}
.account-error{background:#fff1f2;color:#be123c}
.account-success{background:#ecfdf5;color:#047857}
.contact-card{
  display:flex;
  align-items:flex-start;
  gap:18px;
  padding:24px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface)
}
.contact-card>i{
  display:grid;
  place-items:center;
  flex:0 0 46px;
  width:46px;
  height:46px;
  border-radius:50%;
  background:var(--brand-gradient);
  color:#fff;
  font-size:1.15rem
}
.contact-card h2{
  margin-bottom:5px
}
.contact-card .button{
  margin-top:7px;
  color:#fff;
  text-decoration:none
}
.contact-card .button:hover{
  color:#fff
}
.contact-page{
  min-height:65vh
}
.legal-page{
  width:min(900px,calc(100% - 32px));
  padding-top:64px;
  padding-bottom:72px
}
.legal-header{
  padding-bottom:28px;
  border-bottom:1px solid var(--border)
}
.legal-header h1{
  margin:7px 0 4px;
  font-size:clamp(2.5rem,6vw,4rem);
  line-height:1.08;
  letter-spacing:-.045em
}
.legal-header p{
  margin:0;
  color:var(--muted)
}
.legal-content{
  color:#374151
}
.legal-content section{
  padding-top:30px
}
.legal-content>p{
  margin-top:30px;
  font-size:1.05rem
}
.legal-content h2{
  margin:0 0 12px;
  color:var(--ink);
  font-size:1.45rem
}
.legal-content h3{
  margin:22px 0 7px;
  color:var(--ink);
  font-size:1.05rem
}
.legal-content p{
  margin:0 0 14px
}
.legal-content ul{
  display:grid;
  gap:8px;
  padding-left:22px
}
.legal-content a{
  color:var(--brand-blue);
  text-decoration:underline;
  text-underline-offset:3px
}
.pricing-section{
  overflow:hidden;
  background:linear-gradient(180deg,#fff 0%,var(--surface) 100%)
}
.pricing-heading{
  justify-content:center;
  text-align:center
}
.pricing-heading h1{
  margin:7px 0 0;
  font-size:clamp(2rem,4vw,3rem);
  line-height:1.15;
  letter-spacing:-.04em
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  align-items:stretch;
  padding:18px 8px 24px
}
.pricing-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-width:0;
  min-height:590px;
  padding:30px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 12px 32px rgba(17,24,39,.06)
}
.pricing-free{
  color:#374151
}
.pricing-monthly{
  border-color:var(--border)
}
.pricing-lifetime{
  z-index:1;
  border-color:var(--border)
}
.pricing-card-head h3{
  margin:0;
  font-size:1.25rem
}
.pricing-title-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px
}
.pricing-price{
  display:flex;
  align-items:baseline;
  gap:7px;
  margin-top:22px
}
.pricing-price strong{
  color:var(--ink);
  font-size:clamp(2.5rem,4vw,3.4rem);
  line-height:1;
  letter-spacing:-.055em
}
.pricing-price span{
  color:var(--muted);
  font-weight:650
}
.pricing-badge,.pricing-small-badge,.pricing-popular-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  width:max-content;
  border-radius:999px;
  font-size:.7rem;
  font-weight:850;
  letter-spacing:.04em;
  text-transform:uppercase
}
.premium-badge{
  padding:6px 9px;
  background:var(--brand-gradient);
  color:#fff
}
.pricing-small-badge{
  margin-top:14px;
  padding:5px 9px;
  background:#eeecff;
  color:var(--brand-purple)
}
.early-bird-badge{
  background:#fff4dc;
  color:#b45309
}
.pricing-popular-badge{
  position:absolute;
  top:-15px;
  right:24px;
  padding:8px 12px;
  background:var(--secondary-gradient);
  color:#fff;
  box-shadow:0 8px 20px rgba(16,185,129,.24)
}
.pricing-features{
  display:grid;
  gap:13px;
  margin:28px 0;
  padding:0;
  list-style:none
}
.pricing-features li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#4b5563;
  font-size:.92rem;
  line-height:1.45
}
.pricing-features i{
  flex:0 0 auto;
  margin-top:3px;
  color:var(--brand-purple)
}
.pricing-free .pricing-features i{
  color:#9ca3af
}
.pricing-cta{
  width:100%;
  margin-top:auto;
  text-align:center
}
.pricing-free-cta{
  border:1px solid var(--border);
  background:#fff;
  color:var(--ink)
}
.pricing-free-cta:hover{
  border-color:#cbd5e1;
  box-shadow:0 8px 18px rgba(17,24,39,.08)
}
.pricing-paid-cta{
  background:var(--brand-gradient)
}
.pricing-paid-cta:hover{
  background:var(--brand-gradient);
  box-shadow:0 9px 24px rgba(61,76,244,.24)
}
.pricing-note{
  margin:12px 0 0;
  color:var(--muted);
  font-size:.78rem;
  text-align:center
}
.site-footer{
  width:min(1180px,calc(100% - 32px));
  margin:40px auto 20px;
  padding:46px 0 24px;
  background:var(--white);
  color:var(--text);
  border-top:1px solid var(--border)
}
.site-footer .container{
  width:100%
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr repeat(3,1fr);
  gap:40px
}
.footer-grid a,.footer-grid strong{
  display:block;
  margin-bottom:9px
}
.footer-grid p,.footer-grid a:not(.brand){
  color:var(--muted)
}
.footer-grid strong{
  color:var(--ink);
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase
}
.footer-grid a:not(.brand):hover{
  color:var(--accent)
}
.copyright{
  border-top:1px solid var(--border);
  margin-top:32px;
  padding-top:20px;
  color:var(--muted);
  font-size:.9rem
}
.back-to-top{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:20;
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  padding:0;
  border:0;
  border-radius:50%;
  background:var(--brand-gradient);
  color:#fff;
  box-shadow:0 10px 26px rgba(61,76,244,.25);
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  pointer-events:none;
  transition:opacity .15s,visibility .15s,transform .15s,box-shadow .15s
}
.back-to-top.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto
}
.back-to-top:hover{
  box-shadow:0 12px 30px rgba(61,76,244,.34)
}
.back-to-top:focus-visible{
  outline:3px solid rgba(123,97,255,.3);
  outline-offset:3px
}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0
}
@media(max-width:1000px){
  .prompt-grid,.category-grid{
    grid-template-columns:repeat(2,1fr)
  }
  .footer-grid{
    grid-template-columns:repeat(2,1fr)
  }
  .header-search{
    display:none
  }
  .profile-stats{grid-template-columns:repeat(2,1fr)}
  .pricing-grid{
    grid-template-columns:1fr;
    width:min(100%,620px);
    margin-inline:auto;
    gap:28px
  }
  .pricing-card{
    min-height:auto
  }
}
@media(max-width:720px){
  .container{
    width:min(100% - 24px,1180px)
  }
  .header-inner{
    min-height:64px;
    flex-wrap:wrap;
    padding-block:10px
  }
  .menu-toggle{
    display:block;
    margin-left:auto
  }
  .header-inner nav{
    display:none;
    order:3;
    width:100%;
    padding:8px 0 12px
  }
  .header-inner nav.is-open{
    display:flex
  }
  .hero{
    padding:65px 0
  }
  .hero .hero-models{
    font-size:2.4rem
  }
  .hero-search{
    flex-direction:column
  }
  .prompt-tabs{
    width:100%
  }
  .prompt-tab{
    flex:1;
    padding:10px 8px;
    font-size:.8rem
  }
  .prompt-grid,.category-grid{
    grid-template-columns:1fr
  }
  .detail-grid{
    grid-template-columns:1fr;
    gap:28px
  }
  .detail-content{
    position:static
  }
  .content-sections{
    grid-template-columns:1fr;
    margin-top:36px
  }
  .header-premium,.header-login,.header-account,.header-user-menu{
    order:2
  }
  .profile-hero{align-items:flex-start;flex-wrap:wrap;padding:22px}.profile-avatar{flex-basis:72px;width:72px;height:72px;border-radius:22px}.profile-edit{width:100%;justify-content:center;margin:0}
  .profile-stats,.profile-two-column,.settings-grid{grid-template-columns:1fr}.profile-stats{margin-bottom:38px}.danger-zone{align-items:stretch;flex-direction:column}
  .account-card{
    padding:28px 20px
  }
  .save-signup-card{
    padding:28px 20px
  }
  .social-share-box{
    align-items:flex-start;
    flex-direction:column
  }
  .social-share-links{
    flex-wrap:wrap
  }
  .footer-grid{
    grid-template-columns:1fr
  }
  .site-footer{
    width:min(100% - 24px,1180px)
  }
  .back-to-top{
    right:16px;
    bottom:16px;
    width:42px;
    height:42px
  }
  .section{
    padding-top:50px;
    padding-bottom:50px
  }
}
