:root {
    --bg-dark: #0B0E14;
    --bg-card: #151A22;
    --text-primary: #FFFFFF;
    --text-secondary: #8B99A4;
    --hl-green: #98FCE4;
    --hl-green-glow: rgba(152, 252, 228, 0.2);
    --border-color: #2A3441;
}

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

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
}

.highlight {
    background: rgba(152, 252, 228, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--hl-green);
}

.highlight-text {
    color: var(--hl-green);
    font-weight: bold;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(11, 14, 20, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

.nav-content {
    max-width: 1024px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-handle {
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-dark) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.1s;
    cursor: pointer;
    border: none;
}

.btn-primary:active {
    transform: scale(0.97);
}

/* Main */
main {
    max-width: 1024px;
    margin: 0 auto;
    padding: 2rem 1.5rem 6rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    min-height: 80vh;
    padding-top: 2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.dress-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    margin-top: 3rem;
}

.dress-view {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.dress-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

.spot {
    position: absolute;
    background: rgba(11, 14, 20, 0.4);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: white;
}

.spot:hover {
    background: var(--hl-green-glow);
    border-color: var(--hl-green);
    transform: scale(1.05);
}

.spot-plus {
    font-size: 1.5rem;
    font-weight: 300;
}

.spot-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    font-weight: bold;
    margin-top: 4px;
    background: rgba(0,0,0,0.6);
    padding: 2px 4px;
    border-radius: 4px;
}

/* Progress */
.progress-section {
    max-width: 768px;
    margin: 0 auto;
    width: 100%;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0.75rem;
}

.progress-bar-bg {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--hl-green);
    transition: width 1s ease-out;
}

.progress-footer {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 0.75rem;
}

/* Banner */
.banner {
    background: #98FCE4; /* Hyperliquid Neon Teal */
    color: #0B0E14; /* Dark text for contrast */
    margin: 0 -1.5rem; /* Full bleed hack */
    padding: 4rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.banner-subtitle {
    color: #151A22;
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-top: 0.5rem;
}

@keyframes jiggle {
    0% { transform: rotate(-10deg) scale(1); }
    25% { transform: rotate(-2deg) scale(1.05) translateY(-5px); }
    50% { transform: rotate(-18deg) scale(1) translateY(0); }
    75% { transform: rotate(-5deg) scale(1.02) translateY(-2px); }
    100% { transform: rotate(-10deg) scale(1); }
}

.jeff-sticker {
    position: absolute;
    right: 8%;
    bottom: -15px;
    height: 180px;
    width: auto;
    z-index: 1;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.4));
    mix-blend-mode: multiply; /* This removes the white background if the image isn't perfectly transparent */
    animation: jiggle 0.5s infinite ease-in-out;
    transform-origin: bottom center;
}

@media (max-width: 768px) {
    .jeff-sticker {
        height: 110px;
        right: -10px;
        bottom: -10px;
    }
}

/* Common Section Styles */
.section-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--hl-green);
    letter-spacing: 0.1em;
    font-weight: 600;
}

.section-title {
    font-size: 2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Spots List */
.spots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .spots-grid {
        grid-template-columns: 1fr;
    }
}

.spots-column {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.spots-header {
    background: var(--bg-dark);
    padding: 0.75rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    letter-spacing: 0.05em;
}

.spot-item {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.2s;
}

.spot-item:hover {
    background: rgba(255,255,255,0.03);
}

.spot-item:last-child {
    border-bottom: none;
}

.spot-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.spot-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: bold;
    width: 20px;
}

.spot-name {
    font-weight: 600;
    font-size: 0.95rem;
    flex: 1;
}

.spot-tag {
    background: var(--hl-green-glow);
    color: var(--hl-green);
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.spot-status {
    background: var(--bg-dark);
    color: var(--text-secondary);
    font-size: 0.6rem;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.spot-price {
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
    color: var(--hl-green);
}

.spot-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    margin-left: 2.2rem;
}

/* How Section */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.small-address {
    font-size: 0.65rem;
    word-break: break-all;
    font-family: 'JetBrains Mono', monospace;
    color: var(--hl-green);
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-dark);
    color: var(--hl-green);
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Perks */
.perks-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.perks-list li {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
}

.check {
    color: var(--hl-green);
    font-weight: bold;
}

/* About Section */
.about-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 640px) {
    .about-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.about-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.social-link {
    color: var(--hl-green);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.social-link:hover {
    text-decoration: underline;
}

/* Floating GIFs */
.floating-gif {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    z-index: 10;
    pointer-events: none; /* so they don't block clicks */
}
.floating-gif .tenor-gif-embed,
.floating-gif iframe {
    background-color: transparent !important;
}
.left-gif {
    left: 20px;
}
.right-gif {
    right: 20px;
}
@media (max-width: 1200px) {
    .floating-gif {
        display: none; /* Hide on smaller screens where there is no space */
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    max-width: 450px;
    width: 90%;
    position: relative;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.close-btn:hover {
    color: white;
}

.modal h2 {
    margin-bottom: 1rem;
}

.modal p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.address-box {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.address-box code {
    font-family: 'JetBrains Mono', monospace;
    color: var(--hl-green);
    font-size: 0.8rem;
    word-break: break-all;
}

#copy-btn {
    background: var(--hl-green-glow);
    color: var(--hl-green);
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
}

#copy-btn:hover {
    background: rgba(152, 252, 228, 0.3);
}

.modal-btn {
    display: inline-block;
    width: 100%;
}
