@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Geist Mono', monospace;
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }

        /* Footer Section */
        .footer {
            position: relative;
            padding: 60px 20px 30px;
            background: transparent;
            overflow: hidden;
            border-top: 1px solid rgba(161, 1, 255, 0.2);
        }






        .footer-bottom {
            text-align: center;
        }

        .footer-copyright {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-copyright a {
            color: #A101FF;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .footer-copyright a:hover {
            color: #C04FFF;
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #A101FF;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(161, 1, 255, 0.3);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: #8200CC;
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(161, 1, 255, 0.5);
        }

        /* Responsive */
        @media (max-width: 640px) {
            .footer {
                padding: 50px 15px 25px;
            }

            .footer-logo {
                width: 130px;
            }

            .footer-links {
                gap: 20px;
                font-size: 0.85rem;
            }

            .scroll-top {
                width: 45px;
                height: 45px;
                bottom: 20px;
                right: 20px;
            }
        }