body.design-3 {
    background-color: #0f172a;
    color: #f1f5f9;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

.design-3 .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    background: radial-gradient(circle at 0% 0%, #8b5cf6 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, #f59e0b 0%, transparent 40%);
}

h1,
h2,
h3,
h4 {
    font-weight: 300;
}

.design-3 .artist-blob {
    max-height: 75vh;
    width: 75vh;
    border-radius: 53% 47% 70% 30% / 30% 60% 40% 70%;
    overflow: hidden;
    margin-bottom: 0rem;
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.4);
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0% {
        border-radius: 53% 47% 70% 30% / 30% 60% 40% 70%;
    }

    50% {
        border-radius: 30% 70% 40% 60% / 50% 30% 70% 50%;
    }

    100% {
        border-radius: 53% 47% 70% 30% / 30% 60% 40% 70%;
    }
}

.design-3 .artist-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.design-3 .event-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    letter-spacing: -3px;
    text-transform: none;
    line-height: 1.1;
    /* Expanded gradient for animation */
    background: linear-gradient(45deg,
            #ffffff 0%,
            #8b5cf6 25%,
            #5cf6da 50%,
            #8b5cf6 75%,
            #ffffff 100%);
    background-size: 300% auto;
    animation: flowGradient 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 3rem 0 0 0;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.4));
    text-align: center;
}

@keyframes flowGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.design-3 .event-title span {
    font-family: 'Playfair Display', serif;
    text-transform: none;
    /* Changed from lowercase to none */
    font-style: italic;
    font-weight: 400;
    background: none;
    -webkit-text-fill-color: #228B22;
    /* Forest Green */
}

.design-3 .cta-button {
    /* Dynamic multi-color gradient background */
    background: linear-gradient(45deg,
            #ec4899 0%,
            #8b5cf6 33%,
            #06b6d4 66%,
            #ec4899 100%);
    background-size: 300% auto;
    color: #f1f5f9;
    /* Static font color */
    padding: 1.25rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
    animation: btnBgFlow 12s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes btnBgFlow {

    0%,
    100% {
        background-position: 0% 50%;
        box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
        transform: scale(1);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 15px 45px rgba(236, 72, 153, 0.5);
        transform: scale(1.05);
    }
}

.design-3 .cta-button:hover {
    background: #f1f5f9;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.5);
}

.design-3 .cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 6rem 2rem;
}

.design-3 .glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 30px;
    max-width: 400px;
}

.design-3 .price-box {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.2) 0%, transparent 100%);
    border-radius: 20px;
    margin-top: 2rem;
}

.design-3 .price-value {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    color: #f59e0b;
    letter-spacing: -2px;
}

.design-3 .footer-text {
    padding: 4rem;
    text-align: center;
    opacity: 0.5;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .design-3 .hero-section {
        padding: 1rem 1rem;
        min-height: auto;
    }

    .design-3 .artist-blob {
        width: 90vw;
        height: 70vh;
        margin-bottom: 0;
    }

    .design-3 .event-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
        line-height: 1.1;
        text-align: center;
    }

    .design-3 .hero-section p {
        font-size: 1.4rem !important;
        letter-spacing: 0.1rem !important;
    }

    .design-3 .hero-section h5 {
        letter-spacing: 0.2rem !important;
        font-size: 0.8rem !important;
    }

    .design-3 .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .design-3 .cards-container {
        padding: 3rem 1rem;
        gap: 1.5rem;
    }

    .design-3 .glass-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .design-3 .price-value {
        font-size: 2.5rem;
    }

    .design-3 .footer-text {
        padding: 3rem 1rem;
        font-size: 0.7rem;
    }
}

/* Context Info Animation */
.context-info {
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    text-align: center;
    color: #f1f5f9;
    animation: colorPulse 6s ease-in-out infinite;
    margin-top: 0.5rem;
}

@keyframes colorPulse {

    0%,
    100% {
        color: #f1f5f9;
        text-shadow: 0 0 0px transparent;
    }

    50% {
        color: #8b5cf6;
        /* Soft purple match */
        text-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
    }
}