@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Roboto:wght@300;400;500&display=swap');

header {
    background: rgba(0,0,0,0.3) !important;
    backdrop-filter: blur(5px) !important;
    padding: 0 !important; /* Padding'i kaldırdım */
    height: 40px !important; /* Sabit yükseklik belirledim */
    justify-content: space-around !important;
}

.single-page {
    padding: 120px 20px 60px;
    min-height: 100vh;
    background: linear-gradient(45deg, #000000, #1a1a1a);
}

.single-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    animation: fadeIn 0.8s ease-out;
}

.single-info {
    text-align: center;
}

.single-cover-large {
    width: min(300px, 80vw); /* Biraz daha küçültüyoruz */
    height: min(300px, 80vw); /* Genişlik ve yükseklik eşit - kare yapıyoruz */
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 64, 129, 0.3);
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
    transition: all 0.5s ease;
    animation: slideInTop 1s ease-out;
}

.single-cover-large:hover {
    transform: scale(1.02) rotate(2deg);
    box-shadow: 0 15px 40px rgba(255, 64, 129, 0.5);
}

.single-info h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-family: 'Bangers', cursive;
    color: #ff4081;
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
    animation: slideInLeft 0.8s ease-out 0.3s both;
    letter-spacing: 1px;
    font-weight: normal;
}

.release-date {
    color: #888;
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    animation: slideInRight 0.8s ease-out 0.5s both;
}

.streaming-links {
    text-align: center;
    padding: clamp(2rem, 4vw, 4rem) 0;
    animation: slideInBottom 0.8s ease-out 0.7s both;
}

.streaming-links h2, .video-section h2, .lyrics-section h2 {
    font-size: 2em;
    font-family: 'Bangers', cursive;
    color: #ff4081;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: normal;
}

.platform-links {
    display: flex;
    justify-content: center; /* Center the platform links horizontally */
    align-items: center;
    gap: clamp(0.7rem, 1.5vw, 1.5rem);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 clamp(0.7rem, 2vw, 1.5rem);
    flex-wrap: wrap; /* Allow links to wrap on smaller screens */
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 1vw, 1rem);
    padding: clamp(1rem, 2vw, 1.5rem);
    min-width: 180px; /* Add minimum width for consistency */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    border: 1px solid transparent;
    transform-origin: center;
}

.platform-link:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 64, 129, 0.1);
    border-color: rgba(255, 64, 129, 0.3);
    box-shadow: 0 10px 20px rgba(255, 64, 129, 0.2);
}

.platform-link i {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.platform-link:hover i {
    transform: scale(1.2);
}

.platform-link span {
    font-size: 1.1em;
    position: relative;
}

.platform-link span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.platform-link:hover span::after {
    width: 100%;
}

.spotify:hover {
    color: #1DB954;
}

.apple-music:hover {
    color: #fa57c1;
}

.youtube:hover {
    color: #FF0000;
}

.deezer:hover {
    color: #00C7F2;
}

.video-section {
    margin-top: 50px;
    animation: slideInBottom 0.8s ease-out 0.9s both;
    text-align: center; /* Center the video section */
}

.video-section h2 {
    font-size: 2em;
    color: #ff4081;
    margin-bottom: 30px;
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 64, 129, 0.3);
    transition: all 0.5s ease;
}

.video-container:hover {
    box-shadow: 0 15px 40px rgba(255, 64, 129, 0.5);
    transform: scale(1.01);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: none;
}

.lyrics-section {
    margin-top: 70px;
    animation: slideInBottom 0.8s ease-out 1.1s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lyrics-section h2 {
    font-size: 2em;
    color: #ff4081;
    margin-bottom: 30px;
    text-align: center;
}

.lyrics-content {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 15px;
    line-height: 1.7;
    font-size: 1.1em;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-left: 3px solid #ff4081;
}

.lyrics-content p {
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInTop {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInBottom {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .platform-links {
        justify-content: center;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .single-cover-large {
        width: 250px;
        height: 250px;
    }

    .platform-links {
        flex-direction: column;
        align-items: center;
    }

    header {
        padding: 6px 2% !important;
    }
}

@media (max-width: 576px) {
    .platform-links {
        flex-direction: column;
        align-items: center;
    }
}