:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --darkred: #B00B2A;
    --tmc-color: #00A651;
    --bjp-color: #F93;
    --inc-color: #00A0E3;
    --cpm-color: #c00;
    --bg-body: #f8fafc;
    --bg-card: #fff;
    --bg-glass: #ffffffd9;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --shadow-sm: 0 1px 2px 0 #0000000d;
    --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;
    --shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
    --shadow-xl: 0 20px 25px -5px #0000001a, 0 10px 10px -5px #0000000a;
    --radius: 16px;
    --transition: all .3s cubic-bezier(0.4, 0, 0.2, 1)
}

* {
    box-sizing: border-box
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    margin: 0;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary);
    margin-top: 0;
    line-height: 1.2
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

.top-bar {
    background-color: var(--secondary);
    color: #fff;
    font-size: .8rem;
    padding: .5rem 0;
    position: relative;
    z-index: 1001
}

.top-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.top-links {
    display: flex;
    gap: 1.5rem
}

.top-links a {
    opacity: .8;
    transition: opacity .2s
}

.top-links a:hover {
    opacity: 1
}

.live-badge {
    background: var(--danger);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: .7rem;
    margin-right: 8px;
    animation: pulse 2s infinite
}

.header {
    background: #ffffffbf;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid #ffffff80;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 30px #00000008;
    transition: all .3s ease
}

.header.scrolled {
    background: #ffffffe6;
    box-shadow: var(--shadow-md);
    padding: .75rem 0
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.brand-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.brand-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.brand-text {
    display: flex;
    flex-direction: column
}

.brand-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--secondary);
    line-height: 1.1;
    letter-spacing: -.5px
}

.brand-subtitle {
    font-size: .75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: .5px
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem
}

.nav-links-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    font-size: .95rem;
    position: relative;
    padding: .5rem 0;
    transition: color .2s
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width .3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px
}

.nav-link:hover::after {
    width: 100%
}

.nav-link:hover {
    color: var(--primary)
}

.cta-button {
    background: linear-gradient(135deg, var(--primary), #f0103f);
    color: #fff;
    padding: .7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px #2563eb4d;
    border: 1px solid #fff3;
    position: relative;
    overflow: hidden
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #2563eb66;
    color: #fff
}

.mobile-menu-header,
.mobile-menu-footer {
    display: none
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary);
    cursor: pointer;
    padding: .5rem;
    transition: transform .2s
}

.nav-toggle:active {
    transform: scale(0.95)
}

@keyframes pulse {
    0% {
        opacity: 1
    }

    50% {
        opacity: .6
    }

    100% {
        opacity: 1
    }
}

main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 2rem
}

.breadcrumb a:hover {
    color: var(--primary)
}

.breadcrumb span::after {
    content: "/";
    margin-left: 8px;
    opacity: .5
}

.breadcrumb span:last-child::after {
    content: ""
}

.hero-section {
    text-align: center;
    margin-bottom: 4rem;
    position: relative
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto
}

.countdown-box {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    color: #fff;
    text-align: center;
    box-shadow: var(--shadow-xl);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden
}

.countdown-box::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: #ffffff1a;
    border-radius: 50%
}

.countdown-box::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: #ffffff1a;
    border-radius: 50%
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 2rem auto 0
}

.timer-block {
    background: #ffffff26;
    backdrop-filter: blur(4px);
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid #fff3
}

.timer-num {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    display: block;
    line-height: 1;
    margin-bottom: .25rem
}

.timer-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .9
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1rem
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
    position: relative;
    margin: 0
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1.1rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: #2563eb33
}

.schedule-card {
    border-left: 4px solid var(--primary)
}

.phase-badge {
    display: inline-block;
    background: #eff6ff;
    color: var(--primary);
    font-weight: 700;
    padding: .25rem .75rem;
    border-radius: 6px;
    font-size: .85rem;
    margin-bottom: 1rem
}

.date-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: .5rem
}

.meta-text {
    color: var(--text-muted);
    font-size: .95rem;
    margin-bottom: .5rem
}

.party-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.logo-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-md);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.party-info h3 {
    font-size: 1.25rem;
    margin-bottom: .25rem
}

.badge {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    color: #fff;
    vertical-align: middle
}

.badge.ruling {
    background-color: var(--success)
}

.badge.nda {
    background-color: var(--accent)
}

.badge.upa {
    background-color: var(--primary)
}

.badge.left {
    background-color: var(--danger)
}

.leader-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 12px;
    margin: 1rem 0
}

.leader-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: var(--shadow-sm)
}

.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem
}

.district-pill {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    transition: var(--transition)
}

.district-pill:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

.table-container {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 3rem
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px
}

.modern-table th {
    background: #f1f5f9;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--secondary)
}

.modern-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-main)
}

.modern-table tr:last-child td {
    border-bottom: none
}

.scroll-wrapper {
    overflow-x: auto
}

.voting-arena {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 40px;
    border: 1px solid #0000000d
}

.arena-header {
    background: linear-gradient(135deg, #2f36c1 0%, #185c9f 100%);
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 20px
}

.arena-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIvPjwvc3ZnPg==);
    opacity: .3;
    pointer-events: none
}

.live-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff0032e6;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px #ff00324d;
    animation: pulse-red 2s infinite
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 #ff003266
    }

    70% {
        box-shadow: 0 0 0 10px #ff003200
    }

    100% {
        box-shadow: 0 0 0 0 #ff003200
    }
}

.arena-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px #0003;
    color: #fff
}

.arena-subtitle {
    opacity: .9;
    margin-top: 8px;
    font-size: 16px;
    color: #ffffffe6
}

.battle-ground {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    position: relative
}

.vs-badge {
    width: 60px;
    height: 60px;
    background: #2f36c1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    font-style: italic;
    box-shadow: 0 0 0 8px #fff, 0 10px 20px #0000001a;
    z-index: 2
}

.candidate-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: all .3s ease;
    position: relative;
    box-shadow: var(--shadow-md)
}

.candidate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl)
}

.candidate-card.tmc-card:hover {
    border-color: var(--tmc-color)
}

.candidate-card.bjp-card:hover {
    border-color: var(--bjp-color)
}

.candidate-img-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 5px;
    background: #fff;
    box-shadow: 0 8px 20px #0000001a;
    position: relative
}

.candidate-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%
}

.party-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px #0000001a
}

.party-badge img {
    width: 24px;
    height: 24px
}

.candidate-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px
}

.candidate-party {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px
}

.text-tmc {
    color: var(--tmc-color)
}

.text-bjp {
    color: var(--bjp-color)
}

.vote-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.btn-tmc {
    background: #00a6511a;
    color: var(--tmc-color)
}

.bar-tmc {
    background: var(--tmc-color)
}

.bar-bjp {
    background: var(--bjp-color)
}

.results-area {
    padding: 0 40px 40px
}

.progress-track {
    background: #f0f2f5;
    height: 24px;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    display: flex
}

.progress-bar {
    height: 100%;
    transition: width 1s ease-out;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-shadow: 0 1px 2px #0003
}

.progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, #fff0 0%, #ffffff4d 50%, #fff0 100%);
    animation: shimmer 2s infinite
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(100%)
    }
}

.stats-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    font-weight: 500
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    display: block
}

.trending-battles {
    margin-bottom: 40px
}

.battles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px
}

.battle-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
    border: 1px solid #0000000d;
    display: block
}

.battle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.battle-card-header {
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.battle-vs {
    background: #fff3;
    color: #fff;
    font-weight: 900;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    font-style: italic
}

.battle-card-body {
    padding: 20px;
    text-align: center
}

.battle-title {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main)
}

.battle-desc {
    margin: 0 0 15px;
    font-size: 14px;
    color: var(--text-muted)
}

.battle-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #f0f2f5;
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: background .2s
}

.battle-card:hover .battle-btn {
    background: var(--primary);
    color: #fff
}

.selected-card {
    border-color: currentColor !important;
    background: #fff !important;
    transform: scale(1.02);
    box-shadow: 0 20px 40px #00000026
}

.selected-card::after {
    content: "✓ VOTED";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #2f36c1;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700
}

.footer {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 5rem 0 2rem;
    margin-top: 4rem
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--secondary)
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-links li {
    margin-bottom: .75rem
}

.footer-links a {
    color: var(--text-muted);
    font-size: .95rem
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px
}

.copyright {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
    color: var(--text-muted);
    font-size: .9rem
}

.footer-logo {
    width: 512px;
    height: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .footer-logo {
        width: 100%;
    }
}

.mobile-drawer {
    display: none
}

@media (max-width:768px) {
    .header-container {
        flex-direction: row
    }

    .nav-toggle {
        display: block
    }

    .nav-menu {
        display: none
    }

    .mobile-drawer {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        box-shadow: -5px 0 25px #00000026;
        transition: right .3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1002;
        gap: 0
    }

    .mobile-drawer.active {
        right: 0
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        border-bottom: 1px solid #f1f5f9;
        background: #fafafa
    }

    .drawer-close-btn {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-muted);
        cursor: pointer;
        padding: .5rem
    }

    .nav-links-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 0;
        overflow-y: auto;
        flex: 1
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #f8fafc;
        color: var(--secondary)
    }

    .nav-link::after {
        display: none
    }

    .mobile-menu-footer {
        display: block;
        padding: 1.5rem;
        border-top: 1px solid #f1f5f9;
        background: #f8fafc
    }

    .cta-button.full-width {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 1rem
    }

    .mobile-contact {
        font-size: .85rem;
        color: var(--text-muted);
        text-align: center;
        display: block
    }

    .nav-links-list .desktop-only {
        display: none
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #0006;
        backdrop-filter: blur(4px);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: all .3s
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible
    }

    .battle-ground {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px
    }

    .vs-badge {
        margin: -20px auto;
        transform: scale(.8)
    }

    .results-area {
        padding: 0 20px 30px
    }

    .arena-title {
        font-size: 24px
    }
}

.live-indicator {
    background-color: #ef4444;
    color: #fff;
    padding: .25rem .5rem;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: .25rem
}

.vote-now-btn {
    background-color: #2563eb;
    color: #fff;
    padding: .5rem 1rem;
    border-radius: .5rem;
    font-size: .875rem;
    font-weight: 500;
    transition: background-color .2s;
    display: inline-block;
    margin-top: .5rem
}

.vote-now-btn:hover {
    background-color: #1d4ed8
}

.back-button-container {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .5rem;
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer
}

.back-button:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
    color: #111827
}

.share-section {
    margin-top: 10px;
    padding: 6px 0;
    text-align: center
}

.share-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #ffffffd9;
    margin-bottom: 6px
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap
}

.share-btn {
    padding: 6px 10px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    color: #fff;
    transition: var(--transition);
    box-shadow: var(--shadow-sm)
}

.share-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md)
}

.share-btn.whatsapp {
    background: #28982c
}

.share-btn.facebook {
    background: #1877F2
}

.share-btn.twitter {
    background: #1DA1F2
}

@media (max-width:600px) {
    .share-btn {
        padding: 6px 9px;
        font-size: 14px
    }

    .share-label {
        font-size: 11px
    }
}

.share-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000b3;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    padding: 20px
}

.share-popup-overlay.active {
    opacity: 1;
    visibility: visible
}

.share-popup-content {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    padding: 0;
    box-shadow: 0 25px 50px -12px #00000040;
    transform: scale(.9) translateY(20px);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
    overflow: hidden
}

.share-popup-overlay.active .share-popup-content {
    transform: scale(1) translateY(0)
}

.share-popup-header {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.share-popup-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIvPjwvc3ZnPg==);
    opacity: .3
}

.share-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff3;
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all .2s ease;
    z-index: 1
}

.share-popup-close:hover {
    background: #ffffff4d;
    transform: rotate(90deg)
}

.share-popup-icon {
    width: 64px;
    height: 64px;
    background: #fff3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
    position: relative
}

.share-popup-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    font-family: 'Poppins', sans-serif;
    position: relative
}

.share-popup-subtitle {
    font-size: 15px;
    color: #ffffffe6;
    margin: 0;
    position: relative
}

.share-popup-body {
    padding: 32px 24px
}

.share-popup-text {
    text-align: center;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px
}

.share-popup-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px
}

.share-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
    color: #fff;
    box-shadow: 0 4px 12px #00000026;
    position: relative;
    overflow: hidden
}

.share-popup-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #fff3;
    transform: translate(-50%, -50%);
    transition: width .6s, height .6s
}

.share-popup-btn:hover::before {
    width: 300px;
    height: 300px
}

.share-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px #0003
}

.share-popup-btn:active {
    transform: translateY(0)
}

.share-popup-btn span {
    position: relative;
    z-index: 1
}

.share-popup-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%)
}

.share-popup-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%)
}

.share-popup-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0C85D0 100%)
}

.share-popup-btn-icon {
    font-size: 20px
}

.share-popup-later {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease
}

.share-popup-later:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #475569
}

@media (max-width:600px) {
    .share-popup-content {
        max-width: 100%;
        margin: 0 10px
    }

    .share-popup-header {
        padding: 24px 20px
    }

    .share-popup-title {
        font-size: 24px
    }

    .share-popup-subtitle {
        font-size: 14px
    }

    .share-popup-body {
        padding: 24px 20px
    }

    .share-popup-btn {
        padding: 14px 20px;
        font-size: 15px
    }

    .share-popup-icon {
        width: 56px;
        height: 56px;
        font-size: 28px
    }
}

@keyframes popupSlideIn {
    from {
        transform: scale(.9) translateY(20px);
        opacity: 0
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1
    }
}