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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.8s ease-in;
}

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

/* Profile Section */
.profile {
    margin-bottom: 40px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin: 0 auto 20px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    font-style: italic;
}

.artist-name {
    font-size: 36px;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tagline {
    font-size: 16px;
    color: #999;
    font-style: italic;
    margin-bottom: 8px;
}

.location {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.bio {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
    margin: 20px auto 0;
    max-width: 500px;
}

/* Links Section */
.links {
    margin: 40px 0;
}

.link-button {
    display: block;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    position: relative;
    overflow: hidden;
}

.link-button:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.link-button .icon {
    margin-right: 10px;
    font-size: 18px;
}

.link-featured {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border: 3px solid #ffffff;
    animation: pulse 2s infinite;
}

.link-button.coming-soon {
    background: repeating-linear-gradient(
        45deg,
        #1a1a1a,
        #1a1a1a 10px,
        #151515 10px,
        #151515 20px
    );
    color: #555;
    border: 2px solid #333;
    cursor: not-allowed;
    position: relative;
}

.link-button.coming-soon:hover {
    background: repeating-linear-gradient(
        45deg,
        #1a1a1a,
        #1a1a1a 10px,
        #151515 10px,
        #151515 20px
    );
    color: #555;
    transform: none;
    box-shadow: none;
}

.coming-soon-badge {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: #ffcc00;
    color: #000;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coming-soon-badge::before {
    content: '⚠️ ';
}

@media (max-width: 600px) {
    /* Simpler coming soon style for mobile */
    .link-button.coming-soon {
        background: #0d0d0d; /* Solid dark instead of stripes */
        color: #666;
        border: 2px solid #333;
    }
    
    .coming-soon-badge {
        right: 12px;
        padding: 4px 10px;
        font-size: 9px;
        background: #ffcc00;
        color: #000;
    }
}

/* Music Player Section */
.music-player {
    margin: 30px 0;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 20px;
    border: 2px solid #333;
}

.player-title {
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #ffffff;
}

.music-player iframe {
    border-radius: 12px;
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #ffcc00;
    color: #000;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 204, 0, 0.3);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 600px) {
    .toast {
        bottom: 20px;
        font-size: 13px;
        padding: 12px 20px;
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.link-button.coming-soon.clicked {
    animation: shake 0.3s ease-in-out;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

/* Social Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Brand Icon Styling */
.icon-brand {
    margin-right: 12px;
    font-size: 20px;
    vertical-align: middle;
    display: inline-block;
}

.link-button:hover .icon-brand {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.link-button.coming-soon .icon-brand {
    opacity: 0.5; /* Just dim them instead of changing color */
}

.social-icon-colored {
    background: #ffffff;
}

.social-icon-colored i {
    font-size: 22px;
}

.social-icon-colored:hover {
    background: #f0f0f0;
    transform: translateY(-5px) scale(1.1);
}

/* Footer */
.footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 13px;
}

.footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 600px) {
    .artist-name {
        font-size: 28px;
    }
    
    .link-button {
        font-size: 15px;
        padding: 16px 25px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeOut 0.5s ease-out 0.3s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        pointer-events: none;
    }
}

.loading-text {
    font-size: 24px;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
}
