:root {
            --primary-color-1: #6a11cb;
            --primary-color-2: #2575fc;
            --accent-color: #ec008c;
            --text-color: #ffffff;
            --bg-glass: rgba(255, 255, 255, 0.1);
            --border-glass: rgba(255, 255, 255, 0.2);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DynaPuff', cursive;
            background: linear-gradient(45deg, var(--primary-color-1), var(--primary-color-2), var(--accent-color));
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            color: var(--text-color);
            line-height: 1.6;
        }

        body.nav-open {
            overflow: hidden;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Navigation */
        .main-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 2rem;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-color);
            text-decoration: none;
        }

        .hamburger-menu {
            background: none;
            border: none;
            cursor: pointer;
            width: 30px;
            height: 24px;
            z-index: 1001;
            position: relative;
        }

        .hamburger-menu span {
            width: 30px;
            height: 3px;
            transition: all 0.3s ease-in-out;
            position: absolute;
            left: 0;
        }

        .hamburger-menu span:nth-child(1) {
            top: 0;
            background: #00ff19;
        }

        .hamburger-menu span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
            background: var(--text-color);
        }

        .hamburger-menu span:nth-child(3) {
            bottom: 0;
            background: #ff79d2;
        }

        body.nav-open .hamburger-menu span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        body.nav-open .hamburger-menu span:nth-child(2) {
            opacity: 0;
        }

        body.nav-open .hamburger-menu span:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 999;
            display: flex;
            justify-content: center;
            align-items: center;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        body.nav-open .nav-overlay {
            visibility: visible;
            opacity: 1;
        }

        .overlay-menu {
            list-style: none;
            text-align: center;
        }

        .overlay-menu li {
            margin: 2rem 0;
        }

        .overlay-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 2.5rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .overlay-menu a:hover {
            color: #ff79d2;
        }

        /* Header */
        .main-header {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative; /* Added for positioning context */
        }

        .main-header h1 {
            font-size: 18vw;
            font-weight: 700;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(0,0,0,0.2);
            line-height: 1;
            display: flex;
        }

        .main-header h1 .char {
            display: inline-block;
            animation-name: bounce-in-place;
            animation-duration: 1.5s;
            animation-fill-mode: forwards; /* Stay at the final state */
        }

        @keyframes bounce-in-place {
            0%   { transform: scale(1,1)      translateY(0); }
            10%  { transform: scale(1.1,.9)   translateY(0); }
            30%  { transform: scale(.9,1.1)   translateY(-60px); }
            50%  { transform: scale(1.05,.95) translateY(0); }
            57%  { transform: scale(1,1)      translateY(-7px); }
            64%  { transform: scale(1,1)      translateY(0); }
            100% { transform: scale(1,1)      translateY(0); }
        }

        /* Stagger the animation delay */
        .main-header h1 .char:nth-child(1) { animation-delay: 0.1s; }
        .main-header h1 .char:nth-child(2) { animation-delay: 0.2s; }
        .main-header h1 .char:nth-child(3) { animation-delay: 0.3s; }
        .main-header h1 .char:nth-child(4) { animation-delay: 0.4s; }
        .main-header h1 .char:nth-child(5) { animation-delay: 0.5s; }
        .main-header h1 .char:nth-child(6) { animation-delay: 0.6s; }

        .header-overlay-image {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 400px; /* Adjust size as needed */
            pointer-events: none; /* Prevents image from blocking text interaction */
            opacity: 0.9;
            transform: translate(-55%, 15%);
        }

        .main-header .subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            margin-top: 0.5rem;
        }

        .main-header h1, .main-header .subtitle {
            transform: translateY(-6rem); /* Moves text up */
        }

        /* Page Header for subpages */
        .page-header {
            height: 40vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding-top: 5rem;
        }

        .page-header h1 {
            font-size: 10vw;
            font-weight: 700;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(0,0,0,0.2);
            line-height: 1;
        }

        .page-header .subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            margin-top: 0.5rem;
        }

        /* Section Base */
        .section {
            padding: 6rem 0;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--text-color);
            border-radius: 2px;
            opacity: 0.8;
        }
        
        /* About Section */
        #about {
            padding-bottom: 0;
        }
        #about p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* Collections Section */
        .collections-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 1rem;
        }

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

        .collection-card {
            background: var(--bg-glass);
            border: 1px solid var(--border-glass);
            border-radius: 15px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .collection-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .collection-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .collection-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .collection-card p {
            font-size: 0.85rem;
            font-weight: 300;
        }

        a.collection-card {
            text-decoration: none;
            color: var(--text-color);
        }

        /* Community Section */
        .social-links {
            margin-top: 3rem;
        }

        .social-btn {
            display: inline-block;
            text-decoration: none;
            color: var(--text-color);
            background: var(--bg-glass);
            border: 1px solid var(--border-glass);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            margin: 0 1rem;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .social-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Footer */
        .main-footer {
            text-align: center;
            padding: 2rem 0;
            margin-top: 4rem;
            background: rgba(0,0,0,0.1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-header h1 {
                font-size: 12vw;
            }
            .header-overlay-image {
                width: 120px;
                /* Animation for mobile needs to match */
                animation: none; /* Optional: disable on mobile if too distracting */
                opacity: 0.9;
                transform: translate(-50%, -50%);
            }
            .main-header .subtitle {
                font-size: 1.2rem;
            }
            .page-header h1 {
                font-size: 15vw;
            }
            .section {
                padding: 4rem 0;
            }
            .section-title {
                font-size: 2rem;
            }
            .collections-grid {
                grid-template-columns: 1fr;
            }
            .social-btn {
                display: block;
                margin: 1rem auto;
                width: 80%;
            }
            .overlay-menu a {
                font-size: 2rem;
            }
        }