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

:root {
    --brand: #661457;
    --brand-strong: #75206a;
    --ink: #2b2142;
    --bg: #ffffff;
    --radius: 14px;
}

body {
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    color: var(--ink);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 820px;
    padding: 20px;
    text-align: center;
}

.logo {
    width: 100%;
    max-width: 520px;
    display: block;
    margin: 12px auto 16px;
}

.banner {
    margin-bottom: 32px;
}

.banner img {
    width: 100%;
    max-width: 480px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.12));
}

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.instagram-icon {
    width: 24px;
    height: 24px;
}

.contact a {
    color: #000000;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact a:hover {
    text-decoration: underline;
}

.banner .tape-link {
    position: relative;
    display: block;
    margin: 10px auto; /* space when stacked */
    transition: transform 120ms ease;
}

.banner .tape-link:hover {
    transform: rotate(-1deg) scale(1.01);
}

.tape-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    text-align: center;
    width: 80%;
    font-weight: 700;
    color: var(--brand);
}

.tape-text p {
    margin: 0;
    line-height: 1.2;
    font-size: 18px;
}

.cta {
    margin: 0 0 64px; 
}

.cta-btn {
    display: inline-block;
    background: var(--brand);
    color: #ffffff;
    padding: 14px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 18px rgba(111,60,200,0.25);
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(111,60,200,0.32);
    background: var(--brand-strong);
}

.cta-btn:focus-visible {
    outline: 3px solid #ffb703; /* warm highlight for accessibility */
    outline-offset: 2px;
}

/* Mobile Responsive Styles */
@media (max-width: 600px) {
    .banner img {
        max-width: 360px;
    }

    .banner .tape-link {
        margin: 6px auto;
    }

    .tape-text p {
        font-size: 16px;
    }
    .cta-btn {
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 12px;
    }
    .contact {
        margin-top: 30px;
        gap: 15px;
    }

    .instagram-icon {
        width: 28px;
        height: 28px;
    }

    .contact a {
        font-size: 1rem;
    }
}
