
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            overflow-x: hidden;
        }

        /* From Uiverse.io by mrhyddenn */ 
        .button {
          -moz-appearance: none;
          -webkit-appearance: none;
          appearance: none;
          border: none;
          background: none;
          color: #0f1923;
          cursor: pointer;
          position: relative;
          padding: 8px;
          margin-bottom: 20px;
          text-transform: uppercase;
          font-weight: bold;
          font-size: 14px;
          transition: all .15s ease;
        }

        .button::before,
        .button::after {
          content: '';
          display: block;
          position: absolute;
          right: 0;
          left: 0;
          height: calc(50% - 5px);
          border: 1px solid #7D8082;
          transition: all .15s ease;
        }

        .button::before {
          top: 0;
          border-bottom-width: 0;
        }

        .button::after {
          bottom: 0;
          border-top-width: 0;
        }

        .button:active,
        .button:focus {
          outline: none;
        }

        .button:active::before,
        .button:active::after {
          right: 3px;
          left: 3px;
        }

        .button:active::before {
          top: 3px;
        }

        .button:active::after {
          bottom: 3px;
        }

        .button_lg {
          position: relative;
          display: block;
          padding: 10px 20px;
          color: #fff;
          background-color: #0f1923;
          overflow: hidden;
          box-shadow: inset 0px 0px 0px 1px transparent;
        }

        .button_lg::before {
          content: '';
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          width: 2px;
          height: 2px;
          background-color: #0f1923;
        }

        .button_lg::after {
          content: '';
          display: block;
          position: absolute;
          right: 0;
          bottom: 0;
          width: 4px;
          height: 4px;
          background-color: #0f1923;
          transition: all .2s ease;
        }

        .button_sl {
          display: block;
          position: absolute;
          top: 0;
          bottom: -1px;
          left: -8px;
          width: 0;
          background-color: #ef78c1;
          transform: skew(-15deg);
          transition: all .2s ease;
        }

        .button_text {
          position: relative;
        }

        .button:hover {
          color: #0f1923;
        }

        .button:hover .button_sl {
          width: calc(100% + 15px);
        }

        .button:hover .button_lg::after {
          background-color: #fff;
        }

        /* Video Background */
        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        /* Header */
        header {
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            padding: 20px 50px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            font-family: 'Arial Black', Arial, sans-serif;
            color: #ef78c1;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo img {
            width: auto;
            height: 50px;
            border-radius: 8px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #fff;
        }

        .nav-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            font-size: 0;
        }

        .nav-links a::before {
            content: '';
            display: block;
            width: 32px;
            height: 32px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .nav-links a[href*="twitter"]::before,
        .nav-links a[href*="x.com"]::before {
            background-image: url('https://upload.wikimedia.org/wikipedia/commons/c/ce/X_logo_2023.svg');
        }

        .nav-links a[href*="pump.fun"]::before {
            background-image: url('https://pump.fun/icon.png');
        }

        .nav-links a[href*="dexscreener"]::before {
            background-image: url('https://dexscreener.com/favicon.ico');
            width: 28px;
            height: 28px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
            position: relative;
            padding: 90px 20px 80px;
        }

        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
        }

        .hero p {
            font-size: 24px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
        }

        /* Content */
        .content {
            background: #fff;
            padding: 80px 50px;
            position: relative;
            z-index: 1;
        }

        .content h2 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 40px;
        }

        .content p {
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            font-size: 18px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }

            .logo {
                font-size: 20px;
            }

            .logo img {
                width: 40px;
                height: 40px;
            }

            .nav-links {
                gap: 15px;
            }

            .nav-links a::before {
                width: 24px;
                height: 24px;
            }

            .nav-links a[href*="dexscreener"]::before {
                width: 20px;
                height: 20px;
            }

            .hero {
                padding: 60px 15px 60px;
            }

            .hero h1 {
                font-size: 36px;
                margin-bottom: 15px;
            }

            .hero p {
                font-size: 16px;
            }

            .button {
                font-size: 12px;
                padding: 6px;
            }

            .button_lg {
                padding: 8px 16px;
            }

            .content {
                padding: 40px 20px;
            }

            .content h2 {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .content p {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 18px;
            }

            .logo img {
                width: 35px;
                height: 35px;
            }

            .nav-links {
                gap: 10px;
            }

            .nav-links a::before {
                width: 20px;
                height: 20px;
            }

            .nav-links a[href*="dexscreener"]::before {
                width: 18px;
                height: 18px;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 14px;
            }

            .content h2 {
                font-size: 24px;
            }

            .content p {
                font-size: 14px;
            }
        }
