@font-face {
    font-family: 'ChubGothic';
    src: url('./assets/Font/chubgothic_1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body{
    background-color: #000;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #E9C25C;
    width: 100%;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    text-align: center;
    font-family: 'ChubGothic', sans-serif;
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
}

.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-text h1 {
    font-family: 'ChubGothic', sans-serif;
    font-size: 9rem;
    color: #E9C25C;
    margin: 0;
    font-weight: bold;
    line-height: 1.1;
}

.hero-text h3 {
    font-family: 'ChubGothic', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin: 0;
    font-weight: normal;
}

.hero-text h4 {
    font-family: 'ChubGothic', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0;
    font-weight: normal;
}

.ca-container {
    display: flex;
    align-items: center;
    background-color: #000;
    border: 1px solid #E9C25C;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    gap: 12px;
    max-width: 450px;
}

.ca-text {
    color: #E9C25C;
    font-family: 'ChubGothic', sans-serif;
    font-size: 0.9rem;
    flex: 1;
    word-break: break-all;
}

.copy-btn {
    background-color: #E9C25C;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'ChubGothic', sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background-color: #ffffff;
    transform: translateY(-1px);
}

.buy-button {
    background-color: #E9C25C;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'ChubGothic', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
}

.buy-button:hover {
    background-color: #E9C25C;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #E9C25C;
    cursor: pointer;
}

.social-btn:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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


#gallery-text{
    font-family: ChubGothic;
    color: #E9C25C;
    text-align: center;
    margin-top: 50px;
    font-size: 2.5rem;
}

.tuzki-variations {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    margin: 40px 0;
}

.yellow-line {
    position: absolute;
    width: 80%;
    height: 8px;
    background-color: #E9C25C;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.tuzki-1 {
    position: relative;
    z-index: 2;
    width: 150px;
    height: 150px;
    background-color: #000;
    border: 3px solid #E9C25C;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.tuzki-1 img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.tuzki-2 {
    position: absolute;
    right: 25%;
    z-index: 2;
    width: 150px;
    height: 150px;
    background-color: #000;
    border: 3px solid #E9C25C;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    top: calc(50% - 75px);
}

.tuzki-2 img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.tuzki-3 {
    position: absolute;
    left: 25%;
    z-index: 2;
    width: 150px;
    height: 150px;
    background-color: #000;
    border: 3px solid #E9C25C;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    top: calc(50% - 75px);
}

.tuzki-3 img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.hero-video {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video video {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#moving-text{
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    display: flex;
    font-family: ChubGothic;
    margin-bottom: 20px;
}

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

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


.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;
}





#moving-text1{
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    display: flex;
    font-family: ChubGothic;
    margin-bottom: 20px;
}

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

#moving-text1 h1{
    font-size: 2vw;
    display: inline-block;
    color: #E9C25C;
    margin: 0;
    padding: 1vw 1vw;
    background-color: #000;
}


.con1{
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    animation-name: moveback;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    flex-shrink: 0;
    min-width: 100vw;
}

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



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

.gallery {
    columns: 3;
    column-gap: 0;
    padding: 30px 0 0 0;
    width: 100%;
    column-fill: balance;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    padding: 10px 10px;
    border-radius: 0;
    transition: transform 0.3s ease;
    break-inside: avoid;
    page-break-inside: avoid;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.download-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'ChubGothic', sans-serif;
    font-weight: bold;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    opacity: 0.7;
}

.gallery-item:hover .download-btn {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text h3 {
        font-size: 1.7rem;
    }
    
    .buy-button {
        align-self: center;
    }
    
    .social-links {
        justify-content: center;
    }

    #moving-text h1,
    #moving-text1 h1 {
        font-size: 5vw;
    }
    
    .gallery {
        columns: 3;
        column-gap: 0;
        padding: 0;
    }

    .gallery-item{
        padding: 2px;
    }
    
    .tuzki-variations {
        padding: 40px 10px;
    }
    
    .yellow-line {
        width: 90%;
        height: 4px;
    }

    .ca-container{
        width: 380px;
        margin-top: 20px;
    }

    .ca-text{
        font-size: 0.7rem;
    }
    
    .tuzki-1,
    .tuzki-2,
    .tuzki-3 {
        width: 80px;
        height: 80px;
        border-width: 2px;
    }
    
    .tuzki-2 {
        right: 10%;
        top: calc(50% - 40px);
    }
    
    .tuzki-3 {
        left: 10%;
        top: calc(50% - 40px);
    }
}

/* Mobile Modal Styles - Hidden on Desktop */
.mobile-modal {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.mobile-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-modal img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.mobile-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.mobile-modal-download {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'ChubGothic', sans-serif;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

/* Show modal only on mobile */
@media (max-width: 768px) {
    .mobile-modal.active {
        display: flex !important;
    }
}


