﻿body, html{
    padding: 0;
    margin: 0;
    font-family: "Baloo 2", sans-serif;
    background-color: black;
    position: relative;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body > *:not(.video-background):not(.navbar){
    position: relative;
    z-index: 10;
}

/* Video Background */
.video-background{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video{
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
    pointer-events: none;
}

.navbar{
    background: linear-gradient(to bottom, rgba(30, 30, 30, 0.95) 0%, rgba(30, 30, 30, 0.7) 50%, transparent 100%);
    padding: 15px 0 40px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.navbar-left h1{
    font-family: "Baloo 2", sans-serif;
    font-weight: 700;
    color: #FFC400;
    margin: 0;
    font-size: 1.5rem;
}

.navbar-center{
    display: flex;
    gap: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-center a{
    font-family: "Baloo 2", sans-serif;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.navbar-center a:hover{
    color: #FFC400;
}

.navbar-right{
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-selector{
    position: relative;
}

.lang-btn{
    background-color: transparent;
    border: 2px solid #FFC400;
    border-radius: 8px;
    padding: 8px 15px;
    color: #FFC400;
    font-family: "Baloo 2", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover{
    background-color: #FFC400;
    color: black;
}

.lang-dropdown{
    position: absolute;
    top: 45px;
    right: 0;
    background-color: rgba(30, 30, 30, 0.98);
    border: 2px solid #FFC400;
    border-radius: 8px;
    min-width: 120px;
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.lang-dropdown.active{
    display: flex;
}

.lang-dropdown a{
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    font-family: "Baloo 2", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-dropdown a:hover{
    background-color: #FFC400;
    color: black;
}

.lang-dropdown a:first-child{
    border-radius: 6px 6px 0 0;
}

.lang-dropdown a:last-child{
    border-radius: 0 0 6px 6px;
}

.social-btn{
    background-color: #FFC400;
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-btn:hover{
    background-color: #e6b000;
    transform: scale(1.05);
}

.social-btn svg{
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero-section{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 130px 20px;
    position: relative;
    background-color: transparent;
    border-bottom: 3px solid #5D0B1C;
    z-index: 10;
}

.hero-left{
    flex: 1;
    max-width: 600px;
    margin-right: 60px;
}

.hero-left img{
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.hero-right{
    flex: 1;
    max-width: 790px;
    text-align: center;
}

.hero-right h1{
    font-family: "Baloo 2", sans-serif;
    font-weight: 800;
    font-size: 6.5rem;
    color: #FFC400;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.hero-right h2{
    color: white;
    font-size: 2.5rem;
}

.hero-right h3{
    color: white;
    font-size: 2rem;
}

.hero-right p{
    font-family: "Baloo 2", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: white;
    margin: 0 0 30px 0;
    word-break: break-all;
}

.copy-btn{
    font-family: "Baloo 2", sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    background-color: #FFC400;
    color: black;
    border: none;
    border-radius: 12px;
    padding: 10px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.copy-btn:hover{
    background-color: #e6b000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 196, 0, 0.3);
}

.copy-btn:active{
    transform: translateY(0);
}

/* About Section */
.about-section{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background-color: black;
    gap: 60px;
 
}

.about-left{
    flex: 0 0 auto;
    max-width: 450px;
}

.about-left img{
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.about-right{
    flex: 1;
    max-width: 700px;
    background-color: rgba(30, 30, 30, 0.6);
    border: 2px solid #444;
    border-radius: 20px;
    padding: 50px;
}

.about-right h2{
    font-family: "Baloo 2", sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #FFC400;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.about-right p{
    font-family: "Baloo 2", sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: white;
    line-height: 1.8;
    margin: 0;
}





#moving-text{
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    display: flex;
    font-family: ChubGothic;
    background-color: black;
}

#moving-text::-webkit-scrollbar{
    display: none;
}

#moving-text h1{
    font-size: 4vw;
    display: inline-block;
    color: #E9C25C;
    margin: 0;
    padding: 1vw 1vw;
    background-color: transparent;
}


.con{
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    animation-name: move;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    flex-shrink: 0;
    min-width: 100vw;
    font-family: "Baloo 2", sans-serif;
}

@keyframes move{
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Image Slider Section */
.image-section{
    background-color: black;
    padding: 60px 0 80px 0;
}

.image-section h1{
    font-family: "Baloo 2", sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: #FFC400;
    text-align: center;
    margin: 0 0 50px 0;
    padding: 0 20px;
}

.slider-container{
    overflow: hidden;
    width: 100%;
    margin: 0;
    cursor: grab;
}

.slider-container:active{
    cursor: grabbing;
}

.image-slider{
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.slider-item{
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
}

.slider-card{
    background-color: #1a1a1a;
    border: 2px solid #FE1F4B;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slider-card img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}

.tweet-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: transparent;
    border: 2px solid #fff;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-family: "Baloo 2", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tweet-btn:hover{
    background-color: #fff;
    color: black;
}

.tweet-btn:hover svg{
    fill: black;
}

.tweet-btn svg{
    width: 16px;
    height: 16px;
    transition: fill 0.3s ease;
}

/* How To Buy Section */
.how-to-buy-section{
    background-color: black;
    padding: 80px 40px;
    position: relative;
    border-top: 3px solid #FFC400;
    border-bottom: 3px solid #FFC400;
}

.how-to-buy-section h1{
    font-family: "Baloo 2", sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: white;
    text-align: center;
    margin: 0 0 60px 0;
}

.how-to-buy-section h1 span{
    color: #FFC400;
}

.htb-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.htb-card{
    background-color: #000000ab;
    border: 3px solid #FFC400;
    border-radius: 20px;
    padding: 35px 30px;
}

.htb-card h2{
    font-family: "Baloo 2", sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #FFC400;
    margin: 0 0 15px 0;
}

.htb-card p{
    font-family: "Baloo 2", sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: white;
    line-height: 1.7;
    margin: 0;
}

.htb-card p strong{
    font-weight: 700;
}

.htb-emoji{
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.htb-emoji img{
    width: 250px;
    height: auto;
    filter: drop-shadow(0 0 20px #FFC400) drop-shadow(0 0 40px #FFC400);
}

@keyframes float{
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(-60%);
    }
}

/* CTA Section */
.cta-section{
    background-color: transparent;
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-box{
    border: 4px solid #FFC400;
    border-radius: 30px;
    padding: 80px 120px;
    text-align: center;
    background-color: #000000;
    max-width: 1200px;
}

.cta-box h1{
    font-family: "Baloo 2", sans-serif;
    font-weight: 800;
    font-size: 4rem;
    color: #FE1F4B;
    margin: 0 0 20px 0;
}

.cta-box p{
    font-family: "Baloo 2", sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #FFC400;
    margin: 0;
}

/* Footer */
.footer{
    background-color: #000000;
    padding: 20px 40px;
}

.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content p{
    font-family: "Baloo 2", sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: white;
    margin: 0;
}

.footer-icons{
    display: flex;
    gap: 15px;
}

.footer-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.footer-icon:hover{
    transform: scale(1.1);
}

.footer-icon svg{
    width: 24px;
    height: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .navbar-center{
        display: none;
    }
    
    .navbar-right{
        display: flex;
        align-items: center;
    }
    
    .social-btn{
        background-color: #FFC400;
        width: 40px;
        height: 40px;
    }
    
    /* Hero Section Mobile */
    .hero-section{
        flex-direction: column;
        padding: 100px 20px 40px 20px;
        min-height: auto;
    }
    
    .hero-left{
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-right{
        max-width: 100%;
        text-align: center;
    }
    
    .hero-right h1{
        font-size: 4rem;
    }
    
    .hero-right h2{
        font-size: 1.2rem;
    }
    
    .hero-right h3{
        font-size: 1.2rem;
    }
    
    .hero-right p{
        font-size: 0.9rem;
        word-break: break-all;
    }
    
    .copy-btn{
        font-size: 1.2rem;
        margin: 0;
        padding: 10px 30px;
    }
    
    /* About Section Mobile */
    .about-section{
        flex-direction: column;
        padding: 60px 20px;
    }
    
    .about-left{
        max-width: 100%;
        margin-bottom: 0px;
    }
    
    .about-right{
        max-width: 100%;
        padding: 30px 20px;
        margin: 0;
    }
    
    .about-right h2{
        font-size: 2rem;
        text-align: center;
    }
    
    .about-right p{
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Moving Text Mobile */
    #moving-text h1{
        font-size: 8vw;
        padding: 2vw 2vw;
    }
    
    /* Image Slider Mobile */
    .image-section{
        padding: 60px 0 80px 0;
    }
    
    .image-section h1{
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .slider-container{
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .image-slider{
        gap: 0;
    }
    
    .slider-item{
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .slider-card{
        border-radius: 15px;
        padding: 12px;
        gap: 12px;
    }
    
    .slider-card img{
        height: 250px;
        border-radius: 12px;
    }
    
    .tweet-btn{
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .tweet-btn svg{
        width: 14px;
        height: 14px;
    }
    
    /* How To Buy Section Mobile */
    .how-to-buy-section{
        padding: 60px 20px;
    }
    
    .how-to-buy-section h1{
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .htb-emoji{
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        text-align: center;
        margin-top: 170px;
        margin-bottom: 0px;
    }
    
    .htb-emoji img{
        width: 150px;
    }
    
    .htb-container{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .htb-card{
        padding: 25px 20px;
    }
    
    .htb-card h2{
        font-size: 1.5rem;
    }
    
    .htb-card p{
        font-size: 1rem;
    }
    
    /* CTA Section Mobile */
    .cta-section{
        padding: 60px 20px;
    }
    
    .cta-box{
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .cta-box h1{
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .cta-box p{
        font-size: 1.2rem;
    }
 
}
