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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
}

.header {
    background: #4A90E2;
    padding: 20px 80px;
}

.header h1 {
    color: #FFB6C1;
    font-size: 3rem;
    margin: 0;
    font-weight: 800;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
}

.section-content {
    flex: 1;
    max-width: 500px;
    z-index: 2;
}

.section-graphic {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.form-container {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: #666;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.email-input:focus {
    background: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.submit-btn {
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: white;
    transform: scale(1.05);
}

.submit-btn::after {
    content: '→';
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
}

.view-recent {
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-recent:hover {
    opacity: 1;
}

.view-recent::after {
    content: '→';
    font-size: 1rem;
}

/* Section 1 - What A Day */
.section-1 {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
}

.section-1 h1 {
    color: #FFB6C1;
}

.neon-graphic {
    position: relative;
    width: 400px;
    height: 300px;
}

.neon-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 20px #ff69b4;
}

.neon-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.icon:nth-child(1) { top: 10%; left: 10%; background: #ff4757; animation-delay: 0s; }
.icon:nth-child(2) { top: 20%; right: 15%; background: #2ed573; animation-delay: 0.5s; }
.icon:nth-child(3) { bottom: 30%; left: 5%; background: #ffa502; animation-delay: 1s; }
.icon:nth-child(4) { bottom: 10%; right: 20%; background: #3742fa; animation-delay: 1.5s; }
.icon:nth-child(5) { top: 40%; left: 2%; background: #ff6b9d; animation-delay: 2s; }
.icon:nth-child(6) { top: 60%; right: 10%; background: #7bed9f; animation-delay: 2.5s; }

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

/* Section 2 - Vote Save America */
.section-2 {
    background: linear-gradient(135deg, #8B5FBF 0%, #6A4C93 100%);
    color: white;
}

.vote-logo {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-align: center;
    position: relative;
    transform: rotate(-5deg);
}

.vote-logo::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: #000;
    z-index: -1;
    transform: skew(-10deg);
}

/* Section 3 - Big Tent */
.section-3 {
    background: linear-gradient(135deg, #E17055 0%, #D63031 100%);
    color: white;
}

.tent-graphic {
    position: relative;
    width: 300px;
    height: 200px;
}

.tent {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 120px solid #000;
    position: relative;
}

.tent-text {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #E17055;
    letter-spacing: 2px;
}

.tent-subtitle {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: #000;
    letter-spacing: 1px;
}

.flag {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: #E17055;
    animation: wave 2s ease-in-out infinite;
}
.Name-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.Name-input::placeholder {
    color: #666;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.Name-input:focus {
    background: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes wave {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    50% { transform: translateX(-50%) rotate(5deg); }
}

/* Success message */
.success-message {
    background: rgba(46, 213, 115, 0.1);
    border: 2px solid #2ed573;
    color: #2ed573;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 10px;
    display: none;
    animation: slideIn 0.5s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .section-content {
        margin-bottom: 2rem;
    }

    h1, h2 {
        font-size: 2.5rem;
    }

    .form-container {
        flex-direction: column;
    }

    .submit-btn {
        align-self: center;
    }

    .header {
        padding: 20px;
    }

    .header h1 {
        font-size: 2rem;
    }
}