
:root {
    --bg: #0f1420;
    --bg-2: #0b101a;
    --panel: #131a28;
    --panel-2: #0e1522;
    --text: #eaf0f7;
    --muted: #a9b6c9;
    --muted-2: #8f9ab0;
    --brand: #7c5cff;
    --brand-2: #9a8aff;
    --accent: #00d4ff;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow: 0 12px 32px rgba(0,0,0,.35);
    --container: 1180px;

    
    --s1: 6px;
    --s2: 10px;
    --s3: 14px;
    --s4: 18px;
    --s5: 24px;
    --s6: 32px;
    --s7: 44px;
    --s8: 64px;
}

* { box-sizing: border-box; }

:focus-visible{
    outline: 2px solid color-mix(in oklab, var(--accent) 70%, white 30%);
    outline-offset: 2px;
    border-radius: 8px;
}

html,body{
    margin:0;
    padding:0;
    background: linear-gradient(180deg,var(--bg),var(--bg-2) 60%,#09101c);
    color: var(--text);
    font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    line-height:1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

:where(.cls069,.cls013){ scroll-margin-top: 90px; }

img{ max-width:100%; display:block; }

a{
    color: var(--accent);
    text-decoration: none;
}
a:hover, a:focus-visible{ text-decoration: none; }

strong,b{ color:#fff; }

.cls003{
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 28px);
}

.cls001{display:block;margin:0 auto;max-width: 1125px;width:100%}

.cls069{ padding: var(--s8) 0; }
@media (max-width:768px){ .cls069{ padding: var(--s7) 0; } }

h1{
    
    font-size: clamp(26px, 5.2vw, 46px);
    line-height:1.1;
    margin:0 0 var(--s4);
    text-wrap: balance;         
}
h2{
    font-size: clamp(22px,3.2vw,34px);
    line-height:1.2;
    margin:0 0 var(--s4);
}
h3{
    font-size: clamp(18px,2.3vw,22px);
    margin:0 0 var(--s2);
}
.cls019{
    opacity:.98;
    font-size: clamp(16px,1.9vw,18px);
    margin-bottom: var(--s4);
    text-wrap: pretty;
}
.cls020{ margin:0 0 var(--s5) 0; padding-left:18px; }
.cls020 li{ margin:6px 0; }

.cls018{
    background: linear-gradient(135deg,var(--brand),var(--accent));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.cls002{
    position: sticky; top:0; z-index:40;
    background: linear-gradient(180deg, rgba(16,22,36,.72), rgba(16,22,36,.58)),
                radial-gradient(120% 100% at 0% 0%, rgba(124,92,255,.10), transparent 60%) no-repeat;
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.cls004{
    display:flex; align-items:center; justify-content:space-between;
    height:66px; gap:12px;
}
.cls005{
    display:flex; gap:10px; align-items:center;
    font-weight:800; color:var(--text); letter-spacing:.2px;
}
.cls005 img{ filter: drop-shadow(0 2px 10px rgba(0,212,255,.15)); }

.cls006{ display:flex; gap:8px; align-items:center; }
.cls006 a.cls007{
    color:var(--text); opacity:.92;
    padding:10px 12px;
    border-radius:999px;
    position:relative; isolation:isolate;
    border:1px solid transparent;
    transition: background .18s ease, border-color .18s ease, opacity .18s ease;
    text-decoration: none;
}
.cls006 a.cls007:hover,
.cls006 a.cls007:focus-visible{
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.10);
    opacity:1;
    text-decoration: none;
}

.cls006 a.cls007::after{ content:none; }

.cls010{ margin-left:4px; }

.cls011{ display:none; background:transparent; border:0; padding:6px; margin: -10px 0 0 8px; }
.cls012{
    display:block; width:24px; height:2px; background:#e8ecf1; margin:5px 0; border-radius:2px;
    transition: transform .2s ease, opacity .2s;
}
#menuToggle[aria-expanded="true"] .cls012:nth-child(1){ transform: translateY(7px) rotate(45deg); }
#menuToggle[aria-expanded="true"] .cls012:nth-child(2){ opacity:0; }
#menuToggle[aria-expanded="true"] .cls012:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width:900px){
    .cls006{
        position: fixed;
        inset: 66px 0 auto 0;
        background: rgba(11,17,28,.96);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255,255,255,.08);
        display:flex; flex-direction:column; gap:6px;
        padding:14px 16px;
        transform: translateY(-120%);
        transition: transform .22s ease;
        max-height: calc(100dvh - 66px);   
        overflow: auto;
    }
    .cls006 a{ padding:12px 14px; border-radius:12px; }
    .cls006.cls216{ transform: translateY(0); }
    .cls011{ display:inline-block; }
}

.cls008{
    display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
    padding:.9rem 1.1rem;
    border-radius:12px;
    background: var(--panel-2);
    border:1px solid rgba(255,255,255,.12);
    color:var(--text);
    box-shadow: var(--shadow);
    cursor:pointer;
    transition: transform .12s ease, opacity .2s, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    min-height: 44px;                 
    white-space: nowrap;              
}
.cls008:hover{ transform: translateY(-1px); }
.cls062{
    background: linear-gradient(135deg,var(--brand),var(--accent));
    border:0; color:#000; font-weight:800; letter-spacing:.2px;
}
.cls062:hover{ box-shadow: 0 8px 28px rgba(0,212,255,.25), 0 4px 12px rgba(124,92,255,.25); }
.cls009 {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: 0px; 
}
@media (max-width: 901px) {
  .cls006 .cls010.cls009 { margin-bottom: 6px; }
}
@media (max-width: 900px) {
  .cls203 .cls009,
  .cls130 .cls009,
  .cls204 .cls009 {
      margin-bottom: 0 !important;
  }
}

.cls008:disabled{ opacity:.55; cursor:not-allowed; }

.cls217.cls218 {
  pointer-events: none;
  opacity: 0.5;
}

.cls013{
    position:relative;
    padding: 56px 0 36px; 
    overflow:hidden;
}
.cls016{
    display:grid;
    grid-template-columns: 1.05fr .95fr;
    gap: var(--s6);
    align-items: start;               
}
@media (max-width:980px){ .cls016{ grid-template-columns:1fr; } }

.cls017{ max-width: 680px; }
@media (max-width:640px){ .cls017{ max-width: 100%; } }

.cls021{
    display:flex; gap:12px; flex-wrap:wrap; margin-top: var(--s4);
}
.cls022{
    display:flex; align-items:center; gap:8px;
    padding:8px 10px; border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.08);
    color: var(--muted);
    font-size: 14px;                  
    line-height: 1.35;
}
.cls022 svg{ width:18px; height:18px; fill:var(--accent); opacity:.95; }

.cls023{
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.10);
    border-radius: var(--radius);
    padding: var(--s5);
    box-shadow: var(--shadow);
    align-self: start;
}
.cls024 > * + *{ margin-top: var(--s4); }

.cls025{
    position:relative;
    border: 1.8px dashed rgba(255,255,255,.26);
    border-radius:12px;
    min-height: 300px;                
    display:flex; align-items:center; justify-content:center;
    cursor:pointer;
    background: rgba(255,255,255,.04);
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.cls025:hover{ border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); }
.cls025:focus-within{ border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,212,255,.15); }
.cls025 input{ position:absolute; inset:0; opacity:0; cursor:pointer; z-index:3; }

.cls026{
    position:relative; display:flex; align-items:center; justify-content:center; width:100%; z-index:1;
}
.cls027{ text-align:center; padding: var(--s6) var(--s4); max-width: 90%; }
.cls028{ width:46px; height:46px; fill:var(--accent); opacity:.98; margin:0 auto var(--s3); }

.cls029{
    display:block; max-width:100%; height:auto;
    max-height: 60vh; object-fit:contain;
    border-radius:12px; box-shadow: var(--shadow);
}
@media (max-width:640px){ .cls029{ max-height: 48vh; } }

.cls040{
    position:absolute; inset:0;
    background: rgba(0,0,0,.45);
    display:flex; align-items:center; justify-content:center;
    border-radius:12px; z-index:4;
}
.cls041{ position:relative; width:min(220px,60vw); height:min(220px,60vw); }
.cls042{ width:100%; height:100%; transform: rotate(-90deg); }
.cls043{ fill:none; stroke: rgba(255,255,255,.16); stroke-width:12; }
.cls044{
    fill:none; stroke: url(#g); stroke-width:12; stroke-linecap:round;
    stroke-dasharray:339.292; stroke-dashoffset:339.292;
    filter: drop-shadow(0 4px 22px rgba(0,212,255,.28));
}
.cls045{
    position:absolute; inset:0; display:flex; flex-direction:column;
    align-items:center; justify-content:center; text-align:center;
}
.cls046{ font-size: clamp(20px,5vw,28px); font-weight:800; color:#fff; letter-spacing:.2px; }
.cls047{ margin-top:6px; color:var(--muted); }

.cls030{ display:none !important; }

.cls061{ display:flex; gap:12px; flex-wrap:wrap; }
.cls064{ margin-top: var(--s2); color:var(--muted); font-size:14px; }
.cls063{ margin-top:6px; color:var(--muted); font-size:13px; }
.cls063 strong{ color:#fff; }

.cls065{
    margin:2px 0 0 0; padding:0; list-style:none; color:var(--muted);
    font-size:13px; display:grid; gap:6px;
}
.cls065 .cls066{
    display:inline-block; width:6px; height:6px; border-radius:50%;
    background:var(--accent); margin-right:8px; vertical-align:1px;
}

.cls048 {
    margin: 0 auto;
    
    border-radius: var(--radius);
    padding: 10px;
    
    width: 100%;
    max-width: 100%;
}
img#imageView {
    height: 100%;
    min-height: 230px;
}
.cls048 h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.cls049 {
    position: relative;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
}

.cls049 {
    position: relative;
    width: 100%;
}

.cls050 {
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
    padding: 8px 0;
}

.cls051 {
    display: flex;
    gap: 12px;
    width: fit-content;
    max-width: 200px;
}

.cls052 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px;
    background: #181f2c;
    border-radius: 12px; 
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 120px; 

    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    text-align: center;
    position: relative;
}

.cls052:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,.3);
    border-color: rgba(255,255,255,.2);
}

.cls052.cls053 {
    border: 2px solid #01a5de;
    box-shadow: 0 0 0 2px rgba(0,212,255,.2);
    background: rgb(0 41 70 / 35%);
    color: var(--text);
    transform: translateY(-1px);
}

.cls052.cls053::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #01a5de;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cls052.cls053::before {
    content: '✓';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.cls054 {
    width: 82px;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cls054 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.cls055 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; 
    height: 44px; 
    border: none;
    background: linear-gradient(135deg, rgba(1,165,222,.9) 0%, rgba(1,165,222,.7) 100%);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(1,165,222,.25);
    border: 1px solid rgba(255,255,255,.1);
}

@media (min-width: 769px) {
    .cls049:hover .cls055 {
        opacity: 1;
        pointer-events: auto;
    }
}

.cls055:hover {
    background: linear-gradient(135deg, rgba(1,165,222,1) 0%, rgba(1,165,222,.9) 100%);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(1,165,222,.4);
}

.cls055:active {
    transform: translateY(-50%) scale(1.05);
}

.cls055 svg {
    width: 18px; 
    height: 18px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.2));
}

.cls056 {
    left: -22px; 
}

.cls057 {
    right: -22px; 
}

@media (max-width: 768px) {
    .cls055 {
        display: none !important;
    }
}

@media (max-width: 980px) {
    .cls049 {
        margin: 0 -8px;
    }
    
    .cls050 {
        padding: 8px;
    }
    
    .cls052 {
        width: 200px; 
        height: 185px;
    }
    
    .cls054 {
        width: 160px;
        
    }
}

@media (max-width: 768px) {
    .cls052 {
        width: 160px;
        height: 148px;
        padding: 6px;
        gap: 4px;
        font-size: 12px;
    }
    
    .cls054 {
        width: 128px;
        
    }
    
    .cls050 {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .cls050::-webkit-scrollbar {
        display: none;
    }
}
    
    .cls051 {
        transition: none;
        width: auto;
    }
}

@media (max-width: 640px) {
    .cls048 {
        padding: var(--s3);
        margin-top: var(--s3);
    }
    
    .cls052 {
        width: 120px; 
        height: 130px;
        font-size: 11px;
        padding: 5px;
    }
    
    .cls054 {
        width: 112px;
        
    }
    
    .cls051 {
        gap: 8px;
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .cls052 {
        width: 110px; 
        height: 111px;
        font-size: 10px;
    }
    
    .cls054 {
        width: 96px;
        
    }
    
    .cls051 {
        gap: 6px;
    }
}

.cls058 {
    margin-top: var(--s3);
}

.cls058 h4 {
    margin: 5px auto;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.cls058 {
    margin: 10px 0;
}

.cls058 h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.cls059 {
    position: relative;
    padding: 0;
}

#breastSizeSlider {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,.1);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    margin: var(--s2) 0;
    position: relative;
}

#breastSizeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #01a5de;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(1,165,222,.3);
    transition: transform 0.15s ease;
}

#breastSizeSlider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

#breastSizeSlider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #01a5de;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(1,165,222,.3);
    transition: transform 0.15s ease;
}

.cls060 {
    display: flex;
    position: relative;
    width: 100%;
    margin-top: var(--s2); 
    height: 20px;
}

.cls060 span {
    position: absolute;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    transition: color 0.2s ease, font-weight 0.2s ease;
    transform: translateX(-50%); 
    white-space: nowrap;
}

.cls060 span:nth-child(1) { left: 11px; }    
.cls060 span:nth-child(2) { left: calc(1/3 * 100%); }    
.cls060 span:nth-child(3) { left: calc(2/3 * 100%); }    
.cls060 span:nth-child(4) { left: calc(3/3 * 100%); }    

.cls060 span.cls053 {
    color: var(--text);
    font-weight: 600;
}
}

.cls068{ position:relative; }

.cls070{
    display:grid; grid-template-columns: repeat(4,1fr); gap: var(--s4); margin-top: var(--s5);
}
@media (max-width:1100px){ .cls070{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px){ .cls070{ grid-template-columns:1fr; } }

.cls071{
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    border:1px solid rgba(255,255,255,.10);
    border-radius: var(--radius);
    padding: var(--s5);
    display:flex; flex-direction:column;  
}
.cls072{
    width:36px; height:36px; border-radius:10px;
    background: linear-gradient(135deg,var(--brand),var(--accent));
    color:#000; font-weight:800; display:flex; align-items:center; justify-content:center;
    margin-bottom: var(--s3); box-shadow: var(--shadow);
}
.cls071 p{ color: var(--muted); }

.cls073{ position:relative; overflow:hidden; }

.cls075{
    display:grid; grid-template-columns: repeat(4,1fr); gap: var(--s4); margin-top: var(--s5);
}
@media (max-width:1100px){ .cls075{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px){ .cls075{ grid-template-columns:1fr; } }

.cls076{
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.10);
    border-radius: var(--radius);
    padding: var(--s5);
    box-shadow: var(--shadow);
    transition: transform .12s ease, border-color .2s ease;
    display:flex; flex-direction:column;
}
.cls076:hover{ transform: translateY(-2px); border-color: rgba(255,255,255,.16); }
.cls077{
    width:40px; height:40px; border-radius:10px;
    background: linear-gradient(135deg,var(--brand),var(--accent));
    display:flex; align-items:center; justify-content:center; margin-bottom: var(--s3);
}
.cls077 svg{ width:24px; height:24px; fill:#000; }
.cls076 h3{ margin-bottom: var(--s2); }
.cls076 p{ color: var(--muted); }

.cls124{
    display:grid; grid-template-columns:1fr 1fr; gap: var(--s4); margin-top: var(--s5);
}
@media (max-width:980px){ .cls124{ grid-template-columns:1fr; } }

.cls125{
    background: var(--panel);
    border:1px solid rgba(255,255,255,.10);
    border-radius: var(--radius);
    transition: border-color .2s ease, background .2s ease, grid-template-rows .28s ease;
    overflow:hidden; display:grid; grid-template-rows: auto 0fr; 
}
.cls125[open]{ border-color: rgba(255,255,255,.18);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    grid-template-rows: auto 1fr;
}
.cls125 summary{
    list-style:none; cursor:pointer;
    display:flex; align-items:center; gap:10px;
    padding:16px 18px; font-weight:700; letter-spacing:.2px; user-select:none;
}
.cls125 summary::-webkit-details-marker{ display:none; }
.cls125 summary::after{
    content:""; width:18px; height:18px; flex:0 0 18px; margin-left:auto;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 10l5 5 5-5z'/></svg>") no-repeat center/contain;
    background:#ffffff; opacity:.7; transition: transform .22s ease;
}
.cls125[open] summary::after{ transform: rotate(180deg); }
.cls125 summary:hover{ background: rgba(255,255,255,.03); }
.cls126{ overflow:hidden; padding:0 18px; color:var(--muted); }
.cls125[open] .cls126{ padding:0 18px 16px 18px; }

.cls127{
    border-top:1px solid rgba(255,255,255,.10);
    padding:18px 0; margin-top:28px;
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
}
.cls128{
    display:flex; align-items:center; justify-content:space-between;
    gap:12px; flex-wrap:wrap;
}
.cls129{ display:flex; gap:12px; flex-wrap:wrap; }

.cls219 {display: none;}
.cls220 {display: block;}

.cls014{ position:absolute; pointer-events:none; }
.cls015{
    inset:auto -20% 0 auto;
    top:-320px; height:600px; width:1200px; opacity:.55;
    background:
      radial-gradient(60% 60% at 10% 0%, rgba(124,92,255,.26), transparent 60%),
      radial-gradient(60% 60% at 90% 0%, rgba(0,212,255,.18), transparent 60%),
      radial-gradient(30% 30% at 50% 50%, rgba(255,255,255,.06), transparent 60%);
    filter: blur(28px);
}
@media (max-width:980px){
    .cls015{ opacity:.35; filter: blur(34px); top:-360px; }
}
@media (max-width:640px){
    .cls015{ display:none; } 
}

.cls074{
    inset:auto 0 -120px 0;
    height:320px; width:100%; opacity:.25;
    background-image: url("data:image/svg+xml;utf8,\
 <svg xmlns='http://www.w3.org/2000/svg' width='360' height='180' viewBox='0 0 360 180' fill='none'>\
 <g opacity='0.7'>\
 <rect x='30' y='40' width='40' height='40' rx='6' fill='%23ffffff' opacity='0.06'/>\
 <circle cx='150' cy='60' r='18' fill='%2300d4ff' opacity='0.12'/>\
 <path d='M250 120 l12 -24 l12 24 z' fill='%237c5cff' opacity='0.12'/>\
 </g></svg>");
    background-repeat: repeat-x; background-size: auto 100%;
    filter: blur(2px);
}

@media (max-width:420px){
    .cls061 .cls008{ flex:1 1 auto; }
}

@media (prefers-reduced-motion: reduce){
    *{ scroll-behavior:auto !important; animation:none !important; transition:none !important; }
}

.cls011{
    display: none !important;       
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.cls012{
    width: 24px;
    height: 2px;
    margin: 4px 0;                  
    background: #e8ecf1;
    border-radius: 2px;
}

@media (max-width:900px){
    .cls011{ display: flex !important; }
    
}

.cls011{
    display: none !important;
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
}
@media (max-width:900px){
    .cls011{ display: flex !important; }
}

.cls012{
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: #e8ecf1;
    border-radius: 2px;
    top: 50%;
    transform-origin: center;
    transition: transform .2s ease, opacity .2s ease;
}

.cls012:nth-child(1){ transform: translateY(-8px); }
.cls012:nth-child(2){ transform: translateY(0); }
.cls012:nth-child(3){ transform: translateY(8px); }

#menuToggle[aria-expanded="true"] .cls012:nth-child(1){
    transform: translateY(0) rotate(45deg);
}
#menuToggle[aria-expanded="true"] .cls012:nth-child(2){
    transform: translateY(0) scaleX(0.5);
    opacity: 0;
}
#menuToggle[aria-expanded="true"] .cls012:nth-child(3){
    transform: translateY(0) rotate(-45deg);
}

@media (min-width: 1024px){
  .cls023 .cls061{
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .cls023 .cls061 .cls008{
    flex: 0 0 auto;       
    white-space: nowrap;  
  }
}

.cls023 .cls025 + .cls061{ margin-top: var(--s5); }

.cls063{ margin-top: 10px; }

@media (min-width: 421px) and (max-width: 567px){
  .cls023 .cls061{
    display: grid;                  
    grid-template-columns: 1fr 1fr; 
    gap: 12px;
    align-items: stretch;
    justify-items: stretch;
  }
  .cls023 .cls061 .cls008{
    width: 100%;                    
  }
  #processBtn{
    grid-column: 1 / -1;            
  }
  
  .cls023 .cls061 + .cls063{ margin-top: 10px; }
}

@media (min-width: 1024px){
  .cls023 .cls061{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
  }
  .cls023 .cls061 .cls008{
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 900px){
  .cls002{ padding-top: env(safe-area-inset-top, 0); }
  .cls004{ height: calc(66px + env(safe-area-inset-top, 0)); }
  .cls219 {display: block;}
  .cls220 {display: none;}
  .cls006{
    position: fixed;
    left: 0;
    right: 0;
    top: calc(66px + env(safe-area-inset-top, 0)); 
    background: rgba(11,17,28,.96);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 30;                
    transform: translateY(-120%);
    transition: transform .22s ease, visibility .22s ease;
    visibility: hidden;         
    pointer-events: none;       
    max-height: calc(100dvh - (66px + env(safe-area-inset-top, 0)));
    overflow: auto;
    padding: 14px 16px;
  }
  .cls006.cls216{
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  
  .cls006 a{ display: block; width: 100%; }

  
  #menuToggle{ z-index: 40; }

  
  .cls005{
    max-width: calc(100% - 60px);   
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@supports not (padding: max(0px)){
  .cls004{ height: 66px; }
  .cls006{ top: 66px; }
}

@media (min-width: 568px) and (max-width: 980px){
  .cls023 .cls061{
    display: grid;                         
    grid-template-columns: repeat(3, 1fr); 
    gap: 12px;
    justify-items: stretch;
    align-items: stretch;
    width: 100%;
  }
  .cls023 .cls061 .cls008{
    width: 100%;
    justify-content: center;               
  }
  .cls023 .cls025 + .cls061{
    margin-top: var(--s5);                 
  }
}

@media (min-width: 981px) and (max-width: 1023px){
  .cls023 .cls061{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
    justify-items: stretch;
    width: 100%;
  }
  .cls023 .cls061 .cls008{
    width: 100%;
    justify-content: center;
  }
  #processBtn{
    grid-column: 1 / -1;   
  }
  .cls023 .cls061 + .cls063{ margin-top: 10px; }
}

html, body { overflow-x: hidden; }
* { word-break: break-word; overflow-wrap: anywhere; }

@media (max-width: 360px){
  .cls003{ padding-left: 12px; padding-right: 12px; }
}

@media (max-width: 360px){
  .cls005 span{ font-size: 14px; }
}

@media (max-width: 280px){
  h1{ font-size: clamp(20px, 7vw, 26px); }
  .cls019{ font-size: 13px; }
  .cls022{ font-size: 12px; }
  .cls013{ padding-top: 44px; }
  .cls026{ padding: 6px; }
  .cls025{ min-height: 180px; }
  img#imageView {
      min-height: 300px;
  }
  .cls023 .cls061{
    display: grid; grid-template-columns: 1fr; gap: 10px;
  }
  .cls023 .cls061 .cls008{ width: 100%; }
}

@media (max-width: 240px){
  .cls003{ padding-left: 10px; padding-right: 10px; }
  h1{ font-size: 18px; }
  .cls019{ font-size: 12px; }
  .cls008{ min-height: 36px; padding: 8px 10px; font-size: 12px; }
  .cls025{ min-height: 150px; border-radius: 10px; }
  .cls027 p{ font-size: 12px; }
  .cls027 small{ display: none; } 
  .cls020{ padding-left: 16px; }
}

@media (max-width: 200px){
  .cls004{ height: 52px; }
  .cls011{ width: 36px; height: 36px; }
  .cls012{ left: 6px; right: 6px; }
  h1{ font-size: 16px; }
  .cls019, .cls020, .cls021{ display: none; } 
  .cls013{ padding: 28px 0; }
  .cls025{ min-height: 120px; }
  .cls076, .cls071, .cls125{ padding: 12px; }
}

@media (max-width: 160px){
  .cls008{ font-size: 11px; padding: 6px 8px; min-height: 32px; }
  .cls128{ flex-direction: column; align-items: flex-start; }
  .cls129{ gap: 8px; }
}

@media (max-width: 120px){
  html{ font-size: 10px; }
  .cls005 img{ width: 22px; height: 22px; }
  .cls027 p{ font-size: 11px; }
  .cls004{ gap: 6px; }
}

@media (max-width: 90px){
  html{ font-size: 9px; }
  .cls011{ width: 30px; height: 30px; }
  .cls005 img{ width: 18px; height: 18px; }
  .cls025{ min-height: 100px; }
}

@media (max-width: 59px){
  html{ font-size: 8px; }
  .cls003{ padding-left: 6px; padding-right: 6px; }
  .cls004{ height: 44px; }
  .cls005 img{ width: 16px; height: 16px; }
  .cls005 span{ display: none; }            
  .cls013{ padding-top: 24px; }
  .cls025{ min-height: 90px; border-radius: 8px; }
  .cls027 p{ font-size: 10px; }
  .cls023 .cls061{ gap: 6px; }
  .cls008{ padding: 6px; min-height: 28px; }
  .cls075, .cls070, .cls124{ gap: 8px; }
  .cls076, .cls071, .cls125{ padding: 10px; border-radius: 10px; }
  .cls127{ padding: 12px 0; }
}

@media (min-width: 901px){
  .cls006 .cls010{
    padding: 10px 14px !important;   
    min-height: 34px !important;    
    font-size: 14px;                
    
  }
}

.cls025:has(.cls040:not(.cls030)) {
  pointer-events: none;        
  cursor: progress;
}

.cls025:has(.cls040:not(.cls030)) .cls029,
.cls025:has(.cls040:not(.cls030)) .cls027 {
  filter: blur(4px) brightness(.75);
  transform: scale(1.01);
  transition: filter .2s ease, transform .2s ease;
}

.cls040 {
  background: rgba(0,0,0,.48);
  -webkit-backdrop-filter: blur(4px) saturate(110%);
  backdrop-filter: blur(4px) saturate(110%);
}

.cls024 .cls025:has(.cls040:not(.cls030)) ~ .cls061 .cls008 {
  pointer-events: none;
  opacity: .55;
  filter: grayscale(.1) saturate(.8);
  cursor: not-allowed;
}

.cls025,
.cls026,
.cls040{
    border-radius: 12px;
    overflow: hidden;                 
}

.cls025:has(.cls040:not(.cls030)) .cls029,
.cls025:has(.cls040:not(.cls030)) .cls027{
    filter: blur(3px) brightness(.80); 
    transform: none;                   
    box-shadow: none;                  
}

.cls025:has(.cls040:not(.cls030)) .cls040{
    background: rgba(0,0,0,.52);
    -webkit-backdrop-filter: blur(1.5px);
    backdrop-filter: blur(1.5px);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.06); 
}

.cls025:has(.cls040:not(.cls030)) { pointer-events: auto; }
.cls025:has(.cls040:not(.cls030)) input,
.cls025:has(.cls040:not(.cls030)) .cls029,
.cls025:has(.cls040:not(.cls030)) .cls027 { pointer-events: none; }

.cls025:has(.cls040:not(.cls030)) .cls040 { pointer-events: auto; }

.cls025:has(.cls040:not(.cls030)) .cls029,
.cls025:has(.cls040:not(.cls030)) .cls027{
    filter: blur(3px) brightness(.82);
    transform: none;
    box-shadow: none;
}
.cls025, .cls026, .cls040{ border-radius:12px; overflow:hidden; }
.cls025:has(.cls040:not(.cls030)) .cls040{
    background: rgba(0,0,0,.54);
    -webkit-backdrop-filter: blur(1.5px);
    backdrop-filter: blur(1.5px);
}

.cls040:has(:is(a,button)){
    display: grid;
    place-items: center;
    padding: 8px;
}
.cls040:has(:is(a,button)) .cls042,
.cls040:has(:is(a,button)) .cls046{ opacity:0; visibility:hidden; }
.cls040:has(:is(a,button)) .cls047{
    margin: 10px 0 12px;
    color: #eaf0f7;
    text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

.cls040 :is(a,button){
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;

    
    padding: clamp(10px, 1.6vw, 14px) clamp(14px, 3.6vw, 22px);
    min-height: 40px;
    border-radius: 14px;

    
    width: fit-content;
    max-width: 100%;
    overflow: hidden;            
    text-overflow: ellipsis;

    
    white-space: nowrap;
    font-size: clamp(13px, 1.1vw + .2rem, 16px); 
    font-weight: 700;                             
    letter-spacing: .1px;
    line-height: 1.15;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    color: #0b0f19;

    
    border: 0;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    box-shadow: 0 8px 28px rgba(0,212,255,.25), 0 4px 12px rgba(124,92,255,.25);
    cursor: pointer;

    
    margin-top: clamp(8px, 1.4vw, 12px);
}
.cls040 :is(a,button) svg{ flex: 0 0 auto; }

.cls040 :is(a,button):hover{ filter: brightness(1.03); }
.cls040 :is(a,button):active{ transform: translateY(1px); }
.cls040 :is(a,button):focus-visible{
    outline: none;
    box-shadow:
        0 0 0 3px rgba(0,212,255,.35),
        0 8px 28px rgba(0,212,255,.25),
        0 4px 12px rgba(124,92,255,.25);
}

@media (max-width: 430px) and (min-width: 361px){
    .cls040 :is(a,button){
        font-size: 14px;
        padding: 10px 16px;
        min-height: 40px;
        border-radius: 13px;
    }
}

@media (max-width: 360px){
    .cls040 :is(a,button){
        font-size: 12px;
        padding: 10px 14px;
        min-height: 38px;
    }
}

.cls130 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(12px);
}

.cls130:not(.cls030) {
  opacity: 1;
  visibility: visible;
}

.cls131 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cls132 {
  position: relative;
  width: 95%;
  max-width: 520px;
  max-height: 85vh;
  background: linear-gradient(145deg, #1a1d29 0%, #242938 100%);
  border-radius: 20px;
  border: 1px solid rgba(124, 92, 255, 0.3);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(124, 92, 255, 0.1);
  overflow: hidden;
  transform: scale(0.9) translateY(30px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cls130:not(.cls030) .cls132 {
  transform: scale(1) translateY(0);
}

.cls133 {
  background: #272c3d;
  padding: 24px 28px 20px;
  position: relative;
  text-align: center;
}

.cls133::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cls133 h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}

.cls134 {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 34px;
    backdrop-filter: blur(10px);
}

.cls134:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.cls135 {
  padding: 28px;
  max-height: 60vh;
  overflow-y: auto;
}

.cls136 {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.5;
}

.cls137 {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.cls221 {
  background: linear-gradient(145deg, #242938 0%, #2a3042 100%);
  border: 2px solid rgba(124, 92, 255, 0.2);
  border-radius: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cls221::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7c5cff, #00d4ff);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.cls221:hover {
  border-color: rgba(124, 92, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 92, 255, 0.25);
}

.cls221:hover::before {
  opacity: 0.08;
}

.cls221.cls222 {
  border-color: #7c5cff;
  box-shadow: 0 5px 29px rgba(124, 92, 255, 0.1);
  transform: translateY(-2px);
}

.cls221.cls222::before {
  opacity: 0.15;
}

.cls221 > * {
  position: relative;
  z-index: 1;
}

.cls223 {
    position: relative;
    border: 2px solid #00d4ff !important;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 92, 255, 0.1)) !important;
    overflow: visible;
}
.cls224 {
    position: absolute;
    top: -10px;
    right: -52px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #00d4ff, #7c5cff);
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    z-index: 10;
}

.cls225 {
  flex: 1;
}

.cls221 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cls226 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
}

.cls227 {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.cls228 {
  text-align: right;
}

.cls229 {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #7c5cff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 2px 0;
}

.cls230 {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.cls138 {
  text-align: center;
  padding: 16px 20px;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.cls139 {
  color: #00d4ff;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

.cls140 {
  text-align: center;
}

.cls140 h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
}

.cls141 {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cls142 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.cls142:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cls142:last-child {
  padding-top: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #00d4ff;
}

.cls143 {
  display: flex;
  gap: 12px;
}

.cls144 {
  text-align: center;
  padding: 40px 24px;
}

.cls145 {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(124, 92, 255, 0.3);
  border-top: 3px solid #7c5cff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.cls144 p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .cls132 {
    width: 92%;
    margin: 1%;
    max-height: 90vh;
  }
  
  .cls133 {
    padding: 18px 20px 16px;
  }
  
  .cls133 h2 {
    font-size: 20px;
  }
  
  .cls135 {
    padding: 20px 18px;
  }

  .cls136 {
    display: none;
  }
  
  
  .cls226 {
    font-size: 1rem;
    line-height: 1.2;
  }
  
  .cls229 {
    font-size: 1.3rem;
  }
  
  .cls227 {
    font-size: 10px;
  }

  
  .cls143 {
    flex-direction: column;
    gap: 10px;
  }
  
  .cls008 {
    padding: 14px 18px;
  }
  
  
  .cls141 {
    padding: 16px;
    margin: 16px 0 20px;
  }
  
  .cls142 {
    padding: 8px 0;
    font-size: 0.9rem;
  }
  
  .cls138 {
    padding: 12px 16px;
  }
  
  .cls139 {
    font-size: 0.85rem;
  }
}

.cls135::-webkit-scrollbar {
  width: 4px;
}

.cls135::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

.cls135::-webkit-scrollbar-thumb {
  background: rgba(124, 92, 255, 0.4);
  border-radius: 2px;
}

.cls135::-webkit-scrollbar-thumb:hover {
  background: rgba(124, 92, 255, 0.6);
}

.cls133{
    position: relative;
    padding-right: 48px; 
}

.cls134{
    position: absolute;
    top: 50%;
    right: 16px;          
    transform: translateY(-50%);
    margin: 0;            
    padding: 0;
}

.cls134{
    transform: none;   
    translate: 0 -50%; 
}

@media (hover: none), (max-width: 900px){
  .cls221{
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
  
  .cls221::before{ display: none !important; }
  .cls221:hover{
    transform: none !important;
    box-shadow: none !important;
    border-color: rgba(124,92,255,0.2) !important;
  }

  
  .cls221:active{
    border-color: #7c5cff !important;
  }
  .cls221:active::after{
    content: "";
    position: absolute;
    top: 8px; bottom: 8px; right: 8px;  
    width: 4px;
    border-radius: 4px;
    pointer-events: none;
    z-index: 1;
  }
}

html:has(.cls130:not(.cls030)),
body:has(.cls130:not(.cls030)){
  overflow: hidden !important;
  height: 100% !important;
  overscroll-behavior: none !important;
}

body:has(.cls130:not(.cls030)) > :not(.cls130){
  pointer-events: none !important;
  touch-action: none !important;
}

.cls130 .cls135{
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

@supports (-webkit-touch-callout: none){
  body:has(.cls130:not(.cls030)){
    position: fixed !important;
    width: 100% !important;
  }
}

.cls031 {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: ew-resize;
}

.cls032 {
  position: relative;
  width: 100%;
  height: 100%;
  user-select: none;
}

.cls033 {
  position: relative;
  width: 100%;
  height: 100%;
}

.cls034 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cls034 img {
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    max-height: 400px;
    margin: 0 auto;
    object-fit: contain;
}

.cls037 {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.1s ease;
}

.cls036 {
  position: absolute;
  top: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(4px);
  z-index: 10;
}

.cls035 .cls036 {
  left: 12px;
}

.cls037 .cls036 {
  right: 12px;
}

.cls038 {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #7c5cff 0%, #00d4ff 100%);
  transform: translateX(-50%);
  z-index: 20;
  transition: left 0.1s ease;
}

.cls038::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-50%);
}

.cls039 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: ew-resize;
  transition: box-shadow 0.2s ease;
}

.cls039:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cls039 svg {
  width: 20px;
  height: 20px;
  color: #666;
}

.cls031:not(.cls030) ~ .cls029.cls030 {
  display: none !important;
}

.cls231 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  pointer-events: none;
  z-index: 30;
}

.cls232 {
    position: absolute;
    top: 16px;
    background: rgb(28 32 43);
    border: 1px solid rgb(51 162 255 / 18%);
    color: white;
    padding: 6px 11px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.cls233 {
  left: 12px;
}

.cls234 {
  right: 12px;
}

.cls034 .cls036 {
  display: none;
}

@media (max-width: 768px) {
  .cls039 {
    width: 36px;
    height: 36px;
  }
  
  .cls039 svg {
    width: 18px;
    height: 18px;
  }
  
  .cls036 {
    font-size: 11px;
    padding: 3px 6px;
  }

  .cls232 {
      font-size: 12px;
      top: 4px;
      padding: 4px 8px;
      background: rgb(15 20 31);
  }  

  .cls034 img {
    max-height: 275px;
}
}

.cls171 {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f1420 0%, #1a2332 100%);
  padding: 50px 0 40px;
}

.cls172 {
  padding: 0 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.cls173 h1 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.cls174 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin: 0;
}

.cls175 {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}

.cls176 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cls177 {
  font-size: 2rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 4px;
}

.cls178 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.cls179 {
  margin-bottom: 32px;
}

.cls180 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cls181 {
  display: flex;
  gap: 8px;
}

.cls182 {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  -webkit-tap-highlight-color: transparent; 
  user-select: none;
}

.cls182:hover,
.cls182:active {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.cls182.cls053 {
  background: linear-gradient(135deg, #7c5cff 0%, #00d4ff 100%);
  border-color: transparent;
  color: white;
}

.cls183 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cls184 {
  position: relative;
  display: flex;
  align-items: center;
}

.cls184 input {
  width: 240px;
  padding: 8px 40px 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
}

.cls184 input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cls184 button {
  position: absolute;
  right: 8px;
  padding: 4px;
  background: none;
  border: none;
  color: rgb(118 170 210 / 60%);
  cursor: pointer;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  min-height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cls184 button:hover,
.cls184 button:active {
  color: white;
}

.cls235 select {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
}

.cls235 select option {
  background: #1a2332;
  color: white;
}

.cls186 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.cls236 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.cls236:hover,
.cls236:active {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.cls237 {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.cls237 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.cls238 {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px; 
  height: 40px; 
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.cls238:hover,
.cls238:active {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.cls238 svg {
  width: 18px; 
  height: 18px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  pointer-events: none;
}

.cls238.cls239 svg {
  fill: #fbbf24;
  stroke: #fbbf24;
}

.cls240 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.cls236:hover .cls240,
.cls236.cls241 .cls240 {
  transform: translateY(0);
  pointer-events: auto;
}

.cls242 {
  padding: 16px;
  background: rgba(0, 0, 0, 0.3);
}

.cls243 {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cls244 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin: 0;
}

.cls245 {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cls246 {
  flex: 1;
  padding: 8px 12px; 
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: white;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  min-height: 36px; 
}

.cls246:hover,
.cls246:active {
  background: rgba(255, 255, 255, 0.2);
}

.cls246 svg {
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.cls247 {
  border-color: rgba(239, 68, 68, 0.5);
  color: #fca5a5;
}

.cls247:hover,
.cls247:active {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.7);
}

.cls187 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.cls188 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  animation: pulse 2s infinite;
}

.cls189 {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.1);
}

.cls190 {
  padding: 16px;
}

.cls191 {
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 8px;
}

.cls191.cls192 {
  width: 60%;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.cls193 {
  text-align: center;
  padding: 80px 20px;
}

.cls194 {
  margin-bottom: 24px;
}

.cls194 svg {
  stroke: rgba(255, 255, 255, 0.3);
}

.cls193 h3 {
  color: white;
  font-size: 1.5rem;
  margin: 0 0 12px;
}

.cls193 p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
}

.cls195 {
  text-align: center;
  margin-top: 40px;
}

.cls196 {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
}

.cls197 {
  position: relative;
  max-width: 800px;
  margin: 0 auto 24px;
  border-radius: 8px;
  overflow: hidden;
}

.cls198 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-top: 24px;
}

.cls199 {
  flex: 1;
}

.cls200 {
  margin-bottom: 0 !important;
}

.cls201 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.cls202 {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;

  margin-left: 0.5ch; 
}

.cls203 {
  display: flex;
  gap: 12px;
}

.cls203 .cls008 {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  min-height: 40px; 
}

.cls205 {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.cls205:hover,
.cls205:active {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
}

.cls134 {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cls031 {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cls032 {
  position: relative;
  width: 100%;
}

.cls033 {
  position: relative;
  width: 100%;
  height: auto;
}

.cls034 {
  position: relative;
  width: 100%;
}

.cls037 {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(0 50% 0 0);
}

.cls039 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background: white;
  border: 2px solid #333;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cls039 svg {
  width: 20px;
  height: 20px;
  color: #333;
  pointer-events: none;
}

@media (max-width: 768px) {
  .cls171 {
    padding: 40px 0 20px;
  }
  
  .cls173 h1 {
    font-size: 2rem;
  }
  
  .cls175 {
    gap: 16px;
    justify-content: center;
  }
  
  .cls177 {
    font-size: 1.5rem;
  }

  
  .cls183 {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cls184 input {
    width: 200px;
  }
  
  .cls186 {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }
  

  .cls240 {
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .cls245 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .cls246 {
    min-width: 0;
    flex: 1 1 calc(50% - 3px); 
    font-size: 0.75rem;
    padding: 6px 8px;
    min-height: 32px;
  }
  
  .cls196 {
      max-width: 95vw;
      min-width: 94vw;
      margin: 10px;
  }
  
  .cls198 {
    flex-direction: column;
    gap: 16px;
  }
  
  .cls203 {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cls203 .cls008 {
    flex: 1;
    min-width: 120px;
  }

.cls224 {
    font-size: 9px;
}  
}

@media (max-width: 480px) {
    
  .cls180 {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cls186 {
    grid-template-columns: 1fr;
  }
  
  .cls183 {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cls184 {
    order: -1;
  }
  
  .cls184 input {
    width: 100%;
  }
  
  .cls181 {
    justify-content: center;
  }
  
  .cls182 {
    padding: 10px 16px; 
    min-height: 40px;
  }
  
  .cls204 {
    display: none;
  }
  .cls203 .cls008 {
    width: 100%;
  }
  
  .cls203 .cls008:last-child {
    margin-bottom: 0;
  }
}

.cls248 {
  color: #00d4ff;
  position: relative;
}

.cls248::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #7c5cff 0%, #00d4ff 100%);
  border-radius: 1px;
}

.cls030 {
  display: none !important;
}

button, .cls008 {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  min-height: 44px; 
  touch-action: manipulation;
}

.cls236,
.cls182,
.cls246,
.cls238 {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cls238 {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cls238:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 215, 0, 0.3);
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.cls238:active {
  transform: scale(0.96);
  transition: all 0.1s ease;
}

.cls249 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.cls250 {
  width: 24px;
  height: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cls251 {
  fill: rgba(255, 255, 255, 0.6);
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cls252 {
  fill: rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cls253 {
  fill: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cls254 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3), rgba(255, 193, 51, 0.2), transparent);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cls238.cls239:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.6);
  transform: scale(1.1);
}

.cls238.cls239 .cls251 {
  fill: rgba(255, 215, 0, 0.8);
  stroke: #FFD700;
}

@media (max-width: 768px) {
  .cls238 {
    width: 44px;
    height: 44px;
    top: 8px;
    right: 8px;
  }
  
  .cls250 {
    width: 22px;
    height: 22px;
  }
  
  .cls249 {
    width: 26px;
    height: 26px;
  }
}

body.cls255 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .cls240 {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  
  .cls240.cls256 {
    opacity: 1;
    pointer-events: auto;
  }
  
  .cls240.cls256 .cls245 {
    animation: slideUpFade 0.3s ease-out;
  }
  
  @keyframes slideUpFade {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  .cls240.cls256 {
    background: linear-gradient(
      to top, 
      rgba(0, 0, 0, 0.8) 0%, 
      rgba(0, 0, 0, 0.4) 50%, 
      transparent 100%
    );
  }
  
  .cls240.cls256 .cls246 {
    padding: 12px 16px;
    font-size: 14px;
    min-height: 44px; 
  }
}

.cls257 {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cls257:hover {
  background: rgba(255, 71, 87, 0.9);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
}

.cls258 {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cls259 {
  width: 18px;
  height: 18px;
  color: #ffffff;
  transition: all 0.3s ease;
  filter: url(#deleteGlow);
}

.cls257:hover .cls259 {
  color: #ffffff;
  transform: scale(1.1);
}

.cls260 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cls257:hover .cls260 {
  opacity: 1;
}

.cls260 .cls261 {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ff4757;
  border-radius: 50%;
  opacity: 0;
  animation: deleteSparkle 1.5s infinite;
}

.cls260 .cls262 {
  top: -15px;
  left: -8px;
  animation-delay: 0.1s;
}

.cls260 .cls263 {
  top: -12px;
  right: -10px;
  animation-delay: 0.3s;
}

.cls260 .cls264 {
  bottom: -15px;
  left: -6px;
  animation-delay: 0.5s;
}

@keyframes deleteSparkle {
  0%, 100% { 
    opacity: 0; 
    transform: scale(0) rotate(0deg); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1) rotate(180deg); 
  }
}

.cls265 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, rgba(255, 71, 87, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cls257:hover .cls265 {
  opacity: 1;
  animation: deleteGlowPulse 2s infinite;
}

@keyframes deleteGlowPulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1); 
    opacity: 0.4; 
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.2); 
    opacity: 0.8; 
  }
}

.cls257.cls266 ~ .cls238 {
  right: 12px;
}

.cls259 .cls267,
.cls259 .cls268 {
  stroke: currentColor;
  transition: all 0.3s ease;
}

.cls259 .cls269 {
  stroke: currentColor;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.cls257:hover .cls259 .cls267 {
  transform: translateY(-1px) rotate(-5deg);
  transform-origin: center;
}

.cls257:hover .cls259 .cls269 {
  opacity: 1;
  stroke-width: 2.5;
}

@media (max-width: 768px) {
  .cls257 {
    width: 44px;
    height: 44px;
    top: 8px;
    left: 8px;
  }
  
  .cls259 {
    width: 16px;
    height: 16px;
  }
  
  .cls258 {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 768px) {
  .cls196 {
    height: 94dvh !important;
    max-height: 94dvh !important;
    width: 95vw !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .cls135 {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }

  
  .cls197,
  .cls031,
  .cls032,
  .cls033 {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    height: 100% !important;
  }

  
  .cls034 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    max-height: none !important;
  }

  
  .cls198,
  .cls203 {
    flex: 0 0 auto !important;
    margin-top: 12px;
  }
}

.cls037 {
  will-change: clip-path;
  transition: clip-path 0.1s ease-out !important;
}

.cls038 {
  will-change: left;
  transition: left 0.1s ease-out !important;
}

@media (max-width: 768px) {
  
  .cls196 {
    height: 94dvh !important;
    max-height: 94dvh !important;
    width: 95vw !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .cls196 .cls135 {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }

  
  .cls132:not(.cls196) {
    width: 92% !important;
    max-width: 520px !important;
    height: auto !important;
    max-height: 90vh !important;
    display: block !important;
  }
  .cls132:not(.cls196) .cls135 {
    display: block !important;
    max-height: 60vh !important;
    overflow-y: auto !important;
  }
}

.cls146 {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cls146:not(.cls030) {
  opacity: 1;
  visibility: visible;
}

.cls147 {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cls148 {
  position: relative;
  width: 90%;
  max-width: 480px;
  background: linear-gradient(145deg, #1a1d29 0%, #242938 100%);
  border-radius: 20px;
  border: 1px solid rgba(124, 92, 255, 0.3);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(124, 92, 255, 0.1),
    0 0 100px rgba(0, 212, 255, 0.15);
  padding: 40px 32px;
  text-align: center;
  transform: scale(0.9) translateY(30px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cls146:not(.cls030) .cls148 {
  transform: scale(1) translateY(0);
}

.cls149 {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #7c5cff, #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: #000000;
  box-shadow: 0 8px 32px rgba(124, 92, 255, 0.4);
  letter-spacing: 1px;
  font-size: 24px;
}

.cls150 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.2;
}

.cls151 {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 32px;
}

.cls152 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.cls153 {
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  min-height: 52px;
}

.cls154 {
  background: linear-gradient(135deg, #7c5cff, #00d4ff);
  color: #000000;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.25);
}

.cls154:hover {
  box-shadow: 0 12px 36px rgba(0, 212, 255, 0.35);
  transform: translateY(-2px);
}

.cls154:active {
  transform: translateY(0);
}

.cls155 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
}

.cls155:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
}

.cls156 {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  line-height: 1.4;
}

body.cls270 {
  overflow: hidden !important;
  height: 100vh !important;
}

@keyframes shake {
  0%, 100% { transform: scale(1) translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: scale(1) translateX(-8px); }
  20%, 40%, 60%, 80% { transform: scale(1) translateX(8px); }
}

@media (max-width: 768px) {
  .cls148 {
    width: 92%;
    padding: 32px 24px;
  }
  
  .cls149 {
    width: 64px;
    height: 64px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .cls150 {
    font-size: 1.5rem;
  }
  
  .cls151 {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }
  
  .cls153 {
    padding: 14px 20px;
    font-size: 0.95rem;
    min-height: 48px;
  }
  
  .cls156 {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .cls148 {
    padding: 28px 20px;
  }
  
  .cls149 {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }
  
  .cls150 {
    font-size: 1.3rem;
  }
}

.cls157 {
  background: linear-gradient(165deg, #0f1419 0%, #1a2332 50%, #0d1117 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(16, 185, 129, 0.1),
    0 0 60px rgba(16, 185, 129, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cls158 {
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  background: radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.15), transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: successPulse 2s ease-in-out infinite;
}

.cls158::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(52, 211, 153, 0.1));
  z-index: -1;
  filter: blur(8px);
}

.cls158 svg {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.5));
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.cls159 {
  background: linear-gradient(135deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.cls160 {
  margin-bottom: 24px;
}

.cls161 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.cls162 {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.cls162 li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cls162 li:last-child {
  border-bottom: none;
}

.cls163 {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #10b981;
}

.cls165 {
  margin-bottom: 24px;
}

.cls166 {
  position: relative;
  display: flex;
  align-items: center;
}

.cls167 {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  transition: color 0.2s ease;
}

.cls166:focus-within .cls167 {
  color: #10b981;
}

.cls168 {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background: rgba(16, 185, 129, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.25s ease;
  outline: none;
  box-sizing: border-box;
}

.cls168::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.cls168:focus {
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(16, 185, 129, 0.06);
  box-shadow: 
    0 0 0 3px rgba(16, 185, 129, 0.1),
    0 4px 12px rgba(16, 185, 129, 0.1);
}

.cls164 {
  color: #34d399;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
}

.cls164::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #10b981, #34d399);
  transition: width 0.3s ease;
}

.cls164:hover {
  color: #6ee7b7;
}

.cls164:hover::after {
  width: 100%;
}

.cls169 {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 
    0 4px 15px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: none;
  transition: all 0.25s ease;
}

.cls169:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 
    0 8px 25px rgba(16, 185, 129, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.cls169:active {
  transform: translateY(0);
}

.cls169 .cls170 {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .cls158 {
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
  }
  
  .cls158 svg {
    width: 44px;
    height: 44px;
  }
  
  .cls168 {
    padding: 12px 14px 12px 40px;
    font-size: 0.95rem;
  }
  
  .cls162 li {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .cls158 {
    width: 64px;
    height: 64px;
  }
  
  .cls158 svg {
    width: 38px;
    height: 38px;
  }
}

.cls078 {
  position: relative;
  overflow: hidden;
}

.cls078::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -20%;
  right: -20%;
  height: 400px;
  background: 
    radial-gradient(60% 60% at 20% 0%, rgba(124,92,255,.12), transparent 60%),
    radial-gradient(50% 50% at 80% 0%, rgba(0,212,255,.08), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.cls079 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s8);
  align-items: start;
}

.cls080 {
  max-width: 100%;
}

.cls081 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(124,92,255,.15), rgba(0,212,255,.08));
  border: 1px solid rgba(124,92,255,.3);
  border-radius: 999px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--s4);
  backdrop-filter: blur(8px);
}

.cls082 {
  font-size: 16px;
  filter: drop-shadow(0 0 8px rgba(124,92,255,.4));
}

.cls083 {
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1.2;
  margin: 0 0 var(--s4);
  font-weight: 700;
  text-wrap: balance;
}

.cls084 {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: var(--s6);
  text-wrap: pretty;
}

.cls085 {
  display: grid;
  gap: var(--s4);
  margin-bottom: var(--s6);
}

.cls086 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--s3);
  padding: var(--s4);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  text-align: center;
}

.cls086:hover {
  transform: translateY(-2px);
  border-color: rgba(124,92,255,.2);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}

.cls087 {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(124,92,255,.25);
}

.cls087 svg {
  width: 20px;
  height: 20px;
  fill: #000;
}

.cls088 h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

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

.cls089 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-bottom: var(--s6);
  padding: var(--s5);
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
}

.cls090 {
  text-align: center;
}

.cls091 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cls092 {
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cls093 {
  display: flex;
  gap: var(--s3);
  align-items: center;
}

.cls094 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.cls094 svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.cls094:hover svg {
  transform: translate(2px, -2px);
}

.cls095 {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

.cls096 {
  background: linear-gradient(135deg, #1a1f2e, #242938);
  border: 1px solid rgba(124,92,255,.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.cls096::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,255,.4), transparent);
}

.cls097 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(0,0,0,.3);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.cls098 {
  display: flex;
  gap: 6px;
}

.cls098 span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted-2);
  opacity: 0.6;
}

.cls098 span:nth-child(1) { background: #ff5f56; }
.cls098 span:nth-child(2) { background: #ffbd2e; }
.cls098 span:nth-child(3) { background: #27ca3f; }

.cls099 {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cls100 {
  padding: var(--s4);
  overflow-x: auto;
}

.cls100 pre {
  margin: 0;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
}

.cls100 code {
  display: block;
}

.cls101 { color: #6a737d; }
.cls102 { color: #f97583; font-weight: 600; }
.cls103 { color: #9ecbff; }
.cls104 { color: #79b8ff; }
.cls105 { color: #b392f0; }

.cls106 {
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.cls107 {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.cls108 {
  font-size: 24px;
  filter: drop-shadow(0 2px 8px rgba(124,92,255,.3));
}

.cls109 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cls109 strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.cls109 span {
  font-size: 13px;
  color: var(--muted);
}

@media (min-width: 1101px) {
  .cls085 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s4);
    margin-bottom: var(--s5);
  }
  
  .cls086 {
    padding: var(--s3) var(--s2);
    gap: var(--s2);
  }
  
  .cls088 h4 {
    font-size: 15px;
    margin-bottom: 2px;
  }
  
  .cls088 p {
    font-size: 12px;
    line-height: 1.4;
  }
  
  .cls087 {
    width: 32px;
    height: 32px;
  }
  
  .cls087 svg {
    width: 16px;
    height: 16px;
  }
  
  
  .cls095 {
    margin-top: calc(var(--s4) + var(--s5) + 42px);
  }
}

@media (max-width: 991px) {
  .cls079 {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }
  
}

@media (max-width: 768px) {
  .cls078::before {
    height: 300px;
    filter: blur(30px);
  }
  
  .cls089 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s3);
    padding: var(--s4);
  }
  
  .cls085 {
    gap: var(--s3);
  }
  
  .cls086 {
    padding: var(--s3);
  }
  
  .cls093 {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cls093 .cls008 {
    justify-content: center;
  }
  
  
  .cls093 .cls009 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .cls093 .cls009 svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  
  .cls100 {
    padding: var(--s3);
  }
  
  .cls100 pre {
    font-size: 12px;
  }
  
  .cls106 {
    padding: var(--s4);
    gap: var(--s3);
  }
}

@media (max-width: 640px) {
  .cls079 {
    gap: var(--s5);
  }
  
  .cls089 {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .cls090 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--s2) 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  
  .cls090:last-child {
    border-bottom: none;
  }
  
  .cls091 {
    font-size: 18px;
    margin-bottom: 0;
  }
  
  .cls092 {
    font-size: 11px;
    text-align: right;
  }
  
  .cls086 {
    flex-direction: column;
    text-align: center;
    gap: var(--s2);
  }
  
  .cls107 {
    flex-direction: column;
    text-align: center;
    gap: var(--s2);
  }
}

@media (max-width: 480px) {
  .cls081 {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .cls093 {
    gap: var(--s2);
  }
  
  .cls097 {
    padding: 8px 12px;
  }
  
  .cls100 {
    padding: var(--s2);
  }
  
  .cls106 {
    padding: var(--s3);
  }
}

@media (prefers-color-scheme: dark) {
  .cls096 {
    background: linear-gradient(135deg, #0d1117, #161b22);
    border-color: rgba(124,92,255,.15);
  }
  
  .cls097 {
    background: rgba(0,0,0,.5);
  }
}

@media (prefers-contrast: high) {
  .cls087,
  .cls091,
  .cls081 {
    filter: contrast(1.2) brightness(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cls086 {
    transition: none;
  }
  
  .cls094 svg {
    transition: none;
  }
  
  .cls086:hover {
    transform: none;
  }
}