:root {
    --cyan: #c9a24a;
    --magenta: #7f1d2d;
    --purple: #102a46;
    --deep-purple: #8b6f3e;
    --dark-bg: #07080d;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #e8e8ed;
    --text-muted: #6b6b7a;
    --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;
}

.gIYp6V {
    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 */
.d7mVsgXB {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

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

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

.u0qz2NkCoev {
    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);
}

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

.hmM9LgqG6nV {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #fbbf24, #f472b6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hmM9LgqG6nV 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;
}

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

.BRmmdoYOF 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);
}

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

.BmKF3l {
    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;
}

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

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

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

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

.HpYMDW {
    padding-left: 0;
}

.Yh9LUQRC {
    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;
}

.Yh9LUQRC::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; }
}

.clbPsfptGK 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;
}

.clbPsfptGK h1 .vBFffA6aYy {
    display: block;
    color: var(--text-main);
}

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

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

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

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

.hwp2kSzj38f {
    text-align: left;
}

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

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

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

.e5xdfD {
    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;
}

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

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

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

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

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

.uMM8Q7FdYl {
    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;
}

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

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

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

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

.Bgcrnlg {
    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;
}

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

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

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

.A1nzoNR96h {
    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;
}

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

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

.win7hSxrjo {
    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;
}

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

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

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

.win7hSxrjo.vash22J25 {
    pointer-events: none;
}

.win7hSxrjo .gGNMH0k {
    transition: opacity 0.3s;
}

.win7hSxrjo.vash22J25 .gGNMH0k {
    opacity: 0;
}

.win7hSxrjo .ue6Rnlv {
    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;
}

.win7hSxrjo.vash22J25 .ue6Rnlv {
    opacity: 1;
    animation: spin 0.8s linear infinite;
}

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

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

.v4jEa7m {
    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;
}

.v4jEa7m.YnxMMnM {
    border: none;
    background: none;
}

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

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

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

.oSaevJIr.zmJk8fsl {
    display: block;
}

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

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

.mWx3dup9x.zmJk8fsl {
    display: flex;
}

.CeGUFVF {
    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;
}

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

/* Floating decoration */
.ymBkAlrg {
    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);
}

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

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

/* Gallery Popup */
.Qmi8YupBq {
    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;
}

.Qmi8YupBq.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);
}

.kxaOIeM3Ak0 {
    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;
}

.Qmi8YupBq.active .kxaOIeM3Ak0 {
    transform: scale(1) translateY(0);
}

.vIVh8zyz {
    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;
}

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

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

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

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

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

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

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

.AFkoC1Wvdu3 {
    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 */
.g5SQuvdpI {
    padding: 6rem 4%;
    position: relative;
}

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

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

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

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

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

.RTCzWuwQB1W {
    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;
}

.hVcpRwaWaz {
    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 */
.LAiw3SVd {
    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;
}

.lHOEqmuPYPu {
    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 .lHOEqmuPYPu {
    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 */
.Nivzm7 {
    padding: 6rem 4%;
}

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

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

.ZbE837 {
    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.UO47jH8 {
    grid-row: span 2;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 3px solid #5a5a62;
}

.feature-card.UO47jH8::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 */
.wwRNmr {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

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

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

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

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

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

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

/* Decorative number for each card */
.t4pTG3JVU {
    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;
}

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

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

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

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

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

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

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

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

.OR5in7bV3::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;
}

.g2f7JpxQ {
    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;
}

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

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

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

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

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

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

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

.IFzYcTDTvm {
    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;
}

.IFzYcTDTvm::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;
}

.IFzYcTDTvm.prpreb8h::after {
    transform: translateX(24px);
}

.LrWzRan {
    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);
}

.KVEpASC {
    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.vMlUnN {
    border-color: #5a5a62;
    background: var(--card-bg);
}

.ZI2n8fdF {
    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;
}

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

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

.LchGaQSw {
    margin-bottom: 1.5rem;
}

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

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

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

.kbvOcS3s.zmJk8fsl {
    visibility: visible;
    opacity: 1;
}

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

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

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

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

.asX6iEq6xYE {
    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;
}

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

.price-card.vMlUnN .asX6iEq6xYE {
    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.vMlUnN .asX6iEq6xYE::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.vMlUnN .asX6iEq6xYE:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.nul0kxx {
    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);
}

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

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

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

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

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

.gHEYxa2AvUZ {
    position: relative;
}

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

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

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

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

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

.HD554uZF {
    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;
}

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

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

.o1Ac6HNh {
    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;
}

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

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

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

.nMIl88ueAB {
    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;
}

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

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

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

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

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

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

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

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

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

.QFnsjaj {
    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);
}

.PnlUIham {
    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;
}

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

.xyRZGOUJzT {
    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);
}

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

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

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

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

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

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

.xUmDya .hmM9LgqG6nV {
    margin-bottom: 1rem;
}

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

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

.VV5lVGvjHia {
    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;
}

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

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

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

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

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

.HcdTYeLh8m {
    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;
}

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

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

.EmHQVIvn {
    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;
}

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

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

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

.Z2sKMEsP ul {
    list-style: none;
}

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

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

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

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

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

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

.ItEdm3n9a5 a:hover {
    opacity: 0.7;
}

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

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

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

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

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

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

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

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

.T89CSy4Ib {
    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;
}

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

.T89CSy4Ib 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;
}

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

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

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

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

.T89CSy4Ib.active .BmKF3l {
    transform: translateX(0);
    opacity: 1;
}

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

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

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

    .uGMgbim {
        margin: 0 auto 2.5rem;
    }

    .OarKTBc {
        justify-content: center;
    }

    .LAiw3SVd {
        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;
    }

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

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

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

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

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

    .BRmmdoYOF, .BmKF3l {
        display: none;
    }

    .gZhmeHLYQ6D {
        display: flex;
    }

    .clbPsfptGK {
        padding-top: 8rem;
    }

    .ymBkAlrg {
        display: none;
    }

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

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

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

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

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

    .OR5in7bV3::before {
        display: none;
    }

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

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

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

    .cMvGfl7 {
        flex-direction: column;
    }

    .EmHQVIvn {
        width: 100%;
    }

    .YKyQ5JFgQzm {
        justify-content: center;
    }

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

    .GsRW7z {
        flex-direction: column;
    }

    .k9mZhf {
        min-width: 100%;
    }

    .b5GYu0gin {
        width: 100%;
    }

    .A1nzoNR96h {
        flex: 1;
    }

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

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

    .H9LlSDDFu {
        justify-content: center;
    }

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

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

/* Kynterokasino adaptation additions */
.BmKF3l a,.HD554uZF,.o1Ac6HNh,.asX6iEq6xYE{color:inherit;text-decoration:none;display:inline-block}.vhv7tFrer{display:inline-flex;margin:1rem 0;padding:.7rem 1rem;border:1px solid rgba(201,162,74,.45);background:rgba(201,162,74,.08);color:#f4e6bd;font-family:'Space Mono',monospace;font-size:.85rem;border-radius:999px}.IhwGXR{color:var(--text-muted);font-size:1.05rem;line-height:1.8;max-width:760px}.JnMjKjVUgC{padding:7rem 4%;}.XLaSAlSfn1{max-width:var(--container-max);margin:0 auto}.ZPb79fu,.r4g7cnxBIxl{display:grid;grid-template-columns:1fr 1fr;gap:2rem}.contact-card,.legal-card{background:var(--card-bg);border:1px solid var(--card-border);border-radius:14px;padding:2rem}.contact-card h3,.legal-card h3{font-family:'Bebas Neue';letter-spacing:1px;font-size:1.6rem;margin-bottom:1rem}.contact-card p,.legal-card p,.legal-card li{color:var(--text-muted);margin-bottom:.7rem}.g5L2xNygY5D{display:grid;gap:1rem}.iIEVgS9,.TXkqSP{width:100%;padding:1rem 1.2rem;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.12);border-radius:8px;color:var(--text-main);font-family:'Outfit';outline:none}.iIEVgS9:focus,.TXkqSP:focus{border-color:rgba(201,162,74,.5);background:rgba(255,255,255,.08)}.form-message{font-family:'Space Mono';font-size:.8rem;color:#f4e6bd;min-height:1.2rem}.va7KXZ{position:fixed;left:1rem;right:1rem;bottom:1rem;z-index:300;max-width:760px;margin:auto;background:rgba(7,8,13,.95);border:1px solid rgba(201,162,74,.35);border-radius:14px;padding:1rem 1.2rem;display:none;gap:1rem;align-items:center;box-shadow:0 20px 60px rgba(0,0,0,.45)}.va7KXZ.active{display:flex}.va7KXZ p{color:var(--text-muted);font-size:.9rem}.va7KXZ button{white-space:nowrap}.yAq53o1QL{color:#f4e6bd;font-size:.85rem;border-top:1px solid var(--card-border);padding-top:1rem;margin-top:1rem}.Dpas1Kn2IR .e5xdfD{background-size:cover;background-position:center}.azTnQj{min-height:520px;background-size:cover;background-position:center;border:1px solid var(--card-border);border-radius:16px;position:relative;overflow:hidden}.azTnQj:after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,transparent,rgba(7,8,13,.65))}.Y7Caaf7{list-style:none;margin-top:1rem}.Y7Caaf7 li{color:var(--text-muted);padding:.55rem 0;border-bottom:1px solid var(--card-border)}@media(max-width:900px){.ZPb79fu,.r4g7cnxBIxl{grid-template-columns:1fr}.va7KXZ{flex-direction:column;align-items:flex-start}.azTnQj{min-height:320px}}
