/* ==========================================================================
   NEWYORKED
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Rubik+Dirt&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;700&display=swap');

/* ==========================================================================
   CSS Variables (Neon Palette)
   ========================================================================== */

:root {
    --neon-pink: #FF1493;
    --neon-green: #00FF41;
    --neon-cyan: #00D9FF;
    --neon-yellow: #FFFF00;

    --dark-color: #0F0F0F;
    --dark-secondary: #1F1F1F;
    --dark-tertiary: #2B2B2B;

    --text-light: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);

    --transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --border-radius: 0px;
    --pointer-cursor: url('images/pointer.png') 4 4, pointer;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    cursor: url('images/cursor.png') 4 4, auto;
}

body {
    font-family: 'Fredoka', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-color);
    background-image:
        repeating-linear-gradient(0deg,
            rgba(255, 20, 147, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(255, 20, 147, 0.03) 3px),
        repeating-linear-gradient(90deg,
            rgba(255, 20, 147, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(255, 20, 147, 0.03) 3px);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--neon-pink);
    color: var(--text-light);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    font-weight: 700;
}

.skip-to-content:focus {
    top: 0;
}

/* ==========================================================================
   Container
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Rubik Dirt', system-ui;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    scroll-margin-top: 100px;
}

h1 {
    font-size: 4rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        2px 2px 0 var(--neon-pink),
        -2px -2px 0 var(--neon-cyan);
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.6));
}

h2 {
    font-size: 2.5rem;
    color: var(--neon-green);
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
    color: var(--neon-pink);
}

p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */

button,
input[type="submit"] {
    background: var(--neon-pink);
    color: var(--dark-color);
    border: 3px solid var(--neon-green);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    cursor: var(--pointer-cursor);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Rubik Dirt', system-ui;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-green);
    z-index: -1;
    transition: left 0.3s ease;
}

button:hover,
input[type="submit"]:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.8), 0 0 20px rgba(0, 255, 65, 0.6);
    color: var(--dark-color);
}

button:hover::before {
    left: 0;
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: var(--transition);
    cursor: var(--pointer-cursor);
}

a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--neon-pink);
    padding: 15px 0;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    font-size: 2rem;
    font-family: 'Rubik Dirt', system-ui;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.5));
    margin-right: auto;
}

.nav-brand-logo {
    height: 100px;
    width: auto;
    margin: -25px auto -25px 0;
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.5));
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--neon-cyan);
    font-weight: 600;
    position: relative;
    transition: var(--transition);
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.6);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-contact-btn {
    background: var(--neon-pink) !important;
    color: var(--text-light) !important;
    padding: 8px 16px !important;
    border-radius: 0 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.85rem !important;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.5) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    border: 3px solid var(--neon-green) !important;
}

.nav-contact-btn:hover {
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.8), 0 0 15px rgba(0, 255, 65, 0.5) !important;
    transform: scale(1.05) !important;
    cursor: var(--pointer-cursor) !important;
}

.nav-contact-btn::after {
    display: none !important;
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: var(--pointer-cursor);
    padding: 0;
    gap: 6px;
    z-index: 1000;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
    background: var(--neon-pink);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--neon-pink);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 3px solid var(--neon-pink);
        padding: 0;
        list-style: none;
    }

    .nav-links.active {
        max-height: 300px;
        padding: 20px 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        color: var(--neon-cyan);
        font-weight: 600;
    }

    .nav-links a:hover {
        background: rgba(255, 20, 147, 0.1);
        color: var(--neon-pink);
    }

    .nav-contact-btn {
        background: var(--neon-pink) !important;
        color: var(--text-light) !important;
        border: none !important;
        margin: 10px 20px !important;
        padding: 10px 20px !important;
        display: inline-block !important;
    }

    .nav-brand-logo {
        height: 50px;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: breathe 25s infinite ease-in-out;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    animation: imageBreathe 25s infinite ease-in-out;
}

@keyframes imageBreathe {
    0% {
        transform: scale(1) translateY(0px);
    }

    50% {
        transform: scale(1.08) translateY(-10px);
    }

    100% {
        transform: scale(1) translateY(0px);
    }
}

@keyframes breathe {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.1);
    }

    100% {
        filter: brightness(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(15, 15, 15, 0.7) 0%,
            rgba(31, 31, 31, 0.8) 50%,
            rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

/* Floating gradient orbs */
.hero-overlay::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 8s infinite ease-in-out;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 6s infinite ease-in-out reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(50px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out;
    transition: transform 0.3s ease;
    cursor: var(--pointer-cursor);
    user-select: none;
}

.hero-content:hover {
    transform: translateY(-10px) scale(1.02);
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
    transition: width 0.3s ease;
}

.hero-content:hover::after {
    width: 100px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon-badge {
    display: inline-block;
    border: 3px dashed var(--neon-yellow);
    color: var(--neon-yellow);
    padding: 12px 24px;
    font-size: 1.2rem;
    font-family: 'Rubik Dirt', system-ui;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(255, 255, 0, 0.6);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 50px rgba(255, 255, 0, 0.9);
        transform: scale(1.05);
    }
}

.hero-title {
    margin-bottom: 20px;
    margin-top: -40px;
    animation: glitch 3s infinite;
}

@keyframes glitch {

    0%,
    100% {
        text-shadow:
            2px 2px 0 var(--neon-pink),
            -2px -2px 0 var(--neon-cyan);
    }

    50% {
        text-shadow:
            -2px 2px 0 var(--neon-cyan),
            2px -2px 0 var(--neon-pink);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--neon-cyan);
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* ==========================================================================
   Sections & Cards
   ========================================================================== */

.section {
    padding: 80px 20px;
    position: relative;
    scroll-margin-top: 100px;
}

#features,
#about,
#contact,
#hero {
    scroll-margin-top: 100px;
}

.section .container>h2 {
    text-align: center;
}

.section .container>.section-subtitle {
    text-align: center;
}

.section:nth-child(odd) {
    background: var(--dark-color);
}

.section:nth-child(even) {
    background: var(--dark-secondary);
}

.section-subtitle {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.4);
}

.section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--neon-green);
    margin: 15px auto;
    box-shadow: 0 0 10px var(--neon-green);
}

.features-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(0, 255, 65, 0.08);
    border: 2px solid var(--neon-cyan);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    cursor: var(--pointer-cursor);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05) rotate(2deg);
    border-color: var(--neon-pink);
    background: rgba(255, 20, 147, 0.1);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.4), 0 0 20px rgba(0, 255, 65, 0.3);
}

.feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid var(--neon-cyan);
    filter: saturate(0.7) brightness(0.9);
    transition: filter var(--transition);
    display: block;
}

.feature-card:hover img {
    filter: saturate(1.3) brightness(1.2);
}

.feature-card h3 {
    color: var(--neon-green);
    margin: 15px 0;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: var(--pointer-cursor);
    border: 3px solid var(--neon-pink);
    transition: var(--transition);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: saturate(0.6) brightness(0.8);
    transition: filter var(--transition);
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 20, 147, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.6);
    border-color: var(--neon-green);
}

.gallery-item:hover img {
    filter: saturate(1.2) brightness(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.coming-soon-text {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Rubik Dirt', system-ui;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
    position: relative;
    background: var(--text-light);
    color: var(--dark-color);
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}

.about-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.4);
    text-align: center;
}

.about-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: center;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(5px);
    padding: 20px;
    border: 1px solid var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.2);
    margin-bottom: 20px;
    transform: skew(-1deg);
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */

.newsletter-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
    text-align: center;
    border-top: 3px solid var(--neon-cyan);
    border-bottom: 3px solid var(--neon-green);
}

.newsletter-section h2,
.newsletter-section .section-subtitle {
    color: var(--text-light);
}

.newsletter-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 20px;
}

/* Copy Email Button */
.copy-email-btn {
    background: var(--neon-pink);
    color: var(--text-light);
    border: 3px solid var(--neon-green);
    padding: 16px 40px;
    border-radius: 0;
    cursor: var(--pointer-cursor);
    font-size: 1.2rem;
    font-family: 'Rubik Dirt', system-ui;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
}

.copy-email-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-green);
    z-index: -1;
    transition: left 0.3s ease;
}

.copy-email-btn:hover {
    color: var(--dark-color);
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.8), 0 0 20px rgba(0, 255, 65, 0.6);
}

.copy-email-btn:hover::before {
    left: 0;
}

.email-text {
    font-weight: 700;
    display: block;
}

.copy-hint {
    font-size: 0.7rem;
    opacity: 0.8;
    display: block;
    margin-top: 2px;
}

.copy-email-btn.copied .copy-hint::after {
    content: ' ✓ COPIED!';
    color: var(--neon-yellow);
    font-weight: 700;
}

/* ==========================================================================
   Contact Section (Ransom Note)
   ========================================================================== */

.contact-section {
    background: linear-gradient(135deg, #1a0033 0%, var(--dark-color) 50%, #1a3300 100%);
    text-align: center;
    border-top: 3px dashed var(--neon-pink);
    border-bottom: 3px dashed var(--neon-green);
}

.contact-section .container>h2 {
    text-align: center;
}

.contact-section h2 {
    color: var(--neon-yellow);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    text-align: center;
}

.ransom-note-container {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(0, 255, 65, 0.1) 100%);
    border: 3px dashed var(--neon-cyan);
    padding: 40px;
    margin: 50px auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 30px rgba(255, 20, 147, 0.3),
        inset 0 0 30px rgba(0, 255, 65, 0.1);
}

.ransom-note {
    text-align: center;
}

.ransom-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    align-items: baseline;
}

.ransom-letter {
    display: inline-block;
    transition: var(--transition);
    font-size: calc(20px + var(--index) * 2px);
    color: hsl(calc(var(--index) * 15deg), 100%, 50%);
    font-family: 'Comic Sans MS', 'Arial Black', 'Georgia', cursive, serif, sans-serif;
    transform: rotate(calc(var(--index) * -3deg + -8deg)) skew(calc(var(--index) * 1deg));
    text-shadow:
        2px 2px 0 hsl(calc(var(--index) * 15deg + 30deg), 100%, 40%),
        4px 4px 0 rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 20, 147, 0.6);
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.8)) drop-shadow(0 0 5px rgba(0, 255, 65, 0.5));
    animation: ransom-letter-pop 0.6s ease-out calc(var(--index) * 0.05s) both;
    font-weight: 900;
}

@keyframes ransom-letter-pop {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(calc(var(--index) * -3deg + -8deg + 45deg)) skew(calc(var(--index) * 1deg));
    }

    to {
        opacity: 1;
        transform: rotate(calc(var(--index) * -3deg + -8deg)) skew(calc(var(--index) * 1deg));
    }
}

.ransom-letter:hover {
    animation: sparkle 0.5s ease-in-out;
    transform: rotate(calc(var(--index) * -3deg + -8deg)) skew(calc(var(--index) * 1deg)) scale(1.2);
}

@keyframes sparkle {

    0%,
    100% {
        text-shadow: 2px 2px 0 hsl(calc(var(--index) * 15deg + 30deg), 100%, 40%), 4px 4px 0 rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 20, 147, 0.6);
    }

    50% {
        text-shadow: 2px 2px 0 hsl(calc(var(--index) * 15deg + 30deg), 100%, 40%), 4px 4px 0 rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 255, 0, 1), 0 0 20px rgba(0, 255, 65, 0.8);
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
    border-top: 3px solid var(--neon-yellow);
    padding: 60px 20px 30px;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Modal
   ========================================================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
    border: 2px solid var(--neon-green);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    margin: auto;
    display: block;
    width: 98%;
    max-width: 90vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoom 0.3s ease-out;
    border: 3px solid var(--neon-pink);
    box-shadow: 0 0 50px rgba(255, 20, 147, 0.6), 0 0 30px rgba(0, 255, 65, 0.4);
    max-height: 90vh;
    object-fit: contain;
}

@keyframes zoom {
    from {
        transform: translate(-50%, -50%) scale(0.5);
    }

    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--neon-green);
    font-size: 40px;
    font-weight: bold;
    cursor: var(--pointer-cursor);
    transition: var(--transition);
    z-index: 1001;
    font-family: 'Rubik Dirt', system-ui;
}

.modal-close:hover {
    color: var(--neon-pink);
    transform: rotate(90deg) scale(1.2);
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

.fade-in {
    animation: fadeInUp 0.6s ease-out !important;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section {
        padding: 60px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 2fr;
        gap: 20px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
    }

    .ransom-note-container {
        padding: 20px;
    }

    .ransom-letter {
        font-size: calc(16px + var(--index) * 1px) !important;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 10px;
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    button,
    input[type="submit"] {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .copy-email-btn {
        font-size: 1rem;
        padding: 12px 24px;
    }

    .ransom-letter {
        font-size: calc(14px + var(--index) * 0.5px) !important;
    }
}