:root {
    --primary: #FF0054;
    --secondary: #00D9FF;
    --dark: #0A0A0A;
    --dark-gray: #1A1A1A;
    --mid-gray: #2A2A2A;
    --light-gray: #B0B0B0;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Oswald', sans-serif;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.1;
    top: -100px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

body::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--secondary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.1;
    bottom: -100px;
    left: -100px;
    animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.card-container {
    position: relative;
    z-index: 1;
}

.business-card {
    background: var(--dark-gray);
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideUp 0.6s ease-out;
}

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

.card-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.artist-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 1px;
}

.card-body {
    padding: 30px;
}

.contact-section,
.social-section {
    margin-bottom: 30px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--mid-gray);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: var(--mid-gray);
    border-radius: 10px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.contact-item:hover {
    background: var(--dark);
    border-left-color: var(--secondary);
    transform: translateX(5px);
}

.contact-item .icon {
    font-size: 1.5rem;
}

.contact-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-btn {
    width: 60px;
    height: 60px;
    background: var(--mid-gray);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 2rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--secondary);
    transform: translateY(-5px) rotate(5deg);
}

.social-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.action-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn.primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 0, 84, 0.3);
}

.action-btn.primary:hover {
    background: #CC0043;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 84, 0.5);
}

.action-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--secondary);
}

.action-btn.secondary:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .business-card {
        border-radius: 15px;
    }

    .card-header {
        padding: 30px 20px 25px;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    .artist-name {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .card-body {
        padding: 20px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .contact-text {
        font-size: 0.85rem;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .action-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
