/* Voting Page Specific Styles */

/* Voting Hero Section */
.voting-hero {
  background: linear-gradient(135deg, #6976df 0%, #7451aa 100%);
  color: white;
  padding: 4rem 0;
  min-height: 80vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .voting-hero {
    margin-top: 0;
    padding-top: 3rem;
  }
}

.voting-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.voting-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.voting-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 150px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
}

/* Voting Section */
.voting-section {
  padding: 4rem 0;
  background: white;
}

.voting-info {
  text-align: center;
  margin-bottom: 3rem;
}

.voting-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.voting-info p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
}

.voting-status {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: #e8f5e8;
  color: #2d5a2d;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  font-weight: 500;
  text-align: left;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.voting-status i {
  color: #4caf50;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

/* Voting Open Status */
.voting-status.voting-open {
  background: linear-gradient(135deg, #e8f5e8 0%, #d4f1d4 100%);
  border: 2px solid #4caf50;
}

.voting-status.voting-open i {
  color: #2e7d32;
  animation: pulse 2s infinite;
}

/* Voting Closed Status */
.voting-status.voting-closed {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border: 2px solid #f44336;
  color: #c62828;
}

.voting-status.voting-closed i {
  color: #d32f2f;
}

/* Countdown Timer Styling */
.countdown-timer {
  display: inline-block;
  font-weight: 700;
  font-size: 1.1em;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  margin: 0.25rem 0;
  font-family: "Courier New", monospace;
  letter-spacing: 0.5px;
}

.voting-status.voting-open .countdown-timer {
  color: #2e7d32;
}

.voting-status.voting-closed .countdown-timer {
  color: #c62828;
}

.voting-status strong {
  font-size: 1.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.voting-status small {
  display: block;
  margin-top: 0.5rem;
  opacity: 0.8;
  font-size: 0.9em;
}

/* Pulse Animation for Voting Open */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Voting Closed Indicator */
.voting-closed-indicator {
  color: #f44336;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.voting-closed-indicator i {
  color: #f44336;
}

/* Contestant Card Closed State */
.contestant-card.voting-closed {
  opacity: 0.7;
  position: relative;
}

.contestant-card.voting-closed::after {
  content: "🔒 Voting Closed";
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(244, 67, 54, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

/* Contestants Grid */
.contestants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contestant-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.contestant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contestant-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  border-radius: 15px;
}

.contestant-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.contestant-card:hover .contestant-img {
  transform: scale(1.05);
}

.contestant-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contestant-card:hover .contestant-overlay {
  opacity: 1;
}

.vote-btn {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vote-btn:hover {
  background: linear-gradient(45deg, #ff5252, #ff7979);
  transform: scale(1.05);
}

.vote-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.contestant-info {
  padding: 1.5rem;
}

.contestant-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.contestant-description {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contestant-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vote-count {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff6b6b;
  font-weight: 600;
}

.vote-count i {
  color: #ff6b6b;
}

.vote-percentage {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.percentage {
  font-weight: 600;
  color: #333;
  min-width: 35px;
}

/* Voted State */
.contestant-card.voted {
  border: 2px solid #4caf50;
  background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
}

.contestant-card.voted .vote-btn {
  background: #4caf50;
  cursor: default;
}

.contestant-card.voted .vote-btn::before {
  content: "✓ ";
}

/* Vote Results Bar Graph Section */
.vote-results-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-top: 2rem;
}

.results-header {
  text-align: center;
  margin-bottom: 3rem;
}

.results-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.results-title i {
  color: #ff6b6b;
  font-size: 2.2rem;
}

.results-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.results-container {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.results-list {
  margin-bottom: 2rem;
}

.loading-results {
  text-align: center;
  padding: 3rem;
  color: #666;
  font-size: 1.1rem;
}

.loading-results i {
  font-size: 2rem;
  margin-right: 1rem;
  color: #ff6b6b;
}

.result-item {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.result-item:last-child {
  border-bottom: none;
}

.result-item:hover {
  background: #f8f9fa;
  border-radius: 10px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.result-rank {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6b6b;
  min-width: 40px;
  text-align: center;
  margin-right: 1rem;
}

.result-rank.first {
  color: #ffd700;
}

.result-rank.second {
  color: #c0c0c0;
}

.result-rank.third {
  color: #cd7f32;
}

.result-info {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 1rem;
}

.result-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
}

.result-details {
  flex: 1;
  min-width: 0;
}

.result-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

.result-description {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.result-bar-container {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
}

.result-bar {
  flex: 1;
  height: 20px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.result-bar-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 0.8s ease;
  position: relative;
  background: linear-gradient(90deg, var(--bar-color), var(--bar-color-light));
}

.result-bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}

.result-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 120px;
}

.result-percentage {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.25rem;
}

.result-votes {
  font-size: 0.9rem;
  color: #666;
}

.quick-vote-btn {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.quick-vote-btn:hover {
  background: linear-gradient(45deg, #ff5252, #ff7979);
  transform: scale(1.05);
}

.quick-vote-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.voted-indicator {
  color: #4caf50;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.voted-indicator i {
  color: #4caf50;
}

.results-summary {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  border-radius: 15px;
  padding: 2rem;
  color: white;
}

.summary-stats {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.summary-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.summary-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
  color: #ffd700;
}

.summary-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.summary-value {
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
}

/* Bar Colors for Different Contestants */
.result-item[data-contestant="1"] .result-bar-fill {
  --bar-color: #ff6b6b;
  --bar-color-light: #ff8e8e;
}

.result-item[data-contestant="2"] .result-bar-fill {
  --bar-color: #4ecdc4;
  --bar-color-light: #7eddd6;
}

.result-item[data-contestant="3"] .result-bar-fill {
  --bar-color: #45b7d1;
  --bar-color-light: #6bc5d8;
}

.result-item[data-contestant="4"] .result-bar-fill {
  --bar-color: #96ceb4;
  --bar-color-light: #a8d5c1;
}

.result-item[data-contestant="5"] .result-bar-fill {
  --bar-color: #feca57;
  --bar-color-light: #fed976;
}

.result-item[data-contestant="6"] .result-bar-fill {
  --bar-color: #ff9ff3;
  --bar-color-light: #ffb3f5;
}

/* Animations */
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.result-item {
  animation: slideInUp 0.6s ease forwards;
}

.result-item:nth-child(1) {
  animation-delay: 0.1s;
}
.result-item:nth-child(2) {
  animation-delay: 0.2s;
}
.result-item:nth-child(3) {
  animation-delay: 0.3s;
}
.result-item:nth-child(4) {
  animation-delay: 0.4s;
}
.result-item:nth-child(5) {
  animation-delay: 0.5s;
}
.result-item:nth-child(6) {
  animation-delay: 0.6s;
}

/* Social Sharing */
.voting-share {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  margin-top: 3rem;
}

.voting-share h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.voting-share p {
  color: #666;
  margin-bottom: 2rem;
}

.social-share-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.share-btn.facebook {
  background: #3b5998;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

/* Ensure modal is always centered */
.modal.show {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
}

.modal-content {
  background: white;
  border-radius: 15px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
  margin: auto;
  position: relative;
  transform: translateY(0);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.modal-header h3 {
  margin: 0;
  color: #333;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.modal-body {
  padding: 1.5rem;
}

.contestant-preview {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.contestant-preview img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  background: #f8f9fa;
}

.contestant-details h4 {
  margin: 0 0 0.5rem 0;
  color: #333;
}

.contestant-details p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.vote-confirmation-text {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #666;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.modal-actions .btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.modal-actions .btn-primary {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: white;
}

.modal-actions .btn-primary:hover {
  background: linear-gradient(45deg, #ff5252, #ff7979);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.modal-actions .btn-secondary {
  background: #f8f9fa;
  color: #6c757d;
  border: 2px solid #dee2e6;
}

.modal-actions .btn-secondary:hover {
  background: #e9ecef;
  color: #495057;
  border-color: #adb5bd;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 117, 125, 0.2);
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4caf50;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 3000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
}

.toast.show {
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toast-content i {
  font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .contestants-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .voting-hero {
    padding: 3rem 0 2rem;
    min-height: auto;
  }

  .voting-title {
    font-size: 2.2rem;
  }

  .voting-subtitle {
    font-size: 1rem;
  }

  .voting-stats {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
  }

  .stat-card {
    min-width: 200px;
    width: 100%;
    max-width: 250px;
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .voting-section {
    padding: 3rem 0;
  }

  .voting-info h2 {
    font-size: 2rem;
  }

  .contestants-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  /* Vote Results Responsive */
  .vote-results-section {
    padding: 3rem 0;
  }

  .results-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .results-container {
    padding: 1.5rem;
  }

  .result-item {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0;
  }

  .result-info {
    margin-bottom: 1rem;
  }

  .result-bar-container {
    margin-left: 0;
    gap: 0.5rem;
  }

  .result-stats {
    align-items: flex-start;
    min-width: auto;
  }

  .summary-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .summary-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
  }

  .summary-item i {
    font-size: 1.5rem;
    margin-bottom: 0;
    min-width: 30px;
  }

  .contestant-image {
    height: 200px;
  }

  .contestant-card {
    margin: 0 auto;
    max-width: 400px;
  }

  .contestant-info {
    padding: 1rem;
  }

  .contestant-name {
    font-size: 1.2rem;
  }

  .contestant-description {
    font-size: 0.9rem;
  }

  .voting-share {
    padding: 2rem 1.5rem;
  }

  .social-share-buttons {
    flex-direction: column;
    align-items: center;
  }

  .share-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .modal-content {
    width: 95%;
    margin: 1rem auto;
    max-width: 400px;
  }

  .modal.show {
    padding: 10px;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
  }

  .contestant-preview {
    flex-direction: column;
    text-align: center;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .voting-hero {
    padding: 2rem 0;
  }

  .modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    padding: 5px;
  }

  .modal-content {
    width: 95%;
    max-width: 350px;
    margin: 0 auto;
  }

  .voting-title {
    font-size: 1.8rem;
  }

  .voting-subtitle {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .voting-stats {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .stat-card {
    padding: 1rem;
    min-width: 150px;
    max-width: 200px;
    width: 100%;
    text-align: center;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .voting-section {
    padding: 2rem 0;
  }

  .voting-info h2 {
    font-size: 1.8rem;
  }

  .voting-info p {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .voting-share {
    padding: 2rem 1rem;
  }

  .toast {
    right: 10px;
    left: 10px;
    transform: translateY(-100px);
  }

  .toast.show {
    transform: translateY(0);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .contestant-card,
  .vote-btn,
  .modal,
  .toast {
    transition: none;
  }

  .contestant-card:hover {
    transform: none;
  }

  .vote-btn:hover {
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .contestant-card {
    border: 2px solid #000;
  }

  .vote-btn {
    background: #000;
    color: #fff;
    border: 2px solid #000;
  }

  .progress-fill {
    background: #000;
  }
}
