<style>
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        min-height: 100vh;
        color: #333;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px;
    }

    .header {
        text-align: center;
        margin-bottom: 40px;
        padding: 30px 0;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .header h1 {
        font-size: 3rem;
        font-weight: 800;
        background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
        background-size: 300% 300%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientShift 3s ease infinite;
        margin-bottom: 10px;
    }

    @keyframes gradientShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }

    .header p {
        font-size: 1.2rem;
        color: white;
        opacity: 0.9;
    }

    .stats-overview {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .stat-card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        padding: 25px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-5px);
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: bold;
        color: #fff;
        margin-bottom: 10px;
    }

    .stat-label {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
    }

    .contestants-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
    }

    .contestant-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        padding: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .contestant-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
        background-size: 300% 300%;
        animation: gradientShift 3s ease infinite;
    }

    .contestant-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .contestant-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .contestant-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(45deg, #667eea, #764ba2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
        margin-right: 15px;
    }

    .contestant-info h3 {
        font-size: 1.3rem;
        margin-bottom: 5px;
        color: #2c3e50;
    }

    .contestant-status {
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        background: #e8f5e8;
        color: #27ae60;
    }

    .vote-section {
        margin-bottom: 20px;
    }

    .vote-btn {
        width: 100%;
        padding: 15px;
        background: linear-gradient(45deg, #667eea, #764ba2);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 15px;
    }

    .vote-btn:hover {
        transform: scale(1.02);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

    .vote-btn:active {
        transform: scale(0.98);
    }

    .vote-btn.voted {
        background: linear-gradient(45deg, #27ae60, #2ecc71);
    }

    .vote-stats {
        background: #f8f9fa;
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .vote-count {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .votes-number {
        font-size: 1.5rem;
        font-weight: bold;
        color: #667eea;
    }

    .percentage {
        font-size: 1.2rem;
        font-weight: 600;
        color: #27ae60;
    }

    .progress-bar {
        width: 100%;
        height: 8px;
        background: #e9ecef;
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 10px;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(45deg, #667eea, #764ba2);
        border-radius: 4px;
        transition: width 0.3s ease;
    }

    .rank-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #ffd700;
        color: #333;
        padding: 5px 10px;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: bold;
    }

    .rank-badge.rank-1 { background: #ffd700; }
    .rank-badge.rank-2 { background: #c0c0c0; }
    .rank-badge.rank-3 { background: #cd7f32; }

    .voting-rules {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 25px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 30px;
    }

    .voting-rules h3 {
        color: white;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .voting-rules ul {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
    }

    .voting-rules li {
        margin-bottom: 8px;
    }

    @media (max-width: 768px) {
        .header h1 {
            font-size: 2rem;
        }
        
        .contestants-grid {
            grid-template-columns: 1fr;
        }
        
        .stats-overview {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .pulse {
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    /* Additional styles for blog content */
    .article-content {
        background: rgba(255,255,255,.95);
        border-radius: 20px;
        padding: 40px;
        margin-bottom: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        line-height: 1.8;
    }

    .article-content h1 {
        font-size: 2.5rem;
        font-weight: 800;
        background: linear-gradient(45deg,#ff6b6b,#feca57,#48dbfb,#ff9ff3);
        background-size: 300% 300%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: 3s infinite gradientShift;
        margin-bottom: 20px;
        text-align: center;
    }

    .article-content h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 30px 0 20px 0;
        padding-bottom: 10px;
        border-bottom: 3px solid #667eea;
    }

    .article-content h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #34495e;
        margin: 25px 0 15px 0;
    }

    .article-content p {
        margin-bottom: 15px;
        color: #2c3e50;
    }

    .article-content strong {
        color: #667eea;
        font-weight: 700;
    }

    .article-content ol, .article-content ul {
        margin: 15px 0;
        padding-left: 30px;
    }

    .article-content li {
        margin-bottom: 8px;
        color: #2c3e50;
    }

    .update-date {
        text-align: right;
        font-style: italic;
        color: #7f8c8d;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }

    .vote-cta {
        background: linear-gradient(45deg,#667eea,#764ba2);
        color: white;
        padding: 20px;
        border-radius: 15px;
        text-align: center;
        margin: 25px 0;
        animation: pulse 2s infinite;
    }

    .vote-cta a {
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        display: inline-block;
        margin-top: 10px;
        padding: 10px 20px;
        background: rgba(255,255,255,0.2);
        border-radius: 25px;
        transition: all 0.3s;
    }

    .vote-cta a:hover {
        background: rgba(255,255,255,0.3);
        transform: scale(1.05);
    }

    .info-box {
        background: #e8f4fd;
        border-left: 4px solid #3498db;
        padding: 15px 20px;
        margin: 20px 0;
        border-radius: 0 10px 10px 0;
    }

    .warning-box {
        background: #fff3cd;
        border-left: 4px solid #ffc107;
        padding: 15px 20px;
        margin: 20px 0;
        border-radius: 0 10px 10px 0;
    }

    .faq-section {
        margin-top: 40px;
    }

    .faq-item {
        background: #f8f9fa;
        border-radius: 10px;
        margin-bottom: 15px;
        overflow: hidden;
        border: 1px solid #e9ecef;
    }

    .faq-question {
        background: #667eea;
        color: white;
        padding: 15px 20px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
    }

    .faq-question:hover {
        background: #5a6fd8;
    }

    .faq-answer {
        padding: 20px;
        color: #2c3e50;
        line-height: 1.6;
    }

    @media (max-width: 768px) {
        .article-content {
            padding: 25px;
        }
        
        .article-content h1 {
            font-size: 2rem;
        }
        
        .article-content h2 {
            font-size: 1.5rem;
        }
    }
</style>