h1 { font-family: Arial, Helvetica, sans-serif; }

/* Premium Tiffany Blue & Orange Buttons with Glow Effect */
.btn-yes-premium {
    background: linear-gradient(135deg, #00ABA5 0%, #007A75 100%);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 171, 165, 0.5), 0 4px 12px rgba(0, 122, 117, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-yes-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-yes-premium:hover {
    box-shadow: 0 0 25px rgba(0, 171, 165, 0.7), 0 6px 16px rgba(0, 122, 117, 0.4);
    transform: translateY(-2px);
}

.btn-yes-premium:hover::before {
    opacity: 1;
}

.btn-no-premium {
    background: linear-gradient(135deg, #FF9500 0%, #E67E22 100%);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 149, 0, 0.5), 0 4px 12px rgba(230, 126, 34, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-no-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-no-premium:hover {
    box-shadow: 0 0 25px rgba(255, 149, 0, 0.7), 0 6px 16px rgba(230, 126, 34, 0.4);
    transform: translateY(-2px);
}

.btn-no-premium:hover::before {
    opacity: 1;
}

/* Progress bar with premium gradient */
.progress-bar-yes {
    background: linear-gradient(90deg, rgba(0, 171, 165, 0.3) 0%, rgba(0, 171, 165, 0.5) 100%);
}

.progress-bar-no {
    background: linear-gradient(90deg, rgba(255, 149, 0, 0.3) 0%, rgba(255, 149, 0, 0.5) 100%);
}