/* Bio Link Site Stil Dosyası */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #8B0000;
    --text-color: #ffffff;
    --card-bg: #1a1a1a;
    --link-hover: rgba(255, 255, 255, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-color);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.08) 10px, rgba(0,0,0,0.08) 20px);
    min-height: 100vh;
    padding: 20px;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.content-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo-container {
    margin-bottom: 15px;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--text-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.site-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 10px;
}

/* Links Section */
.links-section {
    margin-bottom: 30px;
}

.link-button {
    display: flex;
    align-items: center;
    padding: 16px 22px;
    margin-bottom: 14px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 4px 8px rgba(0, 0, 0, 0.15);
    opacity: 0.95;
}

.link-icon {
    font-size: 20px;
    margin-right: 15px;
    width: 24px;
    height: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 24px;
    max-height: 24px;
}

.link-text {
    flex: 1;
}

/* Contact Section */
.contact-section {
    margin-bottom: 30px;
    text-align: center;
}

.description {
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-button {
    display: inline-block;
    padding: 14px 35px;
    background: var(--text-color);
    color: var(--card-bg);
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-button:hover::before {
    width: 300px;
    height: 300px;
}

.contact-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Playlist Section */
.playlist-section {
    margin-top: 30px;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
}

.playlist-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.songs-list {
    margin-bottom: 20px;
}

.song-item-wrapper {
    margin-bottom: 20px;
}

.song-item {
    display: flex;
    align-items: center;
    padding: 14px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.song-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

.spotify-track-embed-wrapper {
    margin-bottom: 16px;
}

.spotify-embed-container {
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: #181818;
}

.spotify-embed-container iframe {
    width: 100%;
    display: block;
    border: none;
    min-height: 152px;
}

.playlist-embed-container {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: #181818;
}

.playlist-embed-container iframe {
    width: 100%;
    display: block;
    border: none;
    min-height: 352px;
}

.song-art {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.song-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.song-art-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    font-size: 24px;
}

.song-info {
    flex: 1;
    min-width: 0;
}

.song-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-artist {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.spotify-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #1DB954;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-top: 15px;
}

.spotify-button:hover {
    background: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.spotify-icon {
    margin-right: 10px;
    font-size: 20px;
}

/* Shopier Section */
.shopier-section {
    margin-top: 30px;
}

.shopier-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: center;
}

.shopier-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.shopier-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.shopier-product-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.shopier-product-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.shopier-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shopier-product-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 10px;
}

.shopier-product-info {
    text-align: center;
    width: 100%;
}

.shopier-product-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 5px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shopier-product-price {
    font-size: 14px;
    font-weight: 700;
    color: #4CAF50;
    margin: 0;
}

.shopier-embed-container {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
}

.shopier-embed-container iframe {
    width: 100%;
    border: none;
    border-radius: 8px;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    
    .content-card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .site-title {
        font-size: 24px;
    }
    
    .link-button {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .song-item {
        padding: 10px;
    }
    
    .song-art {
        width: 50px;
        height: 50px;
    }
}

