:root {
    --cyan: #00f0ff;
    --magenta: #6d28d9;
    --purple: #7c3aed;
    --deep-purple: #4c1d95;
    --dark-bg: #050b18;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #e8e8ed;
    --text-muted: #9aa4b2;
    --container-max: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.pZ0neub8r {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

/* Grain overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Ambient background glow */
.WwrJpA {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

.I1bIZWO {
    top: -200px;
    right: -100px;
    background: var(--cyan);
}

.UTpdSwNz {
    bottom: 20%;
    left: -200px;
    background: var(--magenta);
}

.fia75MTweh {
    bottom: -200px;
    right: 20%;
    background: var(--purple);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 4%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, 0.7);
    border-bottom: 1px solid var(--card-border);
}

.XCsJdBS {
    max-width: var(--container-max);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.liLDf45A4L {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #00f0ff, #8b5cf6, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.liLDf45A4L span {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    display: block;
    letter-spacing: 1px;
    background: none;
    -webkit-text-fill-color: var(--text-muted);
    margin-top: -5px;
}

.iYTNZjK {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.iYTNZjK a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    transform: scale(1);
}

.iYTNZjK a:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
    transform: scale(1.08);
}

.AwA2dpY2G {
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

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

.AwA2dpY2G:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

/* Hero Section - Asymmetrical */
.HiUOv4vuM {
    min-height: 100vh;
    padding: 10rem 4% 4rem;
    display: flex;
    justify-content: center;
}

.EiJha1 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container-max);
    width: 100%;
}

.zOgVdRobCp {
    padding-left: 0;
}

.JpkcBH {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-family: 'Space Mono', monospace;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.JpkcBH::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.HiUOv4vuM h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.HiUOv4vuM h1 .b2xaTwBZfF6 {
    display: block;
    color: var(--text-main);
}

.HiUOv4vuM h1 .xOkqQbnD {
    display: block;
    background: linear-gradient(90deg, #fbbf24, #f472b6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.HiUOv4vuM h1 .lTBe3zN {
    display: block;
    color: var(--text-main);
    opacity: 0.4;
    font-size: 0.6em;
}

.B1tRKltm {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 450px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.GIqbC2wjg {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

.IArnf6NsL {
    text-align: left;
}

.RpqjCMZynk {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--text-main);
    line-height: 1;
}

.PAsvdH79 {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Generator Demo */
.jF3qIpr {
    position: relative;
    z-index: 1;
}

.vnchuJ6fVS {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    max-width: 640px;
    max-height: 640px;
}

.akcORvm {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.xAw3sRtYq1J {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.xAw3sRtYq1J:nth-child(1) { background: #ff5f57; }
.xAw3sRtYq1J:nth-child(2) { background: #ffbd2e; }
.xAw3sRtYq1J:nth-child(3) { background: #28c840; }

.n9cg4d1ss {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 1.2rem;
    margin-bottom: 1rem;
}

.a6gz36vnwO {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.f8MzSJ6kzg {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    resize: none;
    outline: none;
}

.f8MzSJ6kzg::placeholder {
    color: var(--text-muted);
}

.snzBRAgB {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.XfgoP5 {
    flex: 1;
    min-width: 120px;
}

.DdwOHKc5 {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    display: block;
}

.d7AHANCma5U {
    width: 100%;
    padding: 0.6rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b7a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.d7AHANCma5U:focus {
    border-color: var(--text-main);
}

.d7AHANCma5U option {
    background: #1a1a22;
    color: var(--text-main);
    padding: 0.5rem;
}

.TJowIPi {
    display: flex;
    gap: 0.5rem;
}

.MTWM7eHuMLu {
    padding: 0.6rem 1rem;
    background: transparent;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.MTWM7eHuMLu:hover {
    border-color: rgba(255,255,255,0.2);
    color: var(--text-main);
}

.MTWM7eHuMLu.active {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.25);
    color: var(--text-main);
}

.IGqfnTKW {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

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

.IGqfnTKW:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.IGqfnTKW:active {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(0);
}

.IGqfnTKW.PCvZRjqmS9u {
    pointer-events: none;
}

.IGqfnTKW .XwOsfns {
    transition: opacity 0.3s;
}

.IGqfnTKW.PCvZRjqmS9u .XwOsfns {
    opacity: 0;
}

.IGqfnTKW .m9BQsQnwV {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    opacity: 0;
    animation: none;
}

.IGqfnTKW.PCvZRjqmS9u .m9BQsQnwV {
    opacity: 1;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Generated Image Display */
.HRXI09UcAq {
    margin-top: 1.5rem;
    position: relative;
}

.pv5aCHwQ5 {
    aspect-ratio: 1;
    background: rgba(0,0,0,0.3);
    border: 1px dashed var(--card-border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.pv5aCHwQ5.C8LAo04vz {
    border: none;
    background: none;
}

.pv5aCHwQ5 svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.pv5aCHwQ5 p {
    font-size: 0.85rem;
}

.akx9sSUUZ {
    width: 100%;
    border-radius: 8px;
    display: none;
    animation: fadeIn 0.4s ease;
}

.akx9sSUUZ.qmK7kHu3U {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.wUEWcaXVUg {
    display: none;
    gap: 0.5rem;
    margin-top: 1rem;
}

.wUEWcaXVUg.qmK7kHu3U {
    display: flex;
}

.kGEhfXQAxU {
    flex: 1;
    padding: 0.7rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.kGEhfXQAxU:hover {
    border-color: rgba(255,255,255,0.2);
    color: var(--text-main);
    background: rgba(255,255,255,0.05);
}

/* Floating decoration */
.ofCd1cgKYF {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.8rem 1.4rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    color: var(--text-main);
}

.nPdBHk {
    top: -20px;
    right: 40px;
    animation: float 4s ease-in-out infinite;
}

.F46mP2xRrPx {
    bottom: 80px;
    left: -30px;
    animation: float 4s ease-in-out infinite 1s;
}

/* Gallery Popup */
.fczXU8fWsp2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fczXU8fWsp2.active {
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
}

.FdIxAR {
    position: relative;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.fczXU8fWsp2.active .FdIxAR {
    transform: scale(1) translateY(0);
}

.B0FDSA {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.B0FDSA:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.IrObw47KG8t {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
}

.iSeoUUXR {
    width: 100%;
    height: auto;
    display: block;
}

.DIWkNWxh {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.Kglkamn7 {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.Kglkamn7::before {
    content: '"';
}

.Kglkamn7::after {
    content: '"';
}

.PgAoM9zA30 {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Gallery Section */
.IJ5hdkLHBci {
    padding: 6rem 4%;
    position: relative;
}

.DbjOS44 {
    max-width: var(--container-max);
    margin: 0 auto;
}

.zAaICAUhTFv {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
    text-align: center;
}

.zAaICAUhTFv > div {
    text-align: center;
}

.CCipGyS8ZuW {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: 2px;
    text-align: center;
}

.CCipGyS8ZuW span {
    color: var(--magenta);
}

.HNLTbv4cRf {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin-top: 0.5rem;
    line-height: 1.7;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.m2lq0MdGhB {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid var(--card-border);
    border-radius: 4px;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tab:hover {
    border-color: rgba(255,255,255,0.2);
    color: var(--text-main);
}

.filter-tab.active {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.25);
    color: var(--text-main);
}

/* Bento Gallery Grid */
.QAO94e {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.N4pj3f0AX {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s;
    z-index: 2;
}

.gallery-item:hover .N4pj3f0AX {
    transform: translateY(0);
    opacity: 1;
}

.item-prompt {
    font-size: 0.8rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-style {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Bento Layout Variations */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
}

.gallery-item:nth-child(8) {
    grid-column: span 2;
}

/* Features Section - Redesigned Human-Crafted */
.FhfpDcyNi4 {
    padding: 6rem 4%;
}

.cl97bV {
    max-width: var(--container-max);
    margin: 0 auto;
}

.MHGkQZTUvd {
    text-align: center;
    margin-bottom: 4rem;
}

.Y0ncIl5b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Unique card accents - each card gets different treatment */
.feature-card:nth-child(1) {
    border-top: 2px solid #4a4a52;
}

.feature-card:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
}

.feature-card:nth-child(3) {
    border-left: 2px solid #4a4a52;
}

.feature-card:nth-child(4)::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}

.feature-card:nth-child(5) {
    border-bottom: 2px solid #4a4a52;
}

.feature-card.j8Bg1x6T {
    grid-row: span 2;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 3px solid #5a5a62;
}

.feature-card.j8Bg1x6T::before {
    content: '★';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.3;
}

/* Icon styling - varied, not uniform */
.fP6SEQA {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.fP6SEQA svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

/* Each icon gets subtle treatment */
.feature-card:nth-child(1) .fP6SEQA svg {
    color: var(--text-main);
    opacity: 0.8;
}

.feature-card:nth-child(2) .fP6SEQA svg {
    color: var(--text-muted);
}

.feature-card:nth-child(3) .fP6SEQA svg {
    color: var(--text-main);
    opacity: 0.8;
}

.feature-card:nth-child(4) .fP6SEQA svg {
    color: var(--text-muted);
}

.feature-card:nth-child(5) .fP6SEQA svg {
    color: var(--text-main);
    opacity: 0.8;
}

/* Decorative number for each card */
.NvwilCgaS {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--text-main);
    opacity: 0.1;
    line-height: 1;
}

.ycv4sA {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.KT4meUSdhoB {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.z9MM18F {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.YlEwHDeP8 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text-main);
}

.kSX7OY {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* How It Works */
.nB3gychnzHi {
    padding: 6rem 4%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.01), transparent);
}

.tHBKwvDYTg {
    max-width: var(--container-max);
    margin: 0 auto;
}

.VaOCujt {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.VaOCujt::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-border), var(--card-border), transparent);
}

.how-step {
    text-align: center;
    position: relative;
}

.fRwdbeGKQSU {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text-main);
    position: relative;
    z-index: 2;
}

.iW3CMj {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.w8IIR0mz {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Pricing Section */
.HFXZBeVHF {
    padding: 6rem 4%;
}

.kotL3utF8L5 {
    max-width: var(--container-max);
    margin: 0 auto;
}

.mszAxEp4K {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.mszAxEp4K span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mszAxEp4K span.active {
    color: var(--text-main);
}

.jL5Dlu {
    width: 50px;
    height: 26px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
}

.jL5Dlu::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: transform 0.3s;
}

.jL5Dlu.LahZeJRCY::after {
    transform: translateX(24px);
}

.QYtXc9aJC {
    padding: 0.3rem 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-main);
}

.z6D4oO {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.2s ease;
}

.price-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.price-card.ZkuL8s {
    border-color: #5a5a62;
    background: var(--card-bg);
}

.SAFxMLyA {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.PCDHpahu {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.hBbjWq {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.FdZ2Xz8 {
    margin-bottom: 1.5rem;
}

.qal4QDNfi {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
}

.kKwdD8IrW4i {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.Hr1XJYVl1 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    height: 1.3em;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.Hr1XJYVl1.qmK7kHu3U {
    visibility: visible;
    opacity: 1;
}

.Hr1XJYVl1 span {
    color: var(--text-main);
    font-weight: 500;
}

.rfNPuytmqk {
    list-style: none;
    margin-bottom: 2rem;
}

.rfNPuytmqk li {
    padding: 0.6rem 0;
    font-size: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.rfNPuytmqk li::before {
    content: '✓';
    color: var(--text-main);
    font-weight: bold;
}

.XCLTaUB {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid #4a4a52;
    border-radius: 6px;
    color: var(--text-main);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.XCLTaUB:hover {
    border-color: #6a6a72;
    background: rgba(255, 255, 255, 0.03);
}

.price-card.ZkuL8s .XCLTaUB {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.price-card.ZkuL8s .XCLTaUB::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.price-card.ZkuL8s .XCLTaUB:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* FAQ Section */
.RqnFUPm {
    padding: 6rem 4%;
    max-width: 800px;
    margin: 0 auto;
}

.ZQMBgOqrdSf {
    margin-top: 3rem;
}

.faq-item {
    border-bottom: 1px solid var(--card-border);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.IfLGqYxz7D {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.IfLGqYxz7D p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.faq-item.open .IfLGqYxz7D {
    max-height: 200px;
}

/* CTA Section - Redesigned */
.AW9542haYx4 {
    padding: 8rem 4%;
}

.AFe6eeooOj {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.kKcrZc {
    position: relative;
}

.KgeSs3GXrVW {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.RY0lQ4dfs {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.RY0lQ4dfs span {
    display: block;
    color: var(--text-muted);
    font-size: 0.5em;
    margin-top: 0.3em;
}

.YXOiTZtGgop {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 400px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.sqw2Zvbudk {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.y8V4S7Xacf {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

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

.y8V4S7Xacf:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.VdFV0g {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid #4a4a52;
    color: var(--text-main);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.VdFV0g:hover {
    border-color: #6a6a72;
    background: rgba(255, 255, 255, 0.03);
}

.nPDEmkG {
    position: relative;
    max-width: 400px;
    justify-self: end;
}

.Gf1mijiQaZ {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 1.2rem;
    position: relative;
}

.KFI8ccBo {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    min-height: 4.5em;
    line-height: 1.5;
}

.KFI8ccBo::before {
    content: '"';
}

.KFI8ccBo::after {
    content: '"';
}

.mywhesMn8E {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.JbOsG4ZlGdj {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.JbOsG4ZlGdj img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kUEGGqgbzQ {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
}

.vJmLVktQay7 {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.vJmLVktQay7 span {
    color: var(--text-main);
}

.d0GcWv {
    display: flex;
    gap: 0.5rem;
}

.p2dhMuKAQc {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.B9C9Egcwp {
    position: absolute;
    bottom: -15px;
    left: 1rem;
    display: flex;
    align-items: center;
    background: var(--dark-bg);
    border: 1px solid var(--card-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.og8obQm3zP5 {
    display: flex;
    margin-right: 0.8rem;
}

.XL9P2Wnn2 {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
}

.XL9P2Wnn2:first-child {
    margin-left: 0;
}

.H7x2KFuDWNw {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.H7x2KFuDWNw span {
    color: var(--text-main);
    font-weight: 600;
}

/* Footer */
footer {
    padding: 4rem 4% 2rem;
    border-top: 1px solid var(--card-border);
}

.Hp6Rvh {
    max-width: var(--container-max);
    margin: 0 auto;
}

.utLjwcd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.pt2a68Q .liLDf45A4L {
    margin-bottom: 1rem;
}

.lq1Y4AlA {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 300px;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.TgDZfjxv9W {
    display: flex;
    gap: 1rem;
}

.JdYxQozjnJ {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.JdYxQozjnJ:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.CpGd6BRwhBy {
    max-width: 400px;
    justify-self: end;
}

.CpGd6BRwhBy h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.T9npuAfPbQL {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.vhme9q1Kq {
    display: flex;
    gap: 0.5rem;
}

.LVdRgUF9D {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s ease;
}

.LVdRgUF9D::placeholder {
    color: var(--text-muted);
}

.LVdRgUF9D:focus {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.NBeWnjNY {
    padding: 0.9rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

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

.NBeWnjNY:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.E92lxqVY h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.E92lxqVY ul {
    list-style: none;
}

.E92lxqVY li {
    margin-bottom: 0.8rem;
}

.E92lxqVY a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.E92lxqVY a:hover {
    color: var(--text-main);
}

.AVxlmM {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    flex-wrap: wrap;
    gap: 1rem;
}

.BogLuN {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.BogLuN a {
    color: var(--text-main);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.BogLuN a:hover {
    opacity: 0.7;
}

.uSBYe3io8YE {
    display: flex;
    gap: 2rem;
}

.uSBYe3io8YE a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.uSBYe3io8YE a:hover {
    color: var(--text-main);
}

/* Mobile Menu */
.Yzf1wGFkSBT {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.Yzf1wGFkSBT span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: all 0.3s;
}

.Yzf1wGFkSBT.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.Yzf1wGFkSBT.active span:nth-child(2) {
    opacity: 0;
}

.Yzf1wGFkSBT.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.DjXFxKmZLhl {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--card-border);
    z-index: 99;
    overflow-y: auto;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.DjXFxKmZLhl.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.DjXFxKmZLhl a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--card-border);
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s ease;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.DjXFxKmZLhl.active a {
    transform: translateX(0);
    opacity: 1;
}

.DjXFxKmZLhl.active a:nth-child(1) { transition-delay: 0.1s; }
.DjXFxKmZLhl.active a:nth-child(2) { transition-delay: 0.15s; }
.DjXFxKmZLhl.active a:nth-child(3) { transition-delay: 0.2s; }
.DjXFxKmZLhl.active a:nth-child(4) { transition-delay: 0.25s; }

.DjXFxKmZLhl a:hover {
    background: rgba(255, 255, 255, 0.04);
}

.DjXFxKmZLhl .AwA2dpY2G {
    margin-top: 1.5rem;
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.3s ease 0.3s, opacity 0.3s ease 0.3s;
}

.DjXFxKmZLhl.active .AwA2dpY2G {
    transform: translateX(0);
    opacity: 1;
}

@media (min-width: 769px) {
    .DjXFxKmZLhl {
        display: none !important;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .EiJha1 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .zOgVdRobCp {
        padding-left: 0;
        text-align: center;
    }

    .B1tRKltm {
        margin: 0 auto 2.5rem;
    }

    .GIqbC2wjg {
        justify-content: center;
    }

    .QAO94e {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item:nth-child(5),
    .gallery-item:nth-child(8) {
        grid-column: span 1;
    }

    .Y0ncIl5b {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card.j8Bg1x6T {
        grid-row: span 1;
    }

    .z6D4oO {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .utLjwcd {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 4%;
    }

    .iYTNZjK, .AwA2dpY2G {
        display: none;
    }

    .Yzf1wGFkSBT {
        display: flex;
    }

    .HiUOv4vuM {
        padding-top: 8rem;
    }

    .ofCd1cgKYF {
        display: none;
    }

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

    .QAO94e {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    .Y0ncIl5b {
        grid-template-columns: 1fr;
    }

    .VaOCujt {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .VaOCujt::before {
        display: none;
    }

    .utLjwcd {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    .CpGd6BRwhBy {
        justify-self: center;
        text-align: center;
    }

    .vhme9q1Kq {
        flex-direction: column;
    }

    .NBeWnjNY {
        width: 100%;
    }

    .TgDZfjxv9W {
        justify-content: center;
    }

    .AVxlmM {
        flex-direction: column;
        text-align: center;
    }

    .snzBRAgB {
        flex-direction: column;
    }

    .XfgoP5 {
        min-width: 100%;
    }

    .TJowIPi {
        width: 100%;
    }

    .MTWM7eHuMLu {
        flex: 1;
    }

    .AFe6eeooOj {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .YXOiTZtGgop {
        margin-left: auto;
        margin-right: auto;
    }

    .sqw2Zvbudk {
        justify-content: center;
    }

    .nPDEmkG {
        justify-self: center;
        max-width: 320px;
    }

    .B9C9Egcwp {
        left: 50%;
        transform: translateX(-50%);
    }
}


/* MorvaNtilix adaptation additions */
.Ps5K7Rcnc { display:flex; gap:1rem; flex-wrap:wrap; margin-top:2rem; }
.Ps5K7Rcnc .y8V4S7Xacf, .Ps5K7Rcnc .VdFV0g { text-decoration:none; }
.AwA2dpY2G a { color:inherit; text-decoration:none; }
.u1IrzPZ4PdP { background: rgba(255,255,255,0.04); border:1px solid var(--card-border); padding:1.5rem; box-shadow:0 25px 80px rgba(0,240,255,0.08); }
.u1IrzPZ4PdP img, .PchqBDrY, .PxWL1hraC4 { width:100%; border-radius:0; display:block; object-fit:cover; border:1px solid var(--card-border); }
.u1IrzPZ4PdP img { height:280px; }
.EAWpyW { display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; margin-top:1rem; }
.M1emK9Dkyf { background:var(--card-bg); border:1px solid var(--card-border); padding:1rem; font-family:'Space Mono', monospace; font-size:.78rem; color:var(--text-muted); }
.NhXTND { padding:6rem 4%; display:flex; justify-content:center; }
.qZLwIM { max-width:var(--container-max); width:100%; }
.E1ZefvsKNm2 { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
.copy-card { background:var(--card-bg); border:1px solid var(--card-border); padding:2rem; }
.copy-card p { color:var(--text-muted); margin-top:1rem; }
.oYCYgFMgbxG { display:flex; gap:.7rem; flex-wrap:wrap; margin:.8rem 0 1rem; }
.oYCYgFMgbxG span { font-family:'Space Mono', monospace; font-size:.7rem; color:var(--cyan); border:1px solid var(--card-border); background:rgba(0,240,255,.06); padding:.25rem .55rem; }
.gallery-item .N4pj3f0AX { pointer-events:none; }
.yeyC9SCJ2f { padding:10rem 4% 5rem; display:flex; justify-content:center; }
.pFV42eBb { max-width:900px; width:100%; }
.mkNe5KVmfJ { background:var(--card-bg); border:1px solid var(--card-border); padding:2rem; margin-top:1.5rem; }
.mkNe5KVmfJ h2 { font-family:'Bebas Neue', sans-serif; letter-spacing:2px; font-size:2rem; margin-bottom:.8rem; }
.mkNe5KVmfJ p, .mkNe5KVmfJ li { color:var(--text-muted); }
.mkNe5KVmfJ ul { padding-left:1.2rem; }
.pJD6BkGICRi { list-style:none; padding-left:0!important; }
.pJD6BkGICRi li { margin:.45rem 0; }
.b8oVuYMlxCN { position:fixed; left:1rem; right:1rem; bottom:1rem; z-index:200; max-width:900px; margin:auto; background:rgba(5,11,24,.96); border:1px solid var(--card-border); padding:1rem; display:none; gap:1rem; align-items:center; justify-content:space-between; box-shadow:0 20px 70px rgba(0,0,0,.35); }
.b8oVuYMlxCN.active { display:flex; }
.b8oVuYMlxCN p { color:var(--text-muted); font-size:.9rem; }
.b8oVuYMlxCN button { padding:.65rem 1rem; background:linear-gradient(135deg,var(--cyan),var(--purple)); border:0; color:#050b18; font-family:'Space Mono', monospace; font-weight:700; cursor:pointer; white-space:nowrap; }
.wJYXUcZa { list-style:none; color:var(--text-muted); }
.wJYXUcZa li { margin-bottom:.55rem; }
@media (max-width: 768px) { .Ps5K7Rcnc { justify-content:center; } .E1ZefvsKNm2 { grid-template-columns:1fr; } .EAWpyW { grid-template-columns:1fr; } .b8oVuYMlxCN { flex-direction:column; align-items:flex-start; } }
