
        /* All your existing CSS styles remain the same */
        :root {
            --primary: #6C63FF;
            --primary-dark: #554FD8;
            --secondary: #FF6584;
            --success: #36D399;
            --warning: #FFB347;
            --danger: #FF6B6B;
            --dark: #1A1A2E;
            --light: #F8F9FF;
            --gradient: linear-gradient(135deg, #6C63FF 0%, #FF6584 100%);
            --shadow: 0 10px 30px rgba(108, 99, 255, 0.15);
            --radius: 20px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--light);
            color: var(--dark);
            overflow-x: hidden;
            font-size: 14px;
            line-height: 1.5;
        }

        .container {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }

        .search-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            min-height: 80vh;
            height: auto;
            padding: 120px 0 80px;
            color: white;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
        }

        .search-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 80px 0 40px !important;
            color: white;
            position: relative;
            overflow: hidden;
            margin-top: 0;
        }

        .search-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('assets/images/pattern.png');
            opacity: 0.1;
            animation: slideBackground 20s linear infinite;
        }

        @keyframes slideBackground {
            from {
                background-position: 0 0;
            }

            to {
                background-position: 100% 100%;
            }
        }

        .search-hero h1 {
            font-size: 1.8rem !important;
            font-weight: 800;
            margin-bottom: 10px !important;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .search-hero p {
            font-size: 0.9rem !important;
            opacity: 0.95;
            margin-bottom: 20px !important;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .search-box {
            max-width: 500px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .search-input-group {
            background: white;
            border-radius: 50px;
            padding: 3px !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
        }

        .search-input-group input {
            flex: 1;
            border: none;
            padding: 10px 20px !important;
            border-radius: 50px;
            font-size: 0.9rem !important;
            background: transparent;
            outline: none;
            width: 100%;
            cursor: text;
            font-family: monospace;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .search-input-group input:focus {
            outline: none;
            box-shadow: none;
            background: transparent;
        }

        .search-input-group input::placeholder {
            text-transform: none;
            letter-spacing: normal;
            font-family: 'Poppins', sans-serif;
        }

        .search-input-group button {
            background: var(--gradient);
            border: none;
            padding: 8px 25px !important;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
            white-space: nowrap;
            font-size: 0.9rem !important;
        }

        .search-input-group button:hover {
            transform: scale(1.02);
        }

        .search-box small {
            font-size: 0.7rem !important;
        }

        .search-hero.has-results {
            min-height: auto;
            padding: 100px 0 60px;
        }

        .hero-background-animation {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            z-index: 1;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: floatAround 20s infinite ease-in-out;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .shape i {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .shape-1 {
            width: 80px;
            height: 80px;
            top: 15%;
            left: 5%;
            animation-delay: 0s;
            animation-duration: 18s;
        }

        .shape-2 {
            width: 60px;
            height: 60px;
            top: 70%;
            left: 10%;
            animation-delay: 2s;
            animation-duration: 22s;
        }

        .shape-3 {
            width: 100px;
            height: 100px;
            top: 25%;
            right: 8%;
            animation-delay: 1s;
            animation-duration: 20s;
        }

        .shape-4 {
            width: 70px;
            height: 70px;
            bottom: 15%;
            right: 15%;
            animation-delay: 3s;
            animation-duration: 25s;
        }

        .shape-5 {
            width: 50px;
            height: 50px;
            top: 50%;
            left: 15%;
            animation-delay: 1.5s;
            animation-duration: 19s;
        }

        .shape-6 {
            width: 90px;
            height: 90px;
            bottom: 25%;
            left: 20%;
            animation-delay: 2.5s;
            animation-duration: 21s;
        }

        .shape-7 {
            width: 65px;
            height: 65px;
            top: 65%;
            right: 20%;
            animation-delay: 0.5s;
            animation-duration: 23s;
        }

        .shape-8 {
            width: 75px;
            height: 75px;
            bottom: 5%;
            right: 30%;
            animation-delay: 3.5s;
            animation-duration: 24s;
        }

        @keyframes floatAround {
            0% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0.6;
            }

            25% {
                transform: translate(30px, -20px) rotate(5deg);
                opacity: 0.8;
            }

            50% {
                transform: translate(-20px, 30px) rotate(10deg);
                opacity: 1;
            }

            75% {
                transform: translate(20px, 15px) rotate(5deg);
                opacity: 0.8;
            }

            100% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0.6;
            }
        }

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            pointer-events: none;
            animation: floatParticle 8s infinite linear;
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 0.5;
            }

            90% {
                opacity: 0.5;
            }

            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        .search-hero::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300px;
            height: 300px;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            animation: pulseRing 3s infinite;
            pointer-events: none;
            z-index: 1;
        }

        @keyframes pulseRing {
            0% {
                width: 200px;
                height: 200px;
                opacity: 0.5;
            }

            50% {
                width: 400px;
                height: 400px;
                opacity: 0.2;
            }

            100% {
                width: 200px;
                height: 200px;
                opacity: 0.5;
            }
        }

        .search-hero .container {
            position: relative;
            z-index: 10;
        }

        .search-hero h1 {
            animation: fadeInUp 0.8s ease;
        }

        .search-hero p {
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .search-box {
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .search-hero {
                min-height: 70vh;
                padding: 100px 0 60px;
            }

            .shape {
                opacity: 0.4;
            }

            .shape-1,
            .shape-2,
            .shape-3,
            .shape-4 {
                display: none;
            }

            .shape-5,
            .shape-6,
            .shape-7,
            .shape-8 {
                width: 50px;
                height: 50px;
            }

            .shape-5 i,
            .shape-6 i,
            .shape-7 i,
            .shape-8 i {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .search-hero {
                min-height: 60vh;
                padding: 80px 0 50px;
            }

            .shape {
                display: none;
            }
        }

        /* Countdown Timer Styles */
        .countdown-timer {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 50px;
            padding: 8px 20px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-top: 10px;
        }

        .countdown-timer i {
            font-size: 1rem;
        }

        .countdown-display {
            font-weight: 600;
            font-family: monospace;
            font-size: 1rem;
        }

        .countdown-unit {
            background: rgba(255, 255, 255, 0.2);
            padding: 4px 8px;
            border-radius: 8px;
            margin: 0 2px;
        }

        /* Time info section */
        .time-info {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 10px 20px;
            margin-top: 15px;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            font-size: 0.85rem;
        }

        .time-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .time-text {
            text-align: left;
        }

        .time-note {
            font-size: 0.7rem;
            opacity: 0.8;
        }

        /* Election Card Countdown */
        .election-countdown {
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(255, 101, 132, 0.1));
            border-radius: 12px;
            padding: 12px 20px;
            margin-top: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }

        .countdown-label {
            font-weight: 600;
            color: var(--primary);
        }

        .countdown-value {
            font-family: monospace;
            font-size: 1.2rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Your existing styles continue... */
        .election-card {
            background: white;
            border-radius: var(--radius);
            padding: 20px !important;
            margin-bottom: 20px !important;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .election-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.2);
        }

        .election-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
        }

        .election-title h2 {
            font-size: 1.2rem !important;
            margin: 0;
            color: var(--dark);
        }

        .election-badge {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            padding: 3px 10px !important;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.75rem !important;
            font-family: monospace;
            letter-spacing: 1px;
        }

        .status-badge {
            padding: 3px 12px !important;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.7rem !important;
        }

        .status-voting {
            background: rgba(255, 179, 71, 0.1);
            color: var(--warning);
        }

        .status-closed {
            background: rgba(255, 107, 107, 0.1);
            color: var(--danger);
        }

        .status-upcoming {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
        }

        .election-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px !important;
            margin-bottom: 15px !important;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 8px !important;
        }

        .stat-icon {
            width: 32px !important;
            height: 32px !important;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .stat-icon i {
            font-size: 1rem !important;
        }

        .stat-info h4 {
            font-size: 1rem !important;
            font-weight: 700;
            margin: 0 0 2px 0 !important;
        }

        .stat-info p {
            margin: 0;
            font-size: 0.7rem !important;
            color: #666;
        }

        .filter-bar {
            background: white;
            border-radius: 15px;
            padding: 12px 15px !important;
            margin-bottom: 20px !important;
            box-shadow: var(--shadow);
            display: flex;
            flex-wrap: wrap;
            gap: 10px !important;
            align-items: center;
            justify-content: space-between;
        }

        .filter-group {
            display: flex;
            gap: 8px !important;
            flex-wrap: wrap;
            align-items: center;
        }

        .search-input {
            position: relative;
            min-width: 200px !important;
        }

        .search-input i {
            position: absolute;
            left: 10px !important;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 0.8rem !important;
        }

        .search-input input {
            padding: 6px 10px 6px 32px !important;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            width: 100%;
            font-size: 0.8rem !important;
        }

        .filter-select {
            padding: 6px 10px !important;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            background: white;
            font-size: 0.8rem !important;
            min-width: 120px !important;
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--primary);
        }

        #resultCount {
            font-size: 0.75rem !important;
        }

        .categories-section {
            margin-top: 20px;
        }

        .category-card {
            background: #f8f9ff;
            border-radius: 15px;
            padding: 15px !important;
            margin-bottom: 15px !important;
            border-left: 4px solid var(--primary);
            transition: var(--transition);
        }

        .category-card:hover {
            background: white;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
        }

        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px !important;
            flex-wrap: wrap;
            gap: 10px !important;
        }

        .category-header h3 {
            font-size: 1rem !important;
            margin: 0;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .category-header h3 i {
            font-size: 0.9rem !important;
        }

        .category-header .badge {
            font-size: 0.7rem !important;
            padding: 3px 8px !important;
        }

        .category-header .badge i {
            font-size: 0.6rem !important;
        }

        .category-card>.text-muted {
            font-size: 0.75rem !important;
            margin-bottom: 10px !important;
        }

        .nominees-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 15px !important;
        }

        .nominee-card {
            background: white;
            border-radius: 10px !important;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid #eef2f6;
            position: relative;
        }

        .nominee-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(108, 99, 255, 0.1);
            border-color: var(--primary);
        }

        .nominee-photo {
            height: 90px !important;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .nominee-avatar {
            width: 65px !important;
            height: 65px !important;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem !important;
            font-weight: bold;
            color: var(--primary);
            overflow: hidden;
        }

        .nominee-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .nominee-code {
            position: absolute;
            bottom: -8px !important;
            right: 12px !important;
            background: var(--gradient);
            color: white;
            padding: 2px 8px !important;
            border-radius: 20px;
            font-size: 0.6rem !important;
            font-weight: 600;
            font-family: monospace;
        }

        .nominee-info {
            padding: 12px !important;
            text-align: center;
        }

        .nominee-name {
            font-size: 0.9rem !important;
            font-weight: 700;
            margin-bottom: 2px !important;
        }

        .nominee-username {
            font-size: 0.65rem !important;
            color: var(--primary);
            margin-bottom: 5px !important;
        }

        .nominee-bio {
            font-size: 0.7rem !important;
            color: #666;
            margin: 5px 0 !important;
            line-height: 1.3 !important;
        }

        .nominee-votes {
            font-size: 0.7rem !important;
            font-weight: 600;
            color: var(--success);
            margin-top: 5px !important;
        }

        .vote-btn {
            width: 100%;
            padding: 6px !important;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            margin-top: 8px !important;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            text-align: center;
            cursor: pointer;
            font-size: 0.75rem !important;
        }

        .vote-btn i {
            font-size: 0.7rem !important;
            margin-right: 4px !important;
        }

        .vote-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(108, 99, 255, 0.3);
            color: white;
        }

        .vote-btn.disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        .vote-modal .modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
        }

        .vote-modal .modal-header {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 15px 20px !important;
        }

        .vote-modal .modal-header h5 {
            font-size: 1.1rem !important;
        }

        .vote-modal .modal-header .btn-close {
            filter: brightness(0) invert(1);
        }

        .vote-modal .modal-body {
            padding: 20px !important;
        }

        .option-card {
            background: #f8f9ff;
            border-radius: 15px;
            padding: 15px !important;
            margin-bottom: 15px !important;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .option-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            background: white;
            box-shadow: var(--shadow);
        }

        .option-icon {
            width: 45px !important;
            height: 45px !important;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px !important;
        }

        .option-icon i {
            font-size: 1.3rem !important;
            color: var(--primary);
        }

        .option-card h4 {
            font-size: 1rem !important;
            margin-bottom: 5px !important;
        }

        .option-card p {
            font-size: 0.75rem !important;
            color: #666;
            margin: 0;
        }

        .info-panel {
            background: #f8f9ff;
            border-left: 4px solid var(--primary);
            padding: 10px 12px !important;
            border-radius: 10px;
            margin-bottom: 15px !important;
            display: flex;
            align-items: center;
            gap: 8px !important;
        }

        .info-panel i {
            font-size: 1rem !important;
            color: var(--primary);
        }

        .info-panel p {
            margin: 0;
            font-size: 0.75rem !important;
            color: #666;
        }

        .form-label {
            font-weight: 500;
            margin-bottom: 4px !important;
            font-size: 0.8rem !important;
        }

        .input-group-text {
            background: #f8f9ff;
            border: 1px solid #e2e8f0;
            padding: 6px 10px !important;
            font-size: 0.85rem !important;
        }

        .form-control {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 6px 10px !important;
            font-size: 0.85rem !important;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
        }

        .btn-action,
        .btn-outline-action {
            width: 100%;
            padding: 8px !important;
            border-radius: 8px;
            font-weight: 600;
            transition: var(--transition);
            font-size: 0.8rem !important;
        }

        .btn-action {
            background: var(--gradient);
            color: white;
            border: none;
        }

        .btn-action:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .btn-outline-action {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline-action:hover {
            background: var(--gradient);
            color: white;
            border-color: transparent;
        }

        .empty-state {
            text-align: center;
            padding: 40px 20px !important;
            background: white;
            border-radius: var(--radius);
        }

        .empty-state i {
            font-size: 3rem !important;
            color: #cbd5e1;
            margin-bottom: 15px !important;
        }

        .empty-state h3 {
            font-size: 1.2rem !important;
            margin-bottom: 8px !important;
        }

        .empty-state p {
            font-size: 0.8rem !important;
            margin-bottom: 15px !important;
        }

        .no-results {
            text-align: center;
            padding: 30px 20px !important;
            background: white;
            border-radius: var(--radius);
            color: #666;
        }

        .scroll-to-category {
            transition: scroll-behavior 0.5s ease;
        }

        /* Share Button Styles */
        .election-actions {
            display: flex;
            gap: 10px;
            margin-left: auto;
        }

        .share-btn {
            background: rgba(108, 99, 255, 0.1);
            border: 1px solid rgba(108, 99, 255, 0.2);
            border-radius: 8px;
            padding: 5px 12px;
            font-size: 0.75rem;
            transition: var(--transition);
            color: var(--primary);
            cursor: pointer;
        }

        .share-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .share-btn i {
            font-size: 0.7rem;
        }

        .category-share-btn {
            background: transparent;
            border: none;
            color: var(--primary);
            font-size: 0.7rem;
            padding: 4px 8px;
            border-radius: 6px;
            transition: var(--transition);
            cursor: pointer;
        }

        .category-share-btn:hover {
            background: rgba(108, 99, 255, 0.1);
            transform: scale(1.05);
        }

        .category-share-btn i {
            font-size: 0.7rem;
        }

        .nominee-share-btn {
            background: transparent;
            border: none;
            color: #6c757d;
            font-size: 0.65rem;
            padding: 2px 6px;
            border-radius: 20px;
            transition: var(--transition);
            cursor: pointer;
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(255, 255, 255, 0.9);
            z-index: 2;
        }

        .nominee-share-btn:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }

        .nominee-share-btn i {
            font-size: 0.6rem;
        }

        .share-modal .modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
        }

        .share-modal .modal-header {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 15px 20px;
        }

        .share-modal .modal-header .btn-close {
            filter: brightness(0) invert(1);
        }

        .share-modal .modal-title {
            font-size: 1.1rem;
        }

        .share-url-container {
            background: #f8f9ff;
            border-radius: 10px;
            padding: 12px;
            margin: 15px 0;
            word-break: break-all;
            border: 1px solid #eef2f6;
        }

        .share-url {
            font-family: monospace;
            font-size: 0.85rem;
            color: var(--primary);
            margin-bottom: 10px;
            word-break: break-all;
        }

        .copy-success {
            color: var(--success);
            font-size: 0.75rem;
            margin-top: 8px;
            display: none;
            text-align: center;
        }

        .social-share-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .social-share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            text-decoration: none;
            color: white;
            font-size: 1.1rem;
        }

        .social-share-btn.facebook {
            background: #1877f2;
        }

        .social-share-btn.twitter {
            background: #1da1f2;
        }

        .social-share-btn.whatsapp {
            background: #25d366;
        }

        .social-share-btn.email {
            background: #ea4335;
        }

        .social-share-btn:hover {
            transform: translateY(-3px);
            color: white;
            text-decoration: none;
        }

        .qr-code-container {
            text-align: center;
            margin: 20px 0 10px;
            padding: 15px;
            background: #f8f9ff;
            border-radius: 10px;
        }

        #qrCode {
            max-width: 150px;
            margin: 0 auto;
        }

        #qrCode canvas {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .category-card.highlight-category {
            animation: highlightPulse 1s ease-in-out 3;
            border-left: 4px solid var(--secondary);
            box-shadow: 0 5px 25px rgba(255, 101, 132, 0.3);
        }

        .nominee-card.highlight-nominee {
            animation: highlightPulse 1.5s ease-in-out 3;
            border: 2px solid var(--secondary);
            box-shadow: 0 5px 25px rgba(255, 101, 132, 0.4);
            background: linear-gradient(135deg, #fff 0%, rgba(108, 99, 255, 0.05) 100%);
        }

        @keyframes highlightPulse {
            0% {
                background: #f8f9ff;
                border-color: var(--primary);
            }

            50% {
                background: rgba(108, 99, 255, 0.15);
                border-color: var(--secondary);
            }

            100% {
                background: #f8f9ff;
                border-color: var(--primary);
            }
        }

        @media (max-width: 768px) {
            .election-header {
                flex-direction: column;
                align-items: flex-start !important;
            }

            .election-actions {
                margin-left: 0;
                width: 100%;
            }

            .share-btn {
                width: 100%;
                text-align: center;
            }

            .social-share-buttons {
                gap: 8px;
            }

            .social-share-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .filter-bar {
                padding: 10px !important;
            }

            .search-input {
                width: 100% !important;
            }

            .filter-select {
                width: 100% !important;
            }

            .nominees-grid {
                grid-template-columns: 1fr !important;
            }

            .election-countdown {
                flex-direction: column;
                text-align: center;
            }
        }



        .plan-feature-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 500;
            margin-left: 8px;
        }

        .plan-feature-badge.premium {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
            color: #FFA500;
            border: 1px solid rgba(255, 165, 0, 0.3);
        }

        .plan-feature-badge.standard {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
        }

        .live-results-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
        }

        .live-results-badge.enabled {
            background: rgba(54, 211, 153, 0.15);
            color: var(--success);
        }

        .live-results-badge.disabled {
            background: rgba(255, 107, 107, 0.1);
            color: var(--danger);
        }

        .results-info {
            background: rgba(54, 211, 153, 0.1);
            border-left: 4px solid var(--success);
            padding: 10px 15px;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .results-info i {
            color: var(--success);
        }

        .results-locked {
            background: rgba(255, 107, 107, 0.05);
            border: 1px dashed var(--danger);
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 15px;
        }
    