@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Charming Smile Demo';
    src: url('fonts/charming_smile_DEMO.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Comic Sans MS';
    src: url('fonts/comic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Comic Sans MS';
    src: url('fonts/comicbd.ttf') format('truetype');
    font-weight: bold;
    font-style: bold;
}


html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    font-family: 'Charming Smile Demo', sans-serif;
    background-color: black;
    color: white;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    z-index: 1000;
    transition: transform 0.5s ease-in-out;
}

.bunny-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 8vw;
    max-width: 180px;
    min-width: 80px;
    z-index: 10;
}

.bunny-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.portal {
    position: relative;
    width: 40vw;
    max-width: 600px;
    min-width: 256px;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.portal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1) brightness(1.5) contrast(1);
}

.carrot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12vw;
    max-width: 144px;
    min-width: 58px;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.carrot img {
    width: 100%;
    height: auto;
}

.enter-button {
    margin-top: 3rem;
    padding: 0.75rem 2rem;
    background-color: transparent;
    border: 2px solid #FFFF83;
    color: #FFFF83;
    font-weight: bold;
    border-radius: 9999px;
    transition: all 0.3s;
    animation: buttonGlow 2s ease-in-out infinite;
    cursor: pointer;
    font-family: inherit;
    z-index: 3;
    font-size: clamp(16px, 1.2vw, 24px);
}

.enter-button:hover {
    transform: scale(1.05);
    animation: buttonGlowIntense 2s ease-in-out infinite;
}

.main-content {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #6F8BFC;
    transition: transform 0.5s ease-in-out;
    overflow: hidden;
}

.scroll-content {
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
}

.sticky-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sticky-content > * {
    pointer-events: auto;
}

.bunny-bottom-left,
.copyright,
.socials {
    position: absolute;
}

.content-section {
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero {
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.carrot-painting {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Charming Smile Demo', sans-serif;
    font-size: 54px;
    margin-bottom: 1rem;
    color: #FFFF83;
}

.hero-description {
    font-family: 'Comic Sans MS', sans-serif;
    font-size: 24px;
    font-weight: bold;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ca {
    font-family: 'Comic Sans MS', sans-serif;
    font-size: 24px;
    max-width: 800px;
    font-weight: bold;
    margin: 0 auto;
    text-align: center;
    margin-top: 12px;
}

.deep-dive-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.deep-dive-bunny {
    width: 25vw;
    max-width: 400px;
    min-width: 200px;
    height: auto;
    margin-bottom: 2rem;
    animation: floatBunny 3s ease-in-out infinite;
}

.deep-dive-text {
    font-family: 'Comic Sans MS', sans-serif;
    font-size: 24px;
    max-width: 800px;
    color: white;
    line-height: 1.5;
}

.tesla-section {
    background-color: #6F8BFC;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tesla-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.tesla-text {
    font-family: 'Comic Sans MS', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
}

.tesla-text .highlight {
    color: #FFFF83;
}

.bullpost-button {
    background: #FFFF83;
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 999px;
    font-family: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.bullpost-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shineEffect 1.5s infinite linear;
}

.tesla-bunny {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    max-width: 600px;
    min-width: 300px;
    z-index: 102;
}

.tesla-bunny img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-section {
    background-color: #6F8BFC;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-content {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px;
    gap: 48px;
}

.mission-text {
    flex: 1;
    max-width: 600px;
}

.mission-title {
    font-family: 'Charming Smile Demo', sans-serif;
    font-size: 48px;
    color: #FFFF83;
    margin-bottom: 2rem;
}

.mission-description {
    font-family: 'Comic Sans MS', sans-serif;
    font-size: 24px;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.carpe-diem {
    font-family: 'Comic Sans MS', sans-serif;
    font-size: 28px;
    color: #FFFF83;
    margin-top: 2rem;
    font-family: 'Charming Smile Demo', sans-serif;
}

.super-bunny {
    flex: 0 0 auto;
    width: 400px;
}

.super-bunny::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background-size: contain;
}

.super-bunny img {
    max-width: 400px;
    height: auto;
}

.bunny-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 101;
    width: 168px;
    height: auto;
    line-height: 0;
}

.bunny-bottom-left img {
    display: block;
    width: 100%;
    height: auto;
}

.copyright {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    z-index: 100;
}

.socials {
    position: absolute;
    bottom: 20px;
    right: 80px;
    display: flex;
    gap: 8px;
    z-index: 101;
}

.socials img {
    width: 44px;
    height: 44px;
}

.overlay-slide-up {
    transform: translateY(-100%);
}

.main-content-slide-up {
    transform: translateY(-100%);
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -55%); }
    50% { transform: translate(-50%, -45%); }
}

@keyframes buttonGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 243, 54, 0.4); }
    50% { box-shadow: 0 0 25px rgba(255, 243, 54, 0.6); }
}

@keyframes buttonGlowIntense {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 243, 54, 0.6); }
    50% { box-shadow: 0 0 30px rgba(255, 243, 54, 0.8); }
}

@keyframes shineEffect {
    from {
        transform: translateX(-100%) rotate(30deg);
    }
    to {
        transform: translateX(100%) rotate(30deg);
    }
}

@keyframes floatBunny {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 1920px) {
    .bunny-logo {
        width: 320px;
    }
    .portal {
        width: 400px;
    }
    .carrot {
        width: 120px;
    }
    .hero-title {
        font-size: 54px;
    }
    .hero-description {
        font-size: 24px;
    }
    .copyright {
        font-size: 18px;
    }
    .socials img {
        width: 44px;
        height: 44px;
    }
    .bunny-bottom-left {
        width: 168px;
    }
    .deep-dive-bunny {
        width: 400px;
    }
    .tesla-text {
        font-size: 32px;
    }
    .tesla-bunny {
        width: 40%;
    }
    .mission-title {
        font-size: 48px;
    }
    .mission-description {
        font-size: 24px;
    }
    .carpe-diem {
        font-size: 28px;
    }
}

@media (max-width: 1440px) {
    .bunny-logo {
        width: 300px;
    }
    .portal {
        width: 380px;
    }
    .carrot {
        width: 104px;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-description {
        font-size: 22px;
    }
    .copyright {
        font-size: 16px;
    }
    .socials img {
        width: 40px;
        height: 40px;
    }
    .bunny-bottom-left {
        width: 150px;
    }
    .deep-dive-bunny {
        width: 350px;
    }
    .tesla-text {
        font-size: 28px;
    }
    .tesla-bunny {
        width: 45%;
    }
    .mission-title {
        font-size: 42px;
    }
    .mission-description {
        font-size: 22px;
    }
    .carpe-diem {
        font-size: 26px;
    }
}

@media (max-width: 1024px) {
    .bunny-logo {
        width: 280px;
    }
    .portal {
        width: 360px;
    }
    .carrot {
        width: 94px;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-description {
        font-size: 20px;
    }
    .copyright {
        font-size: 14px;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
    .socials {
        right: 20px;
    }
    .bunny-bottom-left {
        width: 130px;
    }
    .deep-dive-bunny {
        width: 300px;
    }
    .tesla-text {
        font-size: 24px;
    }
    .tesla-bunny {
        width: 50%;
    }
    .tesla-content {
        margin-top: -15vh;
    }
    .mission-content {
        flex-direction: column;
        text-align: center;
    }
    .mission-title {
        font-size: 36px;
        margin-bottom: 0px;
    }
    .mission-content {
        gap: 12px;
    }
    .mission-description {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .carpe-diem {
        font-size: 24px;
    }
    .super-bunny img {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .bunny-logo {
        width: 240px;
    }
    .portal {
        width: 340px;
    }
    .carrot {
        width: 94px;
    }
    .enter-button {
        width: 70%;
        max-width: 18rem;
        font-size: 18px;
        padding: 0.825rem 2.2rem;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-description {
        font-size: 18px;
        word-wrap: break-word
    }
    .copyright {
        bottom: 12px;
        left: auto;
        right: -80px;
        font-size: 12px;
        text-align: right;
        max-width: 200px;
        line-height: 1.2;
        width: calc(100% - 40px);
    }
    .socials {
        bottom: 52px;
        right: 20px;
    }
    .bunny-bottom-left {
        width: 110px;
    }
    .deep-dive-bunny {
        width: 250px;
    }
    .tesla-text {
        font-size: 22px;
    }
    .tesla-bunny {
        width: 60%;
    }
    .tesla-content {
        margin-top: -20vh;
    }
    .mission-title {
        font-size: 32px;
    }
    .mission-description {
        font-size: 18px;
    }
    .carpe-diem {
        font-size: 22px;
    }
    .super-bunny img {
        max-width: 250px;
    }
}

@media (max-width: 640px) {
    .bunny-logo {
        width: 180px;
    }
    .portal {
        width: 284px;
    }
    .carrot {
        width: 84px;
    }
    .enter-button {
        width: 70%;
        max-width: 18rem;
        font-size: 18px;
        padding: 0.825rem 2.2rem;
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-description {
        font-size: 16px;
    }
    .ca {
        font-size: 14px;
    }
    .copyright {
        font-size: 12px;
    }
    .socials img {
        width: 28px;
        height: 28px;
    }
    .bunny-bottom-left {
        width: 90px;
    }
    .deep-dive-bunny {
        width: 240px;
    }
    .tesla-text {
        font-size: 20px;
    }
    .tesla-bunny {
        width: 70%;
        min-width: 250px;
    }
    .tesla-content {
        margin-top: -25vh;
    }
    .mission-title {
        font-size: 28px;
    }
    .mission-description {
        font-size: 16px;
    }
    .carpe-diem {
        font-size: 20px;
    }
    .super-bunny img {
        max-width: 200px;
    }
}

.intro-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.intro-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-video-hidden {
    display: none;
}
.join-follow-section {
    background-color: #6F8BFC;
    padding: 120px 32px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.join-section,
.follow-section {
    display: grid;
    max-width: 1920px;
    margin: 0 auto;
    align-items: center;
    gap: 32px;
}

.join-section {
    grid-template-columns: 720px 1fr;
}

.follow-section {
    grid-template-columns: 1fr 664px;
}

.join-banner-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.follow-banner-image {
    width: 100%;
    height: 664px;
    object-fit: contain;
}

.join-content,
.follow-content {
    max-width: 600px;
}

.section-title {
    font-family: 'Charming Smile Demo', sans-serif;
    font-size: 64px;
    color: #FFFF83;
    margin-bottom: 24px;
}

.section-description {
    font-family: 'Comic Sans MS', sans-serif;
    font-size: 24px;
    color: white;
    line-height: 1.5;
}
.join-follow-section {
    background-color: #6F8BFC;
    padding: 120px 32px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.join-section,
.follow-section {
    display: grid;
    max-width: 1920px;
    margin: 0 auto;
    align-items: center;
    gap: 32px;
}

.join-section {
    grid-template-columns: 720px 1fr;
}

.follow-section {
    grid-template-columns: 1fr 664px;
}

.join-banner-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.follow-banner-image {
    width: 100%;
    height: 664px;
    object-fit: contain;
}

.join-content,
.follow-content {
    max-width: 600px;
}

.section-title {
    font-family: 'Charming Smile Demo', sans-serif;
    font-size: 64px;
    color: #FFFF83;
    margin-bottom: 24px;
}

.section-description {
    font-family: 'Comic Sans MS', sans-serif;
    font-size: 24px;
    color: white;
    line-height: 1.5;
}

/* Responsive styles for join-follow section */
@media (max-width: 1440px) {
    .join-follow-section {
        padding: 80px 24px;
    }

    .join-section,
    .follow-section {
        gap: 24px;
    }

    .join-section {
        grid-template-columns: 540px 1fr;
    }

    .follow-section {
        grid-template-columns: 1fr 498px;
    }

    .join-banner-image,
    .follow-banner-image {
        height: auto;
    }

    .section-title {
        font-size: 48px;
    }

    .section-description {
        font-size: 20px;
    }
}

@media (max-width: 1028px) {
    .join-follow-section {
        padding: 60px 20px;
    }

    .join-section,
    .follow-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .join-section {
        grid-template-areas:
            "image"
            "content";
    }

    .follow-section {
        grid-template-areas:
            "content"
            "image";
    }

    .join-banner-image,
    .follow-banner-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        grid-area: image;
    }

    .join-content,
    .follow-content {
        grid-area: content;
        max-width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 40px;
    }

    .section-description {
        font-size: 18px;
    }
}