body {
    background: #08070F;
    color: #EAE8F2;
    font-family: 'Manrope', sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    padding-bottom: 5rem;
}

.noise-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.orb-glow {
    position: fixed;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 50vh;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.2) 0%, rgba(255, 107, 157, 0.1) 50%, transparent 70%);
    filter: blur(80px);
    animation: breathOrb 8s infinite alternate ease-in-out;
    z-index: 0;
    pointer-events: none;
}

@keyframes breathOrb {
    0% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.grid-bg {
    position: fixed;
    inset: 0;
    background-size: 50px 50px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.hero {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.header-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.badge-style {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.showcase-container {
    position: relative;
    z-index: 10;
}

.card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    height: 100%;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.01);
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 99, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(108, 99, 255, 0.1);
}

.card-body {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.design-num {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9B6FFF;
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
}

.design-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.6rem;
    margin-bottom: 0;
    color: #EAE8F2;
    transition: 0.3s;
}

.card:hover .design-title {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

a {
    text-decoration: none;
}