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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc0 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.header {
    text-align: center;
    margin-bottom: 3rem;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #8B4513;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.heart {
    font-size: 1rem;
}

.main-content {
    text-align: center;
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.highlight {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-section {
    margin: 3rem 0;
}

.video-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #DAA520, #FFD700);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    background: white;
    transform: scale(1.1);
}

.video-caption {
    font-size: 1rem;
    color: #666;
    margin-top: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

.cta-section {
    margin: 4rem 0;
}

.gift-box {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    padding: 3rem 2rem;
    border-radius: 25px;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.3);
}

.gift-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gift-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.gift-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-form input {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
}

.email-form button {
    padding: 1rem 2rem;
    background: white;
    color: #DAA520;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-form button:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

.privacy-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.made-with {
    background: #2c2c2c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gift-box {
        padding: 2rem 1.5rem;
    }
    
    .email-form {
        flex-direction: column;
    }
}

@media (min-width: 769px) {
    .email-form {
        flex-direction: row;
    }
    
    .email-form input {
        flex: 1;
    }
    
    .email-form button {
        flex-shrink: 0;
    }
}
