        @font-face 
        {
            font-family: DynaPuff;
            src: url(fonts/DynaPuff/DynaPuff-VariableFont_wdth,wght.ttf);
        }
        body 
        {
            margin: 0;
            font-family: DynaPuff;
            background: #ffffff;
            overflow-x: hidden; /* Prevent horizontal scroll */
        }

        .black-section 
        {
            height: 100vh;
            background: #000000;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: -2;
        }

        .floating-text 
        {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 8vw;
            color: black;
            transition: all 0.5s ease;
            z-index: 5;
            white-space: nowrap;
        }

        .hidden-text 
        {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.5s ease;
            color: white;
            font-size: clamp(1.5em, 2.5vw, 2em);
            position: absolute;
            padding: 0 2rem;
            max-width: 90%;
            left: 50%;
            transform: translateX(-50%) translateY(50px);
            z-index: 20;
        }

        .visible 
        {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .final-text 
        {
            font-size: 2em !important;
            color: #229fff !important;
        }

        li::marker 
        {
            color: #229fff;
        }

        .downthem-text
        {
            color: #229fff;
        }

        /* Navigation Bar Styles */
        .navbar {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(-150%);
            width: 95%;
            max-width: 1000px;
            background: linear-gradient(135deg, #1f8fe6 0%, #1565c0 100%);
            padding: 0;
            z-index: 1000;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 8px 32px rgba(21, 101, 192, 0.4);
            border-radius: 50px;
            backdrop-filter: blur(10px);
        }

        .navbar.visible {
            transform: translateX(-50%) translateY(0);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2.5rem;
            height: 60px;
            border-radius: 50px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .nav-icon {
            height: 40px;
            width: 40px;
            border-radius: 50%;
            background: transparent;
            object-fit: cover;
            object-position: center;
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0;
        }

        .nav-connect-text {
            color: white;
            font-family: DynaPuff, sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            opacity: 0.9;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 2rem;
        }

        .nav-item {
            margin: 0;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-family: DynaPuff, sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
            padding: 10px 20px;
            border-radius: 25px;
        }

        .nav-link:hover {
            background: rgba(255,255,255,0.15);
            color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        /* Mobile Navigation */
        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .bar {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .nav-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active .bar:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .nav-toggle.active .bar:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* Discord Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background: linear-gradient(135deg, #1f8fe6 0%, #1565c0 100%);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 0;
            border-radius: 15px;
            width: 300px;
            max-width: 90%;
            box-shadow: 0 8px 32px rgba(21, 101, 192, 0.4);
            overflow: hidden;
        }

        .modal-header {
            background: rgba(0,0,0,0.1);
            padding: 15px 20px 10px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            position: relative;
        }

        .close {
            color: #ff4444;
            float: right;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
            background: rgba(255,255,255,0.1);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close:hover {
            background: rgba(255,68,68,0.2);
            transform: scale(1.1);
        }

        .modal-body {
            padding: 30px 20px;
            text-align: center;
        }

        .modal-text {
            color: white;
            font-family: DynaPuff, sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            margin: 0 0 20px 0;
        }

        .discord-handle {
            font-family: DynaPuff, sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .at-symbol {
            color: white;
            font-size: 1.4rem;
        }

        .username {
            color: #1f8fe6;
            background: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 700;
        }

        .nav-icon {
            height: 40px;
            width: 40px;
            border-radius: 50%;
            background: transparent;
            object-fit: cover;
            object-position: center;
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .nav-icon:hover {
            transform: scale(1.05);
        }

        .r6-glitch-2
        {
          
            position: relative;
            left: 65%;
            bottom:  -50px;
            width:  min(450px, 40vw);
            max-width: 90%;
            border-radius: 45px;
            transform: rotate(4deg);
            z-index: 10;      
        }
        
        .r6-text2
        {
            color: #1f8fe6;
            position: absolute;
            left: 60%;
            top: -150px;
            font-size: clamp(80px, 15vw, 200px);
            z-index: 15;
        }

        .r6-text-mini2
        {
            position: absolute;
            left: 65%;
            bottom: 600px;
            font-size: clamp(14px, 2vw, 20px);
            transform: rotate(4deg);
            z-index: 15;
        }

        .printer-3d
        {
            position: relative;
            bottom: -170px;
            right: -55px;
            width:  min(350px, 35vw);
            max-width: 90%;
            padding: 20px;
            border-radius: 45px;
            transform: rotate(358deg);
            z-index: 10;
        }
        
        .printer-text
        {
            color: #1f8fe6;
            position: absolute;
            right: 71%;
            top: 270px;
            font-size: clamp(80px, 15vw, 200px);
            z-index: 15;
        }

        .printer-text-mini
        {
            position: absolute;
            bottom: 125px;
            left: 90px;
            font-size: clamp(14px, 2vw, 20px);
            transform: rotate(358deg);
            z-index: 15;
        }

        .cod-glitch
        {
            position: relative;
            bottom: -13vw;
            left: 70vw;
            width:  min(350px, 35vw);
            max-width: 90%;
            padding: 20px;
            border-radius: 45px;
            transform: rotate(2deg);
            z-index: 10;
        }

        .cod-text
        {
            color: #1f8fe6;
            position: absolute;
            left: 65vw;
            top: 36vw;
            font-size: clamp(80px, 15vw, 200px);
            z-index: 15;
        }

        .cod-text-mini
        {
            position: absolute;
            bottom: -25vh;
            left: 71vw;
            font-size: clamp(12px, 2vh, 2vh);
            transform: rotate(2deg);
            z-index: 15;
        }

        .fn-glitch
        {
            position: relative;
            bottom: -200px;
            width: min(350px, 35vw);
            max-width: 90%;
            height: 250px;
            border-radius: 45px;
            padding: 20px;
            transform: rotate(354deg);
            z-index: 10;
        }

        .fn-text
        {
            color: #1f8fe6;
            position: absolute;
            left: 20%;
            top: 915px;
            font-size: clamp(80px, 15vw, 200px);
            z-index: 15;
        }

        .fn-text-mini
        {
            position: absolute;
            bottom: -480px;
            left: 50px;
            font-size: clamp(14px, 2vw, 20px);
            transform: rotate(354deg);
            z-index: 15;
        }

        .r6-glitch
        {
            position: relative;
            bottom: -285px;
            left: 75%;
            border-radius: 45px;
            padding: 20px;
            width:  min(350px, 35vw);
            max-width: 90%;
            transform: rotate(3deg);
            z-index: 10;
        }
        
        .r6-text
        {
            color: #1f8fe6;
            position: absolute;
            left: 70%;
            top: 1285px;
            font-size: clamp(80px, 15vw, 200px);
            z-index: 15;
        }

        .r6-text-mini
        {
            position: absolute;
            bottom: -820px;
            left: 1440px;
            font-size: clamp(14px, 2vw, 20px);
            transform: rotate(3deg);
            z-index: 15;
        }

        .server
        {
            position: relative;
            bottom: -340px;
            width:  min(350px, 35vw);
            max-width: 90%;
            padding: 20px;
            border-radius: 45px;
            transform: rotate(3deg);
            z-index: 10;
        }
              
        .server-text
        {
            color: #1f8fe6;
            position: absolute;
            left: 20%;
            top: 1655px;
            font-size: clamp(80px, 15vw, 200px);
            z-index: 15;
        }

        .server-text-mini
        {
            position: absolute;
            bottom: -1185px;
            left: 25px;
            font-size: clamp(14px, 2vw, 20px);
            transform: rotate(3deg);
            z-index: 15;
        }
        
        .ida
        {
            position: relative;
            bottom: -350px;
            left: 75%;
            width:  min(350px, 35vw);
            max-width: 90%;
            padding: 20px;
            border-radius: 45px;
            transform: rotate(355deg);
            z-index: 10;
        }

        .ida-text
        {
            color: #1f8fe6;
            position: absolute;
            left: 71%;
            top: 2050px;
            font-size: clamp(80px, 15vw, 200px);
            z-index: 15;
        }

        .ida-text-mini
        {
            position: absolute;
            bottom: -1655px;
            left: 1499px;
            font-size: clamp(14px, 2vw, 20px);
            z-index: 15;
        }

        .lightspeed
        {
            position: relative;
            bottom: -350px;
            width:  min(300px, 35vw);
            max-width: 90%;
            padding: 20px;
            border-radius: 45px;
            transform: rotate(5deg);
            z-index: 10;
        }
        
        .light-text
        {
            color: #1f8fe6;
            position: absolute;
            left: 18%;
            top: 2480px;
            font-size: clamp(80px, 15vw, 200px);
            z-index: 15;
        }

        .light-text-mini
        {
            position: absolute;
            bottom: -2030px;
            left: 15px;
            font-size: clamp(14px, 2vw, 20px);
            transform: rotate(5deg);
            z-index: 15;
        }

        .lag
        {
            position: relative;
            bottom: -700px;
            left: 50%;
            width:  min(545px, 35vw);
            max-width: 90%;
            border-radius: 45px;
            transform: rotate(355deg);
            z-index: 10;
            border: 2px solid black;
        }
        
        .lag-text
        {
            color: #1f8fe6;
            position: absolute;
            left: 57%;
            top: 2875px;
            font-size: clamp(80px, 15vw, 200px);
            z-index: 15;
        }

        .lag-text-mini
        {
            position: absolute;
            bottom: -2415px;
            left: 1340px;
            font-size: clamp(14px, 2vw, 20px);
            transform: rotate(355deg);
            z-index: 15;
        }

        /* Mobile Responsive Styles */
        @media screen and (max-width: 1024px) {
            .navbar {
                width: 98%;
                max-width: none;
            }

            .nav-container {
                padding: 0 1.5rem;
            }

            .nav-menu {
                gap: 1.5rem;
            }

            .nav-link {
                font-size: 0.85rem;
                padding: 8px 16px;
            }
        }

        @media screen and (max-width: 768px) {
            .floating-text {
                font-size: 12vw;
            }

            .navbar {
                width: 100%;
                top: 0;
                border-radius: 0;
                position: fixed;
            }

            .navbar.visible {
                transform: translateX(-50%) translateY(0);
                position: fixed;
                top: 0;
            }

            /* Navigation mobile styles */
            .nav-container {
                padding: 0 1rem;
                height: 60px;
                border-radius: 0;
            }

            .nav-logo {
                gap: 12px;
                z-index: 2001;
                position: relative;
            }

            .nav-icon {
                height: 35px;
                width: 35px;
            }

            .nav-connect-text {
                font-size: 0.7rem;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 60px;
                flex-direction: column;
                background: linear-gradient(135deg, #1f8fe6 0%, #1565c0 100%);
                width: 100%;
                text-align: center;
                transition: left 0.3s ease;
                box-shadow: 0 10px 27px rgba(21, 101, 192, 0.4);
                gap: 0;
                padding: 2rem 0;
                border-radius: 0;
                backdrop-filter: blur(10px);
                z-index: 1999;
                height: calc(100vh - 60px);
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 1rem 0;
            }

            .nav-link {
                font-size: 1rem;
                padding: 15px 20px;
                display: block;
                width: 100%;
                border-radius: 0;
            }

            .nav-toggle {
                display: flex;
                z-index: 2001;
                position: relative;
            }

            .r6-glitch-2, .printer-3d, .cod-glitch, .fn-glitch, 
            .r6-glitch, .server, .ida, .lightspeed, .lag {
                width: 80vw !important;
                max-width: 300px;
                left: 10vw !important;
                right: auto !important;
                position: relative !important;
                margin: 20px auto !important;
                display: block !important;
                bottom: auto !important;
                transform: rotate(0deg) !important;
            }

            /* Special mobile styles for top images to keep them on sides */
            .r6-glitch-2 {
                width: 35vw !important;
                max-width: 150px !important;
                left: 60vw !important;
                margin: 60px 0 10px 0 !important;
                position: relative !important;
                transform: rotate(2deg) !important;
            }

            .printer-3d {
                width: 35vw !important;
                max-width: 150px !important;
                left: 5vw !important;
                margin: 10px 0 !important;
                position: relative !important;
                transform: rotate(-2deg) !important;
                padding: 10px !important;
            }

            .cod-glitch {
                width: 35vw !important;
                max-width: 150px !important;
                left: 60vw !important;
                margin: 10px 0 !important;
                position: relative !important;
                transform: rotate(2deg) !important;
                padding: 10px !important;
            }

            .fn-glitch {
                width: 35vw !important;
                max-width: 150px !important;
                left: 5vw !important;
                margin: 10px 0 !important;
                position: relative !important;
                transform: rotate(-2deg) !important;
                padding: 10px !important;
                height: auto !important;
            }

            .r6-text2, .printer-text, .cod-text, .fn-text, 
            .r6-text, .server-text, .ida-text, .light-text, .lag-text {
                position: relative !important;
                left: 50% !important;
                right: auto !important;
                top: 20px !important;
                bottom: auto !important;
                transform: translateX(-50%) !important;
                text-align: center !important;
                font-size: clamp(60px, 12vw, 120px) !important;
            }

            /* Special mobile text positioning for top images */
            .r6-text2 {
                position: relative !important;
                left: 60vw !important;
                top: -20px !important;
                transform: translateX(-50%) !important;
                text-align: center !important;
                font-size: clamp(30px, 8vw, 60px) !important;
            }

            .printer-text {
                position: relative !important;
                left: 5vw !important;
                top: -20px !important;
                transform: translateX(-50%) !important;
                text-align: center !important;
                font-size: clamp(30px, 8vw, 60px) !important;
            }

            .cod-text {
                position: relative !important;
                left: 60vw !important;
                top: -20px !important;
                transform: translateX(-50%) !important;
                text-align: center !important;
                font-size: clamp(30px, 8vw, 60px) !important;
            }

            .fn-text {
                position: relative !important;
                left: 5vw !important;
                top: -20px !important;
                transform: translateX(-50%) !important;
                text-align: center !important;
                font-size: clamp(30px, 8vw, 60px) !important;
            }

            /* Only override mini text for mobile - preserve desktop positioning for larger screens */
            .r6-text-mini2, .printer-text-mini, .cod-text-mini, .fn-text-mini,
            .r6-text-mini, .server-text-mini, .ida-text-mini, .light-text-mini, .lag-text-mini {
                position: relative !important;
                left: 50% !important;
                right: auto !important;
                bottom: auto !important;
                top: 10px !important;
                transform: translateX(-50%) rotate(0deg) !important;
                text-align: center !important;
                font-size: 16px !important;
                width: 80% !important;
                margin: 0 auto !important;
            }

            /* Special mini text positioning for top images */
            .r6-text-mini2 {
                position: relative !important;
                left: 60vw !important;
                top: -10px !important;
                transform: translateX(-50%) !important;
                text-align: center !important;
                font-size: 12px !important;
                width: 25vw !important;
            }

            .printer-text-mini {
                position: relative !important;
                left: 5vw !important;
                top: -10px !important;
                transform: translateX(-50%) !important;
                text-align: center !important;
                font-size: 12px !important;
                width: 25vw !important;
            }

            .cod-text-mini {
                position: relative !important;
                left: 60vw !important;
                top: -10px !important;
                transform: translateX(-50%) !important;
                text-align: center !important;
                font-size: 12px !important;
                width: 25vw !important;
            }

            .fn-text-mini {
                position: relative !important;
                left: 5vw !important;
                top: -10px !important;
                transform: translateX(-50%) !important;
                text-align: center !important;
                font-size: 12px !important;
                width: 25vw !important;
            }

            .hidden-text {
                font-size: 1.2em !important;
                padding: 0 20px;
                text-align: center;
            }

            .hidden-text ul {
                text-align: left;
                padding-left: 20px;
            }

            /* Modal responsive styles for tablets */
            .modal-content {
                width: 280px;
                max-width: 85%;
            }

            .modal-text {
                font-size: 1rem;
            }

            .discord-handle {
                font-size: 1.1rem;
            }
        }

        @media screen and (max-width: 480px) {
            .floating-text {
                font-size: 15vw;
            }

            .navbar {
                width: 100%;
                top: 0;
                border-radius: 0;
            }

            /* Smaller navigation for very small screens */
            .nav-container {
                height: 55px;
                padding: 0 0.8rem;
                border-radius: 0;
            }

            .nav-logo {
                gap: 8px;
            }

            .nav-icon {
                height: 30px;
                width: 30px;
            }

            .nav-connect-text {
                font-size: 0.6rem;
            }

            .nav-menu {
                top: 55px;
                padding: 1.5rem 0;
                height: calc(100vh - 55px);
            }

            .nav-link {
                font-size: 0.9rem;
                padding: 12px 20px;
            }

            .nav-toggle {
                padding: 3px;
            }

            .bar {
                width: 22px;
                height: 2px;
                margin: 2px 0;
            }

            .r6-glitch-2, .printer-3d, .cod-glitch, .fn-glitch, 
            .r6-glitch, .server, .ida, .lightspeed, .lag {
                width: 90vw !important;
                max-width: 280px;
                left: 5vw !important;
                padding: 10px;
                margin: 15px auto !important;
                position: relative !important;
                bottom: auto !important;
                right: auto !important;
                transform: rotate(0deg) !important;
            }

            .r6-text2, .printer-text, .cod-text, .fn-text, 
            .r6-text, .server-text, .ida-text, .light-text, .lag-text {
                font-size: clamp(40px, 10vw, 80px) !important;
                position: relative !important;
                left: 50% !important;
                top: 15px !important;
                bottom: auto !important;
                right: auto !important;
                transform: translateX(-50%) !important;
                text-align: center !important;
            }

            .r6-text-mini2, .printer-text-mini, .cod-text-mini, .fn-text-mini,
            .r6-text-mini, .server-text-mini, .ida-text-mini, .light-text-mini, .lag-text-mini {
                position: relative !important;
                left: 50% !important;
                top: 5px !important;
                bottom: auto !important;
                right: auto !important;
                transform: translateX(-50%) rotate(0deg) !important;
                text-align: center !important;
                font-size: 14px !important;
                width: 85% !important;
                margin: 0 auto !important;
            }

            .hidden-text {
                font-size: 1em !important;
                padding: 0 15px;
            }

            /* Modal responsive styles for mobile */
            .modal-content {
                width: 250px;
                max-width: 80%;
            }

            .modal-header {
                padding: 12px 15px 8px;
            }

            .close {
                width: 25px;
                height: 25px;
                font-size: 20px;
            }

            .modal-body {
                padding: 25px 15px;
            }

            .modal-text {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }

            .discord-handle {
                font-size: 1rem;
                flex-direction: column;
                gap: 8px;
            }

            .at-symbol {
                font-size: 1.2rem;
            }

            .username {
                padding: 6px 12px;
                font-size: 0.9rem;
            }
        }

        @media screen and (max-width: 320px) {
            .navbar {
                width: 100%;
                top: 0;
                border-radius: 0;
            }

            .nav-container {
                height: 50px;
                padding: 0 0.5rem;
                border-radius: 0;
            }

            .nav-logo {
                gap: 6px;
            }

            .nav-icon {
                height: 25px;
                width: 25px;
            }

            .nav-connect-text {
                font-size: 0.5rem;
            }

            .nav-menu {
                top: 50px;
                border-radius: 0;
                height: calc(100vh - 50px);
                padding: 1rem 0;
            }

            .nav-link {
                font-size: 0.8rem;
                padding: 10px 15px;
            }

            .nav-toggle {
                padding: 2px;
            }

            .bar {
                width: 20px;
                height: 2px;
                margin: 2px 0;
            }

            .modal-content {
                width: 90%;
                max-width: 280px;
            }
        }



        /* Extra responsive adjustments removed - manual positioning now works */
