@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600;700;900&family=Oswald:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 100, 0, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 100, 0, 0.1) 0%, transparent 40%),
        linear-gradient(180deg, #0a0808 0%, #120a0a 50%, #0a0808 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(0,0,0,0.95) 0%, transparent 8%, transparent 92%, rgba(0,0,0,0.95) 100%);
    pointer-events: none;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.navbar a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    position: relative;
}

.navbar a:not(.auth-link)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4500, #ffaa00);
    transition: width 0.3s;
}

.navbar a:not(.auth-link):hover::after {
    width: 100%;
}

.navbar a:hover {
    color: #fff;
}

.auth-link {
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    padding: 12px 25px !important;
    border-radius: 30px;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.4);
    transition: all 0.3s;
}

.auth-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 69, 0, 0.6);
}

.hero-content {
    text-align: center;
    z-index: 5;
}

.main-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 140px;
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-style: italic;
    
    /* 3D Metal Effect */
    background: linear-gradient(180deg, 
        #ffaa00 0%,
        #ff6b00 15%,
        #ff4500 30%,
        #cc3700 50%,
        #ff6b00 70%,
        #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Shadow layers for 3D effect */
    filter: drop-shadow(3px 3px 0px rgba(255, 69, 0, 0.8))
            drop-shadow(6px 6px 0px rgba(200, 50, 0, 0.6))
            drop-shadow(9px 9px 0px rgba(100, 20, 0, 0.4))
            drop-shadow(0px 0px 40px rgba(255, 69, 0, 0.6));
    
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.8),
        4px 4px 0px rgba(255, 100, 0, 0.5),
        6px 6px 0px rgba(200, 50, 0, 0.3);
}

.heart-icon {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heart-svg {
    animation: heartFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 0, 64, 0.8));
}

.heart-main {
    animation: heartBeat 1.2s ease-in-out infinite;
    transform-origin: center 60%;
}

.heart-shine {
    animation: shineMove 3s ease-in-out infinite;
    opacity: 0.9;
}

.heart-sparkle {
    animation: sparkleGlow 1.5s ease-in-out infinite;
}

.heart-shadow {
    animation: shadowPulse 1.2s ease-in-out infinite;
}

.particle {
    animation: particleFloat 2s ease-in-out infinite;
}

.particle.p1 { animation-delay: 0s; }
.particle.p2 { animation-delay: 0.4s; }
.particle.p3 { animation-delay: 0.8s; }
.particle.p4 { animation-delay: 1.2s; }
.particle.p5 { animation-delay: 1.6s; }

@keyframes heartFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes heartBeat {
    0%, 100% { 
        transform: scale(1);
    }
    15% { 
        transform: scale(1.15);
    }
    30% { 
        transform: scale(1);
    }
    45% { 
        transform: scale(1.1);
    }
    60% { 
        transform: scale(1);
    }
}

@keyframes shineMove {
    0%, 100% { 
        opacity: 0.9;
        transform: translate(0, 0);
    }
    50% { 
        opacity: 0.6;
        transform: translate(2px, 2px);
    }
}

@keyframes sparkleGlow {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes shadowPulse {
    0%, 100% { 
        transform: scaleX(1);
        opacity: 0.3;
    }
    15% { 
        transform: scaleX(1.2);
        opacity: 0.5;
    }
    30% { 
        transform: scaleX(1);
        opacity: 0.3;
    }
}

@keyframes particleFloat {
    0%, 100% { 
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% { 
        opacity: 1;
        transform: translateY(-15px) scale(1);
    }
}

.subtitle {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 18px;
    color: #fff;
    margin-top: 40px;
    text-transform: uppercase;
}

.subtitle-accent {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 18px;
    background: linear-gradient(90deg, #ff6b35, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 15px;
    text-transform: uppercase;
    filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.5));
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 30px;
    color: #ff4500;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Nominations Section */
.nominations-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 60px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffaa00, #ff6b35, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 69, 0, 0.4));
}

.category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #ff4500, #ffaa00) 1;
    color: #fff;
    letter-spacing: 2px;
}

.nominees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.nominee-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid #333;
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.nominee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff4500, #ffaa00, #ff4500);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.nominee-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 30px 60px rgba(255, 69, 0, 0.3),
                inset 0 0 20px rgba(255, 69, 0, 0.1);
}

.nominee-card:hover::before {
    transform: scaleX(1);
}

.nominee-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4500, #ffaa00);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.5),
                inset 0 0 20px rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.nominee-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nominee-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 1px;
}

.tg-link {
    color: #0088cc;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.tg-link:hover {
    color: #00aaff;
}

.vote-count {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.vote-btn {
    background: linear-gradient(135deg, #ff4500, #ffaa00);
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
}

.vote-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 50px rgba(255, 69, 0, 0.5);
}

.vote-btn:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
}

.modal-content.success {
    border-color: #00ff00;
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff4500;
}

.modal-content p {
    color: #888;
    margin-bottom: 25px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #ff4500;
}

.demo-auth {
    display: none;
}

/* User Info */
.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
}

.user-info span {
    color: #fff;
    font-weight: 600;
}

.logout-btn {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    margin-left: 15px;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 70px;
        letter-spacing: 4px;
    }
    
    .subtitle, .subtitle-accent {
        font-size: 18px;
        letter-spacing: 8px;
    }
    
    .heart-icon {
        font-size: 60px;
    }
    
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .navbar a {
        font-size: 12px;
    }
    
    .auth-link {
        padding: 8px 16px !important;
        font-size: 11px !important;
    }
    
    .nominations-section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }
    
    .category {
        margin-bottom: 40px;
    }
    
    .category-title {
        font-size: 18px;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        letter-spacing: 1px;
    }
    
    .icon-wrapper {
        margin-right: 8px;
        flex-shrink: 0;
    }
    
    .crown-svg, .star-svg, .rocket-svg {
        width: 30px;
        height: 30px;
    }
    
    .nominees-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nominee-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .nominee-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .nominee-name {
        font-size: 18px;
    }
    
    .tg-link {
        font-size: 13px;
    }
    
    .vote-count {
        font-size: 13px;
    }
    
    .vote-btn {
        padding: 12px 25px;
        font-size: 13px;
        letter-spacing: 1px;
    }
    
    /* User info mobile */
    .user-info {
        flex-direction: column;
        gap: 8px;
        font-size: 13px;
    }
    
    .logout-btn {
        padding: 6px 15px;
        font-size: 11px;
        margin-left: 0;
    }
    
    /* Modal mobile */
    .modal-content {
        padding: 30px 20px;
        width: 95%;
        max-width: 400px;
    }
    
    .modal-content h2 {
        font-size: 20px;
    }
    
    .tg-auth-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .code-auth {
        flex-direction: column;
        gap: 15px;
    }
    
    .code-auth input {
        width: 100%;
        font-size: 20px;
        padding: 15px;
    }
    
    .verify-btn {
        width: 100%;
        padding: 15px;
    }
    
    footer {
        padding: 30px 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 45px;
        letter-spacing: 2px;
    }
    
    .subtitle, .subtitle-accent {
        font-size: 12px;
        letter-spacing: 4px;
    }
    
    .heart-icon {
        font-size: 45px;
        margin: 20px 0;
    }
    
    .section-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .category-title {
        font-size: 16px;
        gap: 6px;
    }
    
    .crown-svg, .star-svg, .rocket-svg {
        width: 24px;
        height: 24px;
    }
    
    .icon-wrapper {
        margin-right: 6px;
    }
    
    .nominee-card {
        padding: 20px 15px;
    }
    
    .nominee-avatar {
        width: 70px;
        height: 70px;
    }
    
    .nominee-name {
        font-size: 16px;
    }
    
    .vote-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* Voted state */
.nominee-card.voted {
    border-color: #00ff00;
}

.nominee-card.voted .vote-btn {
    background: #00aa00;
}

/* Telegram Auth */
#telegram-login {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tg-auth-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    color: #fff;
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tg-auth-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
}

.tg-hint {
    font-size: 12px;
    color: #666;
    margin: 5px 0 0 0;
}

.code-auth {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.code-auth input {
    padding: 12px 20px;
    border: 2px solid #333;
    border-radius: 10px;
    background: #0d0d0d;
    color: #fff;
    font-size: 18px;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    width: 150px;
    outline: none;
    transition: border-color 0.3s;
}

.code-auth input:focus {
    border-color: #ff4500;
}

.verify-btn {
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verify-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
}


/* Category Icons */
.category-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    vertical-align: middle;
}

/* Icon Wrappers */
.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
}

/* ========== CROWN ICON ========== */
.crown-wrapper {
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.7));
}

.crown-svg {
    animation: crownFloat 3s ease-in-out infinite;
}

.crown-base {
    animation: crownShine 2s ease-in-out infinite;
}

.gem {
    animation: gemPulse 1.5s ease-in-out infinite;
}

.gem-center {
    animation: gemPulse 1.5s ease-in-out infinite, gemGlow 1s ease-in-out infinite alternate;
}

.gem-left {
    animation-delay: 0.3s;
}

.gem-right {
    animation-delay: 0.6s;
}

.band-gem {
    animation: bandGemShine 2s ease-in-out infinite;
}

.sparkle {
    animation: sparkleAnim 2s ease-in-out infinite;
    transform-origin: center;
}

.sparkle.sp1 { animation-delay: 0s; }
.sparkle.sp2 { animation-delay: 0.4s; }
.sparkle.sp3 { animation-delay: 0.8s; }
.sparkle.sp4 { animation-delay: 1.2s; }
.sparkle.sp5 { animation-delay: 1.6s; }

@keyframes crownFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-3px) rotate(-1deg);
    }
    50% { 
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-3px) rotate(1deg);
    }
}

@keyframes crownShine {
    0%, 100% { 
        filter: brightness(1);
    }
    50% { 
        filter: brightness(1.2);
    }
}

@keyframes gemPulse {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.1);
        filter: brightness(1.4);
    }
}

@keyframes gemGlow {
    0% { 
        filter: drop-shadow(0 0 3px #ff0040);
    }
    100% { 
        filter: drop-shadow(0 0 8px #ff0040);
    }
}

@keyframes bandGemShine {
    0%, 100% { 
        opacity: 1;
    }
    50% { 
        opacity: 0.7;
        filter: brightness(1.5);
    }
}

@keyframes sparkleAnim {
    0%, 100% { 
        opacity: 0;
        transform: scale(0);
    }
    50% { 
        opacity: 1;
        transform: scale(1.5);
    }
}

/* ========== STAR ICON ========== */
.star-wrapper {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.star-svg {
    animation: starRotate 4s linear infinite;
}

.star-main {
    animation: starPulse 1.5s ease-in-out infinite;
    transform-origin: center;
}

.star-sparkle {
    animation: sparkle 1s ease-in-out infinite;
}

.star-sparkle.s1 { animation-delay: 0s; }
.star-sparkle.s2 { animation-delay: 0.3s; }
.star-sparkle.s3 { animation-delay: 0.6s; }

@keyframes starRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes starPulse {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.1);
        filter: brightness(1.3);
    }
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0;
        transform: scale(0);
    }
    50% { 
        opacity: 1;
        transform: scale(1.5);
    }
}

/* ========== ROCKET ICON ========== */
.rocket-wrapper {
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
}

.rocket-svg {
    animation: rocketHover 2s ease-in-out infinite;
}

.rocket-body {
    animation: rocketShake 0.1s ease-in-out infinite;
}

.rocket-flame {
    animation: flameFlicker 0.15s ease-in-out infinite alternate;
    transform-origin: top center;
}

.rocket-flame.f1 { animation-delay: 0s; }
.rocket-flame.f2 { animation-delay: 0.05s; }
.rocket-flame.f3 { animation-delay: 0.1s; }

@keyframes rocketHover {
    0%, 100% { 
        transform: translateY(0) rotate(-5deg);
    }
    25% {
        transform: translateY(-5px) rotate(-3deg);
    }
    50% { 
        transform: translateY(-8px) rotate(-5deg);
    }
    75% {
        transform: translateY(-5px) rotate(-7deg);
    }
}

@keyframes rocketShake {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(0.5px); }
}

@keyframes flameFlicker {
    0% { 
        transform: scaleY(1) scaleX(1);
        opacity: 1;
    }
    100% { 
        transform: scaleY(1.3) scaleX(0.8);
        opacity: 0.7;
    }
}

.category-title {
    display: flex;
    align-items: center;
}


/* Touch improvements */
.vote-btn, .tg-auth-btn, .verify-btn, .logout-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Better touch targets */
@media (max-width: 768px) {
    .navbar a {
        padding: 10px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .close-btn {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 10px;
        right: 10px;
    }
}

/* Prevent text selection on buttons */
button, .vote-btn, .tg-auth-btn {
    -webkit-user-select: none;
    user-select: none;
}

/* Fix horizontal scroll */
body {
    overflow-x: hidden;
}

.hero, .nominations-section {
    overflow-x: hidden;
}


/* Heart responsive */
@media (max-width: 768px) {
    .heart-svg {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .heart-svg {
        width: 70px;
        height: 70px;
    }
}


/* FAQ Section */
.faq-section {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid #333;
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(255, 69, 0, 0.1);
}

.faq-arrow {
    color: #ff4500;
    transition: transform 0.3s;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #aaa;
    margin-bottom: 10px;
    line-height: 1.6;
}

.faq-answer ul {
    color: #aaa;
    margin-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer b {
    color: #ff4500;
}

/* Kind icon */
.kind-wrapper svg {
    filter: drop-shadow(0 0 8px rgba(255, 107, 138, 0.6));
}

/* Work icon */
.work-wrapper svg {
    filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.6));
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 14px;
    }
}
