<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    line-height: 1.6;
    overflow: hidden;
}

.main-container {
    display: flex;
    height: 100vh;
    justify-content: space-between;
}

.left-section {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 0 50% 50% 0;
    overflow: hidden;
}

header {
    z-index: 10;
}

header h1 {
    font-size: 3rem;
    color: #ffffff;
    animation: fadeInLeft 1s ease-in-out;
}

header p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 10px;
    animation: fadeInLeft 1.5s ease-in-out;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    clip-path: ellipse(75% 50% at 100% 50%);
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.right-section {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.btn {
    padding: 15px 30px;
    margin: 10px 0;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.primary-btn {
    background-color: #007bff;
    color: #fff;
}

.secondary-btn {
    background-color: #28a745;
    color: #fff;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.info {
    margin-top: 30px;
}

.info h2 {
    font-size: 2rem;
    color: #007bff;
    animation: fadeInRight 1s ease-in-out;
}

.info p {
    font-size: 1.1rem;
    color: #333;
    margin-top: 10px;
    animation: fadeInRight 1.5s ease-in-out;
}

footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-top: 5px solid #0056b3;
    animation: fadeIn 2s ease-in-out;
}

footer p {
    margin: 0;
}

#walletAddress {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #ffdf7e;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        overflow: visible;
    }

    .left-section, .right-section {
        width: 100%;
        padding: 20px;
        border-radius: 0;
    }

    .video-background {
        clip-path: none;
        height: 50vh; /* Adjusts video height for better fit */
    }

    header h1 {
        font-size: 2.5rem;
    }

    header p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .info h2 {
        font-size: 1.8rem;
    }

    .info p {
        font-size: 1rem;
    }

    footer {
        font-size: 0.8rem;
        padding: 15px 20px; /* More padding to avoid overlapping */
    }
}

@media (max-width: 480px) {
    .left-section, .right-section {
        padding: 15px;
    }

    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .info h2 {
        font-size: 1.5rem;
    }

    .info p {
        font-size: 0.9rem;
    }

    footer {
        font-size: 0.7rem;
        padding: 10px 20px;
    }
}
</pre></body></html>