/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF8C00;
    --secondary-orange: #FFA500;
    --primary-blue: #3B82F6;
    --secondary-blue: #8B5CF6;
    --dark-bg: #0F172A;
    --light-bg: #1E293B;
    --card-bg: rgba(255, 255, 255, 0.05);
    --white: #FFFFFF;
    --gray-light: #E5E7EB;
    --gray: #94A3B8;
    --green: #10B981;
    --red: #EF4444;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --border-radius: 1.5rem;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1E1B4B 100%);
    color: var(--white);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.year {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
}

.nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav .active a {
    color: var(--white);
    background: rgba(59, 130, 246, 0.2);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h2 {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero.primes-hero .hero-text h2 {
    background: linear-gradient(135deg, var(--white) 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.year-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.trophy-icon {
    font-size: 4rem;
    margin-top: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.background-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    top: 10%;
    left: 10%;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-blue);
    top: 40%;
    right: 10%;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-orange);
    bottom: 10%;
    left: 40%;
}

/* Stats Section */
.stats-section {
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.primes-stats {
    grid-template-columns: repeat(3, 1fr);
}

.stat-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Prime Banner */
.prime-banner {
    padding: 2rem 0;
}

.banner-content {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #EA580C 100%);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    box-shadow: var(--shadow);
}

.prime-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    backdrop-filter: blur(10px);
}

.badge-label {
    font-weight: 700;
    font-size: 0.875rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.prime-info h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.prime-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.prime-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    font-weight: 700;
    font-size: 0.875rem;
}

.current-leader {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    min-width: 200px;
}

.leader-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.leader-name {
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.leader-votes, .leader-code {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Filters */
.filters-section {
    padding: 2rem 0;
}

.filters {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.search-box input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: var(--white);
    font-size: 0.875rem;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.filter-btn.active {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--primary-blue);
    color: var(--white);
}

/* Candidates Section */
.candidates-section {
    padding: 2rem 0 4rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-weight: 600;
}

.dot {
    color: var(--primary-orange);
}

.candidates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.candidate-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.candidate-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
}

.candidate-card.leader {
    border-color: var(--primary-orange);
    position: relative;
}

.candidate-card.leader::before {
    content: 'EN TÊTE';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.candidate-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.candidate-rank {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.candidate-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.candidate-info {
    flex: 1;
    margin-left: 1rem;
}

.candidate-name {
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.candidate-parish {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.candidate-code {
    font-size: 0.875rem;
    color: var(--primary-orange);
    font-weight: 700;
}

.candidate-votes {
    text-align: center;
    margin: 1.5rem 0;
}

.votes-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.votes-percentage {
    font-size: 0.875rem;
    color: var(--primary-orange);
    font-weight: 700;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.candidate-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.share-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.vote-btn {
    flex: 2;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    border: none;
    border-radius: 0.75rem;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.vote-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(255, 140, 0, 0.3);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-light);
}

.support-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.rules {
    list-style: none;
}

.rules li {
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.875rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Primes Page */
.primes-section {
    padding: 2rem 0 4rem;
}

.prime-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    overflow: hidden;
}

.current-prime {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.upcoming-prime {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0EA5E9 100%);
}

.completed-prime {
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
}

.prime-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.prime-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
}

.time-remaining {
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
}

.prime-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.prime-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.prime-content {
    padding: 2rem;
}

.prime-leader {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.leader-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.leader-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.leader-name {
    font-weight: 900;
    font-size: 1.25rem;
}

.leader-info {
    display: flex;
    gap: 1rem;
}

.leader-votes, .leader-code {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.prime-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.price-label {
    color: rgba(255, 255, 255, 0.8);
}

.price-value {
    font-weight: 900;
    color: var(--white);
}

.active-vote {
    width: 100%;
    padding: 1rem;
    background: var(--white);
    color: #059669;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.active-vote:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.3);
}

.disabled-vote {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: not-allowed;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 1rem;
}

.modal-container {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1E1B4B 100%);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--white);
}

.modal-content {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

/* Share Modal */
.share-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    padding: 1rem;
}

.share-modal {
    background: var(--dark-bg);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.share-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-modal-header h4 {
    font-size: 1.25rem;
    font-weight: 900;
}

.close-share {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.close-share:hover {
    color: var(--white);
}

.share-options {
    padding: 1.5rem 2rem;
    display: grid;
    gap: 1rem;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.share-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.share-option i {
    font-size: 1.5rem;
    width: 24px;
}

.share-option[data-platform="copy"] i {
    color: #3B82F6;
}

.share-option[data-platform="facebook"] i {
    color: #1877F2;
}

.share-option[data-platform="whatsapp"] i {
    color: #25D366;
}

/* Modal Content Styling */
.candidate-info-modal {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.prime-info-modal {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.vote-selector {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.vote-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.vote-btn-modal {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-orange);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vote-input {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.vote-total {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-top: 1rem;
}

.vote-total span {
    font-weight: 900;
    color: var(--primary-orange);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label.required::after {
    content: '*';
    color: var(--red);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: white;
    font-size: 0.875rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.error-message {
    color: var(--red);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-orange);
}

.checkbox-label {
    color: var(--gray-light);
    font-size: 0.875rem;
    cursor: pointer;
}

.vote-summary {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #7C3AED 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.summary-title {
    font-size: 1.125rem;
    font-weight: 900;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 900;
    font-size: 1.125rem;
    color: var(--white);
    margin-top: 0.5rem;
}

.summary-label {
    color: rgba(255, 255, 255, 0.8);
}

.summary-value {
    font-weight: 600;
    color: var(--white);
}

.pay-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border: none;
    border-radius: 0.75rem;
    color: white;
    font-weight: 900;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pay-button:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.pay-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.security-info {
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem;
    border-radius: 0.75rem;
    margin-top: 1rem;
    text-align: center;
}

.security-info i {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.security-info p {
    font-size: 0.875rem;
    color: var(--gray-light);
}