body,
html {
    font-family: 'Courier New', Courier, monospace;

    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-image: url('../assets/bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

p {
    font-family: 'Courier New', Courier, monospace;

}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #222;
    text-decoration: none;
    color: white;
    font-size: 28px;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.social-icons a.youtube:hover {
    background-color: #FF0000;
}

.social-icons a.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons a.spotify:hover {
    background-color: #1DB954;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .social-icons {
        gap: 15px;
    }

    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.gif-intro {
    position: absolute;
    top: 35%;
    width: 13vh;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


.no-scroll {
    overflow: hidden;
    /* Kaydırmayı devre dışı bırakır */
    height: 100%;
    /* Yüksekliği sabitler */
}

.intro {
    overflow: hidden;
    /* Kaydırmayı devre dışı bırak */
    z-index: 99;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 4rem;
    font-weight: bold;
    animation: glitchEffect 4s ease-in-out forwards;
}

@keyframes glitchEffect {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        text-shadow: 2px 2px rgb(179, 17, 127), -2px -2px blue;
    }

    25% {
        transform: scale(1.05) rotate(1deg);
        text-shadow: 3px 3px blue, -3px -3px rgb(179, 17, 127);
    }

    50% {
        opacity: 0.9;
        transform: scale(1) rotate(-1deg);
        text-shadow: 2px 2px rgb(179, 17, 127), -4px -4px blue;
    }

    75% {
        transform: scale(1.1) rotate(2deg);
        text-shadow: 3px 3px blue, -3px -3px rgb(179, 17, 127);
    }

    100% {
        opacity: 0;
        transform: scale(1) rotate(0deg);
        text-shadow: 3px 3px rgb(0, 0, 0), -3px -3px rgb(179, 17, 127);

        text-shadow: none;
    }
}


@keyframes glitchEffect2 {
    0% {
        text-shadow: 2px 2px rgb(179, 17, 127), -2px -2px blue;
    }

    25% {
        text-shadow: 3px 3px blue, -3px -3px rgb(179, 17, 127);
    }

    50% {
        text-shadow: 2px 2px rgb(179, 17, 127), -3px -2px blue;
    }

    75% {
        text-shadow: 3px 3px blue, -3px -3px rgb(179, 17, 127);
    }

    100% {
        text-shadow: 2px 2px rgb(179, 17, 127), -2px -3px blue;
    }
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    bottom: 30%;
    height: 30%;
    position: relative;
    animation: fadeIn 2s ease-in-out 4s forwards;
    /* 4 saniye sonra görünürlük artışı */
    opacity: 0;
    /* Başlangıçta görünmez */
}

.gif-logo {
    width: 100px;
    height: auto;
    animation: glitchEffect2 6s infinite forwards;

}

.logo-text {
    font-family: 'Arial', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: glitchEffect2 6s infinite forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* Linkler */
.links {
    font-family: 'Arial', sans-serif;

    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 65px;
}

.link {
    text-decoration: none;
    font-size: 1.4rem;
    color: #ffffff;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
    font-family: 'Arial', sans-serif;

}

.link:hover {
    color: rgb(179, 17, 127);
    border-bottom: 2px solid #ffffff;
}

@media (max-width: 1900px) {
    .gif-intro {
        width: 15vh;
        top: 32%;
    }


}


/* Mobil uyum */
@media (max-width: 768px) {
    .intro {
        font-size: 3rem;
    }

    .gif-intro {
        width: 100px;
        top: 36.5%;
    }

    .gif-logo {
        width: 100px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .link {
        font-size: 0.9rem;
    }
}

.text-gradient {
    font-size: 1.2rem;
    /* Yazı boyutu */
    font-weight: bold;
    /* Kalın yazı */
    font-family: 'Arial', sans-serif;
    /* Yazı tipi */
    background: linear-gradient(90deg, #f7e2c8, #ffd700, #fff8dc, #f4e842);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: shine 3s linear infinite;
}

/* Parlama animasyonu */
@keyframes shine {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}



.left {
    top: 30%;
    position: relative;
    justify-content: center;
    text-align: center;
}

.bundle {

    font-size: 3.2em;
    color: #e12e7e;
    font-family: 'Courier New', Courier, monospace;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    
}


.kuromi-icon {
    width: 90px;
    position: relative;
}

.kuromi-ybg {
    width: 300px;
    position: absolute;
    left: 255px;
    /* Sağda kalması için */
    top: 144%;
    /* Yükseklik olarak ortalar */
    transform: translateY(-50%);
    /* Yatayda tam ortalamak için */
    font-family: 'Arial', sans-serif;
    border-radius: 5%;
}





.kuromi-button {
    float: left;
    position: relative;
    left: 38%;
    background-color: #d59a95;
    color: #2c2c2c;
    padding: 15px 30px;
    border: none;
    font-size: 2.5em;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: animbutton 0.2s ease-in-out infinite;
    /* 0.5 saniye animasyon süresi */
}

@keyframes animbutton {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-1px);
        /* Sol hareket */
        font-size: 2.4em;

    }

    50% {
        transform: translateX(1px);
        /* Sağ hareket */
        font-size: 2.5em;

    }

    75% {
        transform: translateX(-1px);
        /* Sol hareket */
        font-size: 2.4em;

    }

    100% {
        transform: translateX(0);
        /* Başlangıç noktasına dön */
    }
}

.kuromi-button:hover {
    background-color: #e12e7e;
    color: #fff;
    animation: animbuttonsss 0.2s ease-in-out infinite;
    /* 0.5 saniye animasyon süresi */

}

@keyframes animbuttonsss {
    0% {
        transform: translateX(0);
        font-size: 2.5rem;

    }

    100% {
        font-size: 2.5rem;
        transform: translateX(0);
        /* Başlangıç noktasına dön */
    }
}




/* Daha küçük ekranlar için ek uyarlamalar */
@media screen and (max-width: 450px) {
    .bundle {
        font-size: 2.5em;
    }

    .kuromi-icon {
        width: 50px;
    }

    .kuromi-button {
        background-color: #d59a95;
        color: #2c2c2c;
        border: none;
        position: relative;
        float: left;
        left: 22%;
        font-size: 2.2em;
        cursor: pointer;
        border-radius: 10px;
        transition: background-color 0.3s;
        text-align: center;
        animation: animbutton 0.2s ease-in-out infinite;
        /* 0.5 saniye animasyon süresi */
    }

    @keyframes animbutton {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(0);
            /* Başlangıç noktasına dön */
        }
    }

    .description-button {
        position: absolute;
        justify-content: center;
        text-align: center;
        top: 132%;
        left: 20%;
        font-size: 2rem;
        color: #ffffff;
        /* Açık gri renk */
        background-color: #b7838300;
        border-radius: 5%;
        width: 258px;
        height: 80px;
        font-family: 'Arial', sans-serif;

    }


    .text-box-kuromi {
        opacity: 0;
        /* Başlangıçta görünmez */

        animation: fadeIn 3s ease-in-out 4s forwards;
        /* 4 saniye sonra görünürlük artışı */


    }



    .kuromi-ybg {
        top: 80%;
        position: absolute;
        width: 280px;
        float: left;
        left: 15%;

    }
}

hr {
    border: none;
    height: 5px;
    background: #ffffff;
    position: relative;
    width: 100%;
    transition: width 1s ease, background 0.5s ease;
    animation: hrAnimation 2s forwards;
}

/* Animasyon başlatmak için */
@keyframes hrAnimation {
    0% {
        background: #ddd;
    }

    50% {
        background: linear-gradient(90deg, #ff7e5f, #feb47b, #ff6347);
    }

    100% {
        background: linear-gradient(90deg, #ff7e5f, #feb47b, #ff6347);
    }
}



/* Kart Temel Stili */
.producer-card {
    position: absolute;
    max-width: 70%;
    float: left;
    left: 16%;
    top: 120%;
    font-family: 'Courier New', Courier, monospace;
    animation: fadeIn 2s ease-in-out 4s forwards;


    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 20px 0;
}

.producer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(225, 46, 126, 0.3);
}

/* Resim Bölümü */
.producer-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}
        .favico {
                height: auto;
                width: 80px;
                margin: 0%;
                bottom: 0;
                text-align: center;
                /* Metni ortala */
                justify-content: center;
            }

            a {
                font-family: Arial, Helvetica, sans-serif;
                text-decoration: none;
                text-align: center;
                /* Metni ortala */
                justify-content: center;
            }

   




.producer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.producer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Courier New', Courier, monospace;

    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}

.producer-card:hover .producer-img {
    transform: scale(1.1);
}

/* İçerik Bölümü */
.producer-content {
    font-family: 'Courier New', Courier, monospace;

    padding: 25px;
    text-align: center;
}

.producer-title {
    font-size: 2.5rem;
    font-family: 'Courier New', Courier, monospace;

    color: #e12e7e;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.producer-name {
    display: block;
    font-size: 3rem;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: 'Courier New', Courier, monospace;

    color: transparent;
}

.producer-tag {
    display: block;
    font-size: 1.2rem;
    color: #fff;
    margin-top: 10px;
    font-family: 'Courier New', Courier, monospace;

}

.producer-stats {
    font-family: 'Courier New', Courier, monospace;

    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.stat-item {
    font-family: 'Courier New', Courier, monospace;

    text-align: center;
}

.stat-number {
    font-family: 'Courier New', Courier, monospace;

    font-size: 2rem;
    color: #e12e7e;
    font-weight: bold;
}

.stat-label {
    font-family: 'Courier New', Courier, monospace;

    font-size: 0.9rem;
    color: #fff;
    opacity: 0.8;
}

.producer-description {
    font-family: 'Courier New', Courier, monospace;

    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
}

.producer-collabs {
    font-family: 'Courier New', Courier, monospace;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.collab-badge {
    font-family: 'Courier New', Courier, monospace;

    background: rgba(225, 46, 126, 0.2);
    color: #ff8e8e;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #e12e7e;
    transition: all 0.3s ease;
}

.collab-badge:hover {
    background: #e12e7e;
    color: #fff;
    transform: translateY(-3px);
}

.producer-button {
    font-size: 1.7rem;
    display: inline-flex;
    align-items: center;
    background: rgba(225, 46, 126, 0.3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.producer-button:hover {
    background: #e12e7e;
    transform: translateX(10px);
}

/* Mobil Uyum */
@media (max-width: 768px) {
    #custom-cursor {
        display: none;
    }

    .producer-title {
        font-size: 2rem;
    }

    .producer-name {
        font-size: 2.5rem;
    }

    .producer-stats {
        flex-direction: column;
        gap: 15px;
    }

    .producer-image {
        height: 200px;
    }


    .producer-card {
        max-width: 100%;
        left: 0%;
    }
}


#custom-cursor {
    position: absolute;
    width: 64px;
    /* İmleç boyutunu değiştir */
    height: 64px;
    background: url('../assets/cursor.gif') no-repeat center;
    background-size: contain;
    pointer-events: none;
    /* Tıklanabilir öğelerle çakışmasını önler */
    z-index: 9999;
}

.video-container {
    position: relative;
    width: 100%;
    height: 45%;
    max-width: 800px;
    margin: auto;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    /* Köşeleri yuvarlat */
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .video-container {
        width: 100%;
        padding-top: 56.25%;
    }
}

/* Pop-up başlangıçta gizli */
.popup-overlay {

    font-family: Arial, Helvetica, sans-serif;
    display: none;
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Pop-up içeriği */
.popup-content {
    background: #2c2c2c;
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}

/* Kapatma butonu */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
    color: white;
}

/* İndirme butonu */
.download-btn {
    font-family: Arial, Helvetica, sans-serif;
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #560062, #000000);
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.download-btn:hover {
    background: linear-gradient(45deg, #000000, #000000);
}

/* Animasyon */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}