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

@font-face {
    font-family: 'Union Gothic';
    src: url('Fonts/union_gothic-variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

body {
    font-family: 'Union Gothic', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #261ad1;
    margin: 0;
    padding: 0;
}

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

/* Logo Section */
.logo-section {
    background: #261ad1;
    padding: -20rem 0;
    position: relative;
    z-index: 10;
}

/* Hero Section */
.hero {
    background: #261ad1;
    color: white;
    padding: 2rem 1rem;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    z-index: 2;
}

.logo-container {
    text-align: center;
}

.campaign-logo {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

.call-to-action {
    margin-top: 2rem;
}

.challenge-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.prove-it {
    font-size: 2rem;
    font-weight: 700;
    color: #f97316;
    margin: 1rem 0;
}

.call-now {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.phone-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.phone-number:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.candidate-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.candidate-photo {
    width: 400px;
    height: 500px;
    object-fit: cover;
}

/* Hot Girl Message */
.hot-girl-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -5rem;
    text-align: center;
    font-family: 'Union Gothic', sans-serif;
}

.message-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Union Gothic', sans-serif;
}

.hot-girl-status {
    font-size: 3rem;
    font-weight: 900;
    color: #f97316;
    margin: 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Union Gothic', sans-serif;
}

/* How It Works Section */
.how-it-works {
    margin-top: 3rem;
    text-align: center;
    font-family: 'Union Gothic', sans-serif;
}

.how-it-works-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Union Gothic', sans-serif;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.step-item {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.4;
    font-family: 'Union Gothic', sans-serif;
}

.step-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: #f97316;
    font-family: 'Union Gothic', sans-serif;
}

.steps-list {
    counter-reset: step-counter;
}

/* Testimonials */
.testimonials {
    background: #261ad1;
    color: #fff;
    padding: 2rem 1rem 3rem;
}

.testimonials-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 160px;
}

.testimonial-item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 300ms ease, transform 300ms ease;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-quote {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.testimonial-author {
    margin-top: 0.75rem;
    font-size: 1.05rem;
    opacity: 0.9;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.testimonial-btn {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 200ms ease, transform 150ms ease;
}

.testimonial-btn:hover {
    background: rgba(255,255,255,0.25);
}

.testimonial-btn:active {
    transform: scale(0.96);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.35);
}

.testimonial-dot.active {
    background: #fff;
}

.leaderboard {
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.leaderboard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

.leaderboard-item:hover {
    background: #f3f4f6;
}

.leaderboard-item:last-child {
    border-bottom: none;
}

.rank {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e40af;
    min-width: 40px;
}

.rank.first {
    color: #fbbf24;
}

.rank.second {
    color: #9ca3af;
}

.rank.third {
    color: #cd7c2f;
}

.player-info {
    flex: 1;
    margin-left: 1rem;
}

.player-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1f2937;
}

.player-phone {
    color: #6b7280;
    font-size: 0.9rem;
}

.player-score {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e40af;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
    font-size: 1.1rem;
}

/* Add Score Form */
.add-score-form {
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    padding: 1rem;
}

.add-score-form h3 {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1e40af;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Footer Section */
.footer-section {
    background: #261ad1;
    padding: 0;
    text-align: center;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .logo-container {
        text-align: center;
    }
    
    .campaign-logo {
        max-height: 180px;
    }
    
    .challenge-text {
        font-size: 1.2rem;
    }
    
    .prove-it {
        font-size: 1.5rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
    }
    
    
    .leaderboard-title {
        font-size: 2rem;
    }
    
    .election-content h2 {
        font-size: 2rem;
    }

    /* Increase footer height on tablets/phones */
    .footer-section {
        padding: 1rem 0;
    }
    .footer-image {
        max-height: 520px;
    }

    /* Testimonials mobile tweaks */
    .testimonials-title {
        font-size: 1.6rem;
    }
    .testimonial-quote {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
    }
    
    .logo-container {
        text-align: center;
    }
    
    .campaign-logo {
        max-height: 150px;
    }
    
    .leaderboard-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .player-info {
        margin-left: 0;
    }

    /* Increase footer height on small phones */
    .footer-section {
        padding: 1.5rem 0;
    }
    .footer-image {
        max-height: 560px;
    }

    /* Testimonials small phones */
    .testimonial-quote {
        font-size: 1.15rem;
    }
}
