/* Premium Voting System Styles */
.voting-hero {
    background: linear-gradient(135deg, rgba(207, 0, 0, 0.2) 0%, rgba(59, 130, 246, 0.15) 50%, rgba(0, 0, 0, 0.95) 100%);
    padding: 4rem 2rem 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.voting-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(207, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.voting-hero > * {
    position: relative;
    z-index: 1;
}

.voting-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.voting-hero h1 i {
    background: linear-gradient(90deg, #cf0000 50%, #3b82f6 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.voting-hero p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
}

/* Points System Section */
.points-system-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .points-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .points-grid {
        grid-template-columns: 1fr;
    }
}

.points-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.points-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(207, 0, 0, 0.2);
}

.points-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #cf0000, #ff4444);
}

.points-card.rare::before {
    background: linear-gradient(90deg, #ffd700, #ffaa00);
}

.points-card.draw::before {
    background: linear-gradient(90deg, #666, #999);
}

.points-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.points-icon.icon-winner {
    color: #cf0000;
}

.points-icon.icon-draw {
    color: #888;
}

.points-icon.icon-champion {
    color: #ffd700;
}

.points-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: #cf0000;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.points-card.rare .points-value {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.points-label {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.points-desc {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Formula Section */
.formula-section {
    padding: 4rem 2rem;
    background: #000;
    text-align: center;
}

.formula-box-premium {
    background: linear-gradient(135deg, rgba(207, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 2px solid rgba(207, 0, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.formula-box-premium::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #cf0000, transparent, #cf0000);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
}

.formula-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.formula-highlight-box {
    display: inline-block;
    background: rgba(207, 0, 0, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 0.5rem;
    border: 1px solid rgba(207, 0, 0, 0.3);
}

.formula-highlight-box .value {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
}

.formula-highlight-box .label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
}

.formula-plus {
    display: inline-block;
    font-size: 2rem;
    color: #666;
    margin: 0 1rem;
    vertical-align: middle;
}

.formula-description {
    color: #888;
    margin-bottom: 2rem;
}

.formula-note {
    color: #666;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* People's Champion Section */
.pc-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0.95) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pc-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,215,0,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.pc-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.pc-crown {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 1rem;
    display: block;
    animation: crown-pulse 2s ease-in-out infinite;
}

@keyframes crown-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)); }
}

.pc-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pc-points {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    line-height: 1;
    margin: 1rem 0;
}

.pc-desc {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-top: 2rem;
}

.pc-desc strong {
    color: #ffd700;
}

/* How to Vote Section */
.voting-guide-section {
    padding: 4rem 2rem;
    background: #0a0a0a;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem;
}

.guide-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guide-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #cf0000, #900);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.guide-card-title {
    font-size: 1.3rem;
    font-weight: 700;
}

.guide-card-body {
    color: #aaa;
    line-height: 1.7;
}

.guide-card-body strong {
    color: #fff;
}

/* Judges Section */
.judges-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    text-align: center;
}

.judges-header {
    margin-bottom: 3rem;
}

.judges-header h2 {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #333, #555);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #aaa;
    border: 1px solid rgba(255,255,255,0.1);
}

.judges-grid-premium {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.5;
}

.judge-card-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 2px dashed rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #444;
}

.judges-description {
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}
