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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 25%, #ffd700 50%, #ff6347 75%, #da70d6 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    font-size: 20px;
    color: #ffd700;
    opacity: 0.8;
    animation: twinkle 3s ease-in-out infinite;
    text-shadow: 0 0 10px #ffd700;
}

.star-1 { 
    top: 10%; 
    left: 15%; 
    animation-delay: 0s; 
}

.star-2 { 
    top: 20%; 
    right: 20%; 
    animation-delay: 1s; 
}

.star-3 { 
    bottom: 25%; 
    left: 10%; 
    animation-delay: 2s; 
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.circle-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    right: 10%;
}

.circle-2 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    right: 15%;
    animation-delay: 2s;
    background: linear-gradient(45deg, #da70d6, #ff6347);
}

.flower {
    position: absolute;
    font-size: 24px;
    color: #ff6347;
    opacity: 0.7;
    animation: rotate 6s linear infinite;
    text-shadow: 0 0 10px #ff6347;
}

.flower-1 { 
    top: 30%; 
    left: 5%; 
}

.flower-2 { 
    bottom: 15%; 
    right: 5%; 
    animation-delay: 3s; 
    color: #da70d6; 
    text-shadow: 0 0 10px #da70d6; 
}

.lipstick-emoji {
    position: absolute;
    font-size: 25px;
    opacity: 0.6;
    animation: bounce 3s ease-in-out infinite;
}

.lipstick-1 { 
    top: 25%; 
    left: 8%; 
    animation-delay: 1s; 
}

.lipstick-2 { 
    bottom: 35%; 
    right: 8%; 
    animation-delay: 2.5s; 
}

.makeup-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: 0 0 6px #ffd700;
}

.sparkle-1 { 
    top: 40%; 
    left: 20%; 
}

.sparkle-2 { 
    top: 60%; 
    right: 25%; 
}

.sparkle-3 { 
    bottom: 40%; 
    left: 30%; 
}

/* Animations */
@keyframes twinkle {
    0%, 100% { 
        opacity: 0.8; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2); 
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

@keyframes rotate {
    0% { 
        transform: rotate(0deg); 
    }
    100% { 
        transform: rotate(360deg); 
    }
}

@keyframes bounce {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-15px); 
    }
}

@keyframes colorShift {
    0%, 100% { 
        filter: hue-rotate(0deg); 
    }
    50% { 
        filter: hue-rotate(30deg); 
    }
}

@keyframes buttonGlow {
    0%, 100% { 
        box-shadow: 0 10px 25px rgba(255, 20, 147, 0.4), 0 0 30px rgba(255, 215, 0, 0.3);
    }
    50% { 
        box-shadow: 0 15px 35px rgba(255, 20, 147, 0.6), 0 0 40px rgba(255, 215, 0, 0.5);
    }
}

.page-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.main-content {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.content-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 240, 245, 0.95) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.3), 0 0 50px rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 105, 180, 0.3);
}

.gift-card-section {
    margin-bottom: 30px;
}

.gift-card-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
    transition: transform 0.3s ease;
    border: 3px solid #ffd700;
}

.gift-card-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.5);
}

.heading-section {
    margin-bottom: 30px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff1493, #ff6347, #ffd700, #da70d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: colorShift 3s ease-in-out infinite;
}

.subtitle {
    font-size: 1rem;
    color: #8b0066;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.checklist-section {
    margin-bottom: 30px;
    text-align: left;
}

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 105, 180, 0.2);
    opacity: 0;
    transform: translateX(-20px);
}

.checklist-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.checklist-item:hover {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2) 0%, rgba(255, 215, 0, 0.2) 100%);
    transform: translateX(8px);
    border-color: #ff69b4;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

.checkmark {
    background: linear-gradient(45deg, #ff1493, #ff6347);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(255, 20, 147, 0.4);
    border: 2px solid #ffd700;
}

.checklist-text {
    font-size: 0.95rem;
    color: #8b0066;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

.apply-button {
    background: linear-gradient(135deg, #ff1493 0%, #ff6347 50%, #ffd700 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.4), 0 0 30px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid #ff69b4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: buttonGlow 2s ease-in-out infinite;
}

.apply-button:hover {
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(135deg, #ff0080 0%, #ff4500 50%, #ffcc00 100%);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.6), 0 0 50px rgba(255, 215, 0, 0.5);
}

.apply-button:active {
    transform: translateY(-2px) scale(1.01);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 30px 20px;
    }

    .checklist-text {
        font-size: 0.9rem;
    }
}