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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

header {
    padding: 20px 0;
    background-color: #E4F2FA;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.header-cta {
    background: #0099e0;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 153, 224, 0.2);
}

.header-cta:hover {
    background: #0087c8;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 153, 224, 0.3);
}

.hero {
    margin-top: 90px;
    padding: 80px 0;
    background: linear-gradient(135deg, #E4F2FA 0%, #ffffff 50%, #E4F2FA 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(228, 242, 250, 0.3) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a5490;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 40px;
    font-weight: 300;
}

.prize-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 3px solid #1a5490;
    border-radius: 20px;
    padding: 50px;
    margin: 40px auto;
    max-width: 700px;
    position: relative;
    box-shadow: 0 20px 60px rgba(26, 84, 144, 0.2);
    overflow: visible;
}

.prize-box::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 40"><path d="M0,20 Q50,0 100,20 T200,20" stroke="%23FFD700" stroke-width="3" fill="none"/><circle cx="20" cy="20" r="3" fill="%23FFD700"/><circle cx="50" cy="10" r="3" fill="%23FFD700"/><circle cx="80" cy="15" r="3" fill="%23FFD700"/><circle cx="120" cy="15" r="3" fill="%23FFD700"/><circle cx="150" cy="10" r="3" fill="%23FFD700"/><circle cx="180" cy="20" r="3" fill="%23FFD700"/></svg>') no-repeat center;
    background-size: contain;
}

.prize-box::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 40"><path d="M0,20 Q50,0 100,20 T200,20" stroke="%23FFD700" stroke-width="3" fill="none"/><circle cx="20" cy="20" r="3" fill="%23FFD700"/><circle cx="50" cy="10" r="3" fill="%23FFD700"/><circle cx="80" cy="15" r="3" fill="%23FFD700"/><circle cx="120" cy="15" r="3" fill="%23FFD700"/><circle cx="150" cy="10" r="3" fill="%23FFD700"/><circle cx="180" cy="20" r="3" fill="%23FFD700"/></svg>') no-repeat center;
    background-size: contain;
}

.amazon-logo {
    width: 200px;
    height: auto;
    margin: 20px 0;
}

.gift-card-visual {
    position: relative;
    background: linear-gradient(135deg, #FF9900 0%, #FF6600 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    margin: 30px auto;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.gift-card-visual:hover {
    transform: perspective(1000px) rotateY(5deg);
}

.gift-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.gift-card-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.gift-card-amount {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.gift-card-code {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-family: monospace;
    letter-spacing: 2px;
}

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

@keyframes sparkle {
    0% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
    100% { opacity: 0; transform: scale(0) rotate(360deg); }
}

.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #FFD700 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; }
.sparkle:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 1s; }
.sparkle:nth-child(4) { bottom: 10%; right: 10%; animation-delay: 1.5s; }

.prize-amount {
    font-size: 4rem;
    font-weight: 800;
    color: #1a5490;
    margin-bottom: 10px;
}

.prize-text {
    font-size: 1.8rem;
    color: #333;
}

.form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a5490;
}

.form-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Style for the Zendesk form container */
#zendesk-form-container {
    margin: 40px 0;
    min-height: 600px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Override Zendesk form iframe styles */
#zendesk-form-container iframe {
    height: 600px !important;
    max-width: 600px !important;
    margin: 0 auto;
}

.benefits {
    padding: 80px 0;
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    background: #E4F2FA;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #1a5490;
    box-shadow: 0 10px 30px rgba(26, 84, 144, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.5rem;
    color: #1a5490;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-description {
    color: #555;
    line-height: 1.6;
}

.countdown {
    background: linear-gradient(135deg, #1a5490 0%, #2a6bb0 100%);
    padding: 50px;
    border-radius: 20px;
    margin: 50px auto;
    max-width: 700px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(26, 84, 144, 0.3);
}

.countdown-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    min-width: 90px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.cta-section {
    text-align: center;
    padding: 60px 0;
    background: #E4F2FA;
}

.cta-title {
    font-size: 2rem;
    color: #1a5490;
    margin-bottom: 20px;
}

footer {
    background-color: #1a5490;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-text {
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .prize-amount {
        font-size: 3rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .form-container {
        padding: 40px 20px;
    }
}