
        body {
            margin: 0;
            padding: 0;
            font-family: 'Fredoka One', cursive;
            text-align: center;
            color: white;
            overflow-x: hidden;
        }
        .background-video {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        .container {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        .logo {
            font-size: 8vw;
            text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
        }
        .subtitle {
            font-size: 2vw;
            margin-top: 0px;
            color: #f9c74f;
        }
        .description {
            font-size: 1vw;
            margin-top: 0px;
        }
        .buttons {
            margin-top: 0px;
        }
        .buttons a {
            display: inline-block;
            margin: 10px;
            padding: 10px 20px;
            background: white;
            border-radius: 50px;
            text-decoration: none;
            color: #007bff;
            font-size: 2vw;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
            transition: 0.3s;
        }
        .buttons a:hover {
            background: #007bff;
            color: white;
        }
        .fish {
            width: 15vw;
            position: absolute;
            bottom: 10%;
            right: 10%;
            animation: swim 4s infinite alternate ease-in-out;
        }
        .hook {
            width: 5vw;
            position: absolute;
            top: 10%;
            right: 15%;
            animation: bobbing 3s infinite ease-in-out;
        }
        @keyframes swim {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-20px);
            }
        }
        @keyframes bobbing {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(10px);
            }
        }
        .crew-section {
            background: #111;
            padding: 50px 20px;
            -margin-top: 100vh; 
        }
        .crew-title {
            font-size: 3vw;
            margin-bottom: 30px;
        }
        .crew-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .crew-member {
            background: #222;
            padding: 15px;
            border-radius: 15px;
            text-align: center;
            transition: 0.3s;
        }
        .crew-member:hover {
            transform: translateY(-10px);
        }
        .crew-member img {
            width: 100%;
            border-radius: 10px;
        }
        .crew-member p {
            margin: 10px 0 0;
            font-size: 1.2vw;
        }
        
        
        @media (max-width: 768px) {
            .logo { font-size: 12vw; }
            .subtitle { font-size: 5vw; }
            .description { font-size: 4vw; }
            .buttons a { font-size: 4vw; padding: 8px 16px; }
            .crew-title { font-size: 6vw; }
            .crew-member p { font-size: 4vw; }
        }
        .copy-text {
            display: inline-block;
            padding: 15px 25px;
            background: #0c0c0c;
            color: white;
            border-radius: 50px;
            cursor: pointer;
            font-size: 20px;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease-in-out;
            position: relative;
            overflow: hidden;
        }
        .copy-text::after {
            content: '';
            position: absolute;
            width: 300%;
            height: 300%;
            background: rgba(255, 255, 255, 0.3);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            border-radius: 50%;
            transition: transform 0.4s ease-out;
        }
        .copy-text:active::after {
            transform: translate(-50%, -50%) scale(1);
        }
        .copy-text:hover {
            background: #220bee;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        #copy-notification {
            display: none;
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 16px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        @media (max-width: 600px) {
            .copy-text {
                font-size: 14px;
                padding: 12px 20px;
            }
            #copy-notification {
                font-size: 14px;
                padding: 10px 14px;
            }
        }
        
            p {
                font-size: 12px;
            }
        
        .vesting {
            position: relative;
            background: rgba(0, 0, 0, 0.8);
            padding: 50px 20px;
            margin-top: 100vh;
        }
        .title {
            font-size: 3vw;
            margin-bottom: 30px;
        }
        .vesting-info {
            max-width: 800px;
            margin: 0 auto;
        }
        .buttons {
            margin-top: 20px;
        }
        .buttons a {
            display: inline-block;
            margin: 10px;
            padding: 10px 20px;
            background: white;
            border-radius: 50px;
            text-decoration: none;
            color: #007bff;
            font-size: 2vw;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
            transition: 0.3s;
        }
        .buttons a:hover {
            background: #007bff;
            color: white;
        }
        
        
