* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    background-color: #4889ff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-family: 'VCR-JP', monospace;
  
}

/* Marquee Styles */
.marquee {
    background-color: #1c1b8b;
    color: #ffff00;
    /* font-weight: bold; */
    /* font-size: 16px; */
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 10;
    height: 40px;
    display: flex;
    align-items: center;
}
.show-text{
    /* background-color: red; */
    display: flex;
    justify-content: center;
    /* flex-direction: column; */
    gap: 20px;
    align-items: center;
    margin-top: 30px;
    display: none;
}

.text{
    background-color: #1c1b8b;
    color: #ffff00;
    padding: 20px;
    border-radius: 10px;
}
.cancel{
    border-radius: 10px;
    background-color: #1c1b8b;
    padding: 20px;
    border: none;
    outline: none;
    color: #ffff00;
    cursor: pointer;
    /* padding: 20px; */

}
.marquee-bottom {
    bottom: 0;
}

.marquee-content {
    display: flex;
    animation: scroll-left 40s linear infinite;
}

span{
    /* background-color: red; */
    display: flex;
    gap:20px;
    margin-right: 20px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Main Content */
.main-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
}

/* Sound Button */
.sound-button {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: #ffff00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sound-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.sound-button svg {
    color: #000;
}

/* Logo */
.logo {
    position: absolute;
    top: 80px;
    /* right: 40px; */
}


/* Content */
.content {
    text-align: center;
    color: white;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.content h1 {
    /* font-size: 3.5rem; */
    font-size: 24px;
    font-weight: bold;
    /* margin-bottom: 30px; */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    /* font-size: 1.5rem; */
font-size: 18px;
    /* margin-bottom: 15px; */
    opacity: 0.9;
    /* background-color: red; */
    text-align: center;
    width: 80%;
    line-height: 1.4;
}
.follow-button-2{
    margin-top: 20px;
}
.follow-button {
    background: #ffff00;
    color: #000;
    border: none;
    padding: 15px 30px;
    /* font-size: 1.1rem; */
    font-size: 16px !important;
    font-weight: bold;
        font-family: 'VCR-JP', monospace;

    border-radius: 10px;
    cursor: pointer;
    /* margin-top: 40px; */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.follow-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #ffff33;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sound-button {
        top: 60px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .logo {
        top: 60px;
        right: 20px;
    }

    .logo-text {
        font-size: 18px;
        padding: 8px 16px;
    }

    .content h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .marquee {
        font-size: 14px;
        height: 35px;
    }

    .marquee-content span {
        padding-right: 40px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .follow-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    .logo-img{
        width: 150px;
    }
}
