        /* Global Resets and Base Styles */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
            background: linear-gradient(160deg, #0D172E 0%, #10244F 100%);
            color: #D1D5DB;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Scrollbar Styling (WebKit browsers) */
        ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #0D172E;
        }

        ::-webkit-scrollbar-thumb {
            background: #2A3F6B;
            border-radius: 5px;
            border: 2px solid #0D172E;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #79F2EC;
        }

        /* Header Styling */
        .header {
            text-align: center;
            padding: 0px 20px 40px 20px;
            color: #FFFFFF;
            position: relative;
        }

        .header-content {
            max-width: 850px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .header h1 {
            font-size: 3.4rem;
            margin-bottom: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            background: linear-gradient(90deg, #79F2EC, #A076F9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .project-tagline {
            font-size: 1.2rem;
            color: #9CA3AF;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .project-description {
            font-size: 1.05rem;
            color: #9CA3AF;
            line-height: 1.75;
            max-width: 700px;
            margin: 0 auto 15px auto;
            /* Adjusted bottom margin */
            font-weight: 400;
        }

        .project-attribution {
            font-size: 0.95em;
            color: #8892b0;
            /* Slightly muted color for attribution */
            margin: 0 auto 30px auto;
            /* Spacing around attribution */
            max-width: 700px;
        }

        .project-attribution .creator-link {
            color: #79F2EC;
            /* Teal accent */
            text-decoration: none;
            font-weight: 500;
            /* Make creator link slightly prominent */
            transition: color 0.2s ease, text-decoration 0.2s ease;
        }

        .project-attribution .creator-link:hover,
        .project-attribution .creator-link:focus {
            color: #A076F9;
            /* Purple accent on hover/focus */
            text-decoration: underline;
            outline: none;
        }

        .community-links {
            margin-top: 30px;
            margin-bottom: 10px;
        }

        .discord-button {
            display: inline-block;
            background-color: #5865F2;
            color: #FFFFFF;
            padding: 12px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: background-color 0.2s ease, transform 0.2s ease;
            border: 1px solid transparent;
        }

        .discord-button:hover,
        .discord-button:focus {
            background-color: #4f5bd4;
            transform: translateY(-2px);
            outline: none;
            border-color: #79F2EC;
            box-shadow: 0 0 10px rgba(121, 242, 236, 0.3);
        }

        main {
            flex-grow: 1;
        }

        /* Gallery Grid Styling - Masonry with CSS Columns */
        .grid {
            padding: 25px;
            max-width: 1800px;
            margin: 0 auto;
            column-width: 280px;
            gap: 22px;
        }

        /* Individual Item Styling */
        .item {
            position: relative;
            background-color: #1A2B4A;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2A3F6B;
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            animation: fadeInItem 0.6s ease-out forwards;
            break-inside: avoid;
        }

        .item:hover,
        .item:focus-within {
            transform: translateY(-6px) scale(1.015);
            border-color: #79F2EC;
            box-shadow: 0 0 25px rgba(121, 242, 236, 0.2);
        }

        .item a {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .item img {
            display: block;
            width: 100%;
            height: auto;
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .item:hover img,
        .item:focus-within img {
            transform: scale(1.07);
        }

        /* Information Overlay Styling */
        .info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(26, 43, 74, 0.98) 20%, rgba(26, 43, 74, 0.85) 60%, transparent 100%);
            color: #D1D5DB;
            padding: 20px 15px 12px 15px;
            font-size: 13px;
            text-align: left;
            opacity: 0;
            transform: translateY(15px);
            transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            pointer-events: none;
        }

        .item:hover .info,
        .item:focus-within .info {
            opacity: 1;
            transform: translateY(0);
        }

        .info-city {
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
            font-size: 1.1em;
            letter-spacing: 0.2px;
            color: #FFFFFF;
        }

        .info-date {
            font-size: 0.85em;
            opacity: 0.85;
            color: #9CA3AF;
        }

        @keyframes fadeInItem {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.98);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Responsive adjustments */
        @media (max-width: 1400px) {
            .grid {
                column-width: 260px;
                gap: 20px;
            }
        }

        @media (max-width: 1200px) {
            .grid {
                column-width: 240px;
                gap: 18px;
            }
        }

        @media (max-width: 992px) {
            .header h1 {
                font-size: 3rem;
            }

            .project-tagline {
                font-size: 1.15rem;
            }

            .grid {
                column-width: 220px;
                gap: 18px;
                padding: 20px;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 50px 15px 30px 15px;
            }

            .header h1 {
                font-size: 2.6rem;
            }

            .discord-button {
                padding: 10px 20px;
                font-size: 1rem;
            }

            .grid {
                column-width: 200px;
                gap: 15px;
                padding: 15px;
            }

            .item {
                border-radius: 10px;
            }

            .info {
                font-size: 12px;
                padding: 15px 12px 10px 12px;
            }
        }

        @media (max-width: 576px) {
            .header h1 {
                font-size: 2.2rem;
            }

            .grid {
                column-width: 100%;
                gap: 20px;
            }

            .project-attribution {
                font-size: 0.9em;
            }
        }

        /* Footer Styling */
        .footer {
            text-align: center;
            padding: 40px 20px 30px 20px;
            color: #9CA3AF;
            font-size: 0.9em;
            border-top: 1px solid #2A3F6B;
            margin-top: 50px;
        }

        .footer p {
            margin-bottom: 8px;
        }

        .footer-links {
            margin-top: 10px;
        }

        .footer-links a {
            color: #79F2EC;
            text-decoration: none;
            margin: 0 10px;
        }

        .footer-links a:hover,
        .footer-links a:focus {
            text-decoration: underline;
            outline: none;
        }

        .navbar {
            background: rgba(13, 23, 46, 0.95);
            border-bottom: 1px solid #2A3F6B;
            padding: 12px 24px;
            position: relative;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-logo {
            font-size: 1.4rem;
            font-weight: 600;
            color: #79F2EC;
            text-decoration: none;
        }

        .navbar-links {
            display: flex;
            gap: 20px;
        }

        .nav-link {
            color: #D1D5DB;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 8px 14px;
            border-radius: 6px;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .nav-link:hover,
        .nav-link:focus {
            background-color: rgba(255, 255, 255, 0.07);
            color: #A076F9;
            outline: none;
        }