/* Promotional Landing Page Styles */

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

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Premium Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, #ff0080, #ff8c00, #40e0d0, #ff0080);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Navigation */
.promo-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 128, 0.3);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #ff0080;
}

.nav-logo i {
    font-size: 28px;
}

.urgency-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Section */
.hero-promo {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, #1a0033 0%, #000000 70%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff0080" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="%23ff8c00" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="4s" repeatCount="indefinite"/></circle><circle cx="60" cy="70" r="2.5" fill="%2340e0d0" opacity="0.2"><animate attributeName="opacity" values="0.2;0.8;0.2" dur="5s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-5px); }
    75% { transform: translateY(-30px) translateX(15px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.glow-effects {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow1 8s ease-in-out infinite;
}

.glow-effects::after {
    content: '';
    position: absolute;
    top: 60%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(64, 224, 208, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow2 6s ease-in-out infinite reverse;
}

@keyframes glow1 {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    50% { transform: scale(1.2) translate(20px, -10px); opacity: 0.6; }
}

@keyframes glow2 {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.2; }
    50% { transform: scale(1.3) translate(-15px, 20px); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 100px;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    color: #000000;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: #ff8c00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

/* Promo Code Highlight */
.promo-code-highlight {
    margin-bottom: 40px;
}

.promo-code-container {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border: 2px solid #ff0080;
    border-radius: 15px;
    padding: 20px 30px;
    gap: 15px;
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.3);
}

.promo-label {
    font-size: 18px;
    color: #cccccc;
    font-weight: 500;
}

.promo-code {
    font-size: 32px;
    font-weight: 900;
    color: #ff8c00;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.8);
    letter-spacing: 2px;
}

.copy-code {
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    border: none;
    color: #000000;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.copy-code:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.4);
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: 40px;
}

.countdown-container h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff8c00;
}

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

.time-unit {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #ff0080;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.2);
}

.time-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.time-label {
    font-size: 14px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero CTA */
.hero-cta {
    margin-bottom: 40px;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    color: #000000;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.5);
}

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 15px 50px rgba(255, 0, 128, 0.6);
        transform: scale(1.05);
    }
}

/* Offer Highlight Section */
.offer-highlight {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 100%);
    position: relative;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.price-slash {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #ff0080;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.original-price, .event-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-label {
    font-size: 18px;
    color: #cccccc;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 900;
}

.price-value.crossed {
    color: #666666;
    text-decoration: line-through;
    position: relative;
}

.price-value.highlight {
    color: #ff8c00;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.8);
}

.slash-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slash-line {
    position: absolute;
    width: 120%;
    height: 8px;
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    transform: rotate(-15deg);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.8);
}

.discount-badge {
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    color: #000000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
    transform: rotate(-15deg);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.5);
}

.monthly-reminder {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(64, 224, 208, 0.1);
    border: 1px solid #40e0d0;
    padding: 15px 20px;
    border-radius: 10px;
    color: #40e0d0;
    font-size: 16px;
}

.bonus-offer {
    text-align: center;
}

.airpods-visual {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #40e0d0;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
}

.airpods-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.airpods-container i {
    font-size: 4rem;
    color: #40e0d0;
}

.airpods-info h4 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.airpods-info p {
    font-size: 1.2rem;
    color: #40e0d0;
}

.bonus-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(45deg, #ff8c00, #ff0080);
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
}

.urgency-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 15px 20px;
    border-radius: 10px;
    color: #ff4444;
    font-size: 16px;
    animation: urgentBlink 2s infinite;
}

@keyframes urgentBlink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.7; }
}

/* Why Act Now Section */
.why-act-now {
    padding: 100px 0;
    background: #000000;
}

.why-act-now h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.2;
}

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

.benefit-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, #ff0080, #ff8c00, #40e0d0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #000000;
}

.benefit-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
}

.savings-infographic {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #40e0d0;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.total-savings h3 {
    font-size: 2rem;
    color: #40e0d0;
    margin-bottom: 30px;
}

.savings-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.saving-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.saving-item.total {
    border-bottom: none;
    border-top: 2px solid #40e0d0;
    padding-top: 20px;
    margin-top: 10px;
}

.saving-label {
    font-size: 1.1rem;
    color: #cccccc;
}

.saving-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8c00;
}

.saving-item.total .saving-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.saving-item.total .saving-value {
    font-size: 2rem;
    color: #40e0d0;
    text-shadow: 0 0 20px rgba(64, 224, 208, 0.8);
}

/* Proof & Trust Section */
.proof-trust {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 100%);
    text-align: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff8c00, #ff0080);
    color: #000000;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 40px;
}

.testimonials-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 128, 0.3);
    border-radius: 15px;
    padding: 25px;
}

.quote {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
    font-style: italic;
}

.author {
    font-size: 14px;
    color: #888888;
}

.trust-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #40e0d0;
    font-size: 18px;
    font-weight: 600;
}

/* CTA Form Section */
.cta-form {
    padding: 100px 0;
    background: #000000;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.claim-form {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #ff0080;
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff0080;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.claim-button {
    width: 100%;
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    color: #000000;
    border: none;
    padding: 20px;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.claim-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.5);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888888;
    font-size: 14px;
    text-align: center;
}

.form-benefits {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #40e0d0;
    border-radius: 20px;
    padding: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 16px;
}

.benefit-item i {
    color: #40e0d0;
    font-size: 18px;
}

/* Urgency Footer Section */
.urgency-footer {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0033 0%, #000000 100%);
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.countdown-repeat {
    margin-bottom: 40px;
}

.countdown-repeat h3 {
    font-size: 2rem;
    color: #ff4444;
    margin-bottom: 20px;
}

.countdown-timer-small {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8c00;
}

.urgency-message {
    margin-bottom: 40px;
}

.urgency-message h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ff4444;
}

.urgency-message p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
}

.mega-glow {
    animation: megaGlow 1.5s infinite;
    font-size: 22px !important;
    padding: 25px 50px !important;
}

@keyframes megaGlow {
    0%, 100% { 
        box-shadow: 0 15px 40px rgba(255, 0, 128, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 20px 60px rgba(255, 0, 128, 0.8);
        transform: scale(1.08);
    }
}

/* Footer */
.promo-footer {
    background: #000000;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 0, 128, 0.3);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #ff0080;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff0080;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .time-unit {
        min-width: 80px;
        padding: 15px;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .offer-content,
    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-mini {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .promo-code-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .promo-code {
        font-size: 24px;
    }
    
    .savings-breakdown {
        gap: 10px;
    }
    
    .saving-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 10px;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .urgency-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}
