:root {
    --primary-gradient: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    --bg-gradient: linear-gradient(140deg, #1A0B2E 0%, #3B1B54 50%, #612265 100%);
    --text-primary: #ffffff;
    --text-secondary: #f0e6ff;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --accent: #ffb86c;
}

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

body {
    font-family: 'Outfit', -apple-system, sans-serif;
    background: var(--bg-gradient);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    padding-bottom: 2rem;
}

/* Background Animated Blobs */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(90px);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #FF3366;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: #8000FF;
    bottom: -200px;
    right: -150px;
    animation-delay: -5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: #FF9933;
    top: 30%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(120px, 80px) scale(1.1); }
    100% { transform: translate(-80px, 120px) scale(0.9); }
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 3rem;
    animation: fadeInDown 1s ease-out forwards;
}

.title {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 900;
    background: linear-gradient(to right, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(255, 154, 158, 0.3);
}

.subtitle {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: var(--text-secondary);
    font-weight: 300;
}

/* Content Section Layout */
.content-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 100%;
}

@media (min-width: 850px) {
    .content-section {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "img1 card"
            "img1 img2";
        gap: 3rem;
        align-items: center;
    }
    
    .content-section .image-wrapper:nth-child(1) { grid-area: img1; }
    .content-section .card { grid-area: card; }
    .content-section .image-wrapper:nth-child(3) { grid-area: img2; }
}

/* Glassmorphism Card */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    transform: translateY(30px);
    opacity: 0;
}

.glassmorphism:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px -12px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.copy-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.copy-text strong {
    color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Image Wrappers */
.image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    height: 100%;
    min-height: 300px;
    opacity: 0;
    transform: translateY(30px);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 40px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 1;
    pointer-events: none;
}

.rounded-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40px;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-wrapper:hover .rounded-image {
    transform: scale(1.08);
}

/* CTA Button */
.cta-button {
    background: var(--primary-gradient);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: inherit;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.6);
}

.cta-button:active {
    transform: translateY(2px) scale(0.98);
}

.heart {
    animation: beat 1.5s infinite;
    display: inline-block;
    font-size: 1.4rem;
}

@keyframes beat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3) rotate(-10deg); }
    50% { transform: scale(1); }
    75% { transform: scale(1.3) rotate(10deg); }
}

/* Footer */
footer {
    margin-top: 6rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0;
}

/* Initial Load Animations */
.animate-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-in {
    animation: fadeIn 1s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .container { padding: 1.5rem 1rem; }
    .glassmorphism { 
        padding: 2.5rem 1.5rem; 
        border-radius: 28px;
    }
    .content-section { gap: 2.5rem; }
    .image-wrapper { 
        border-radius: 28px; 
        min-height: 250px;
    }
    .image-wrapper::before { border-radius: 28px; }
    .rounded-image { border-radius: 28px; }
    .title { font-size: 3.5rem; }
    .hero { margin-bottom: 2.5rem; }
}
