:root {
    --primary-pink: #ff0080;
    --light-pink: #fff0f6;
    --soft-pink: #ffdeeb;
    --deep-pink: #c20061;
    --white: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --font-serif: "Playfair Display", serif;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --shadow: 0 10px 30px rgba(255, 0, 128, 0.08);
}

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

body {
    background-color: #f8f8f8;
    font-family: var(--font-sans);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.instagram-post {
    width: 100%;
    max-width: 1080px;
    aspect-ratio: 1 / 1;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 60px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.1);
}

/* Background Elements */
.bg-blob {
    position: absolute;
    z-index: 0;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.4;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--soft-pink);
    top: -200px;
    right: -200px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--light-pink);
    bottom: -100px;
    left: -100px;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 0, 128, 0.1);
    padding: 40px;
    border-radius: 4px;
}

header {
    margin-bottom: 40px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: var(--primary-pink);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--deep-pink);
    line-height: 1.1;
    font-style: italic;
    font-weight: 900;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-top: 10px;
    font-weight: 400;
}

.packages-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 700px;
}

.package-card {
    background: var(--white);
    border: 1px solid var(--soft-pink);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: var(--primary-pink);
}

.pay-tag {
    text-align: left;
}

.pay-tag .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.pay-tag .amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
}

.arrow-divider {
    color: var(--primary-pink);
    opacity: 0.3;
}

.get-tag {
    text-align: right;
}

.get-tag .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--primary-pink);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.get-tag .amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-pink);
}

.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.terms {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    max-width: 400px;
}

.logo-container {
    height: 60px;
}

.logo-img {
    height: 100%;
    object-fit: contain;
}

/* Decorative elements */
.sparkle {
    position: absolute;
    color: var(--primary-pink);
    opacity: 0.6;
}

.sparkle-1 { top: 15%; left: 10%; }
.sparkle-2 { bottom: 25%; right: 10%; }

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}
