.hero-section {
    padding: 80px 0;
    text-align: center;
    color: white;
}

.card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.disintegrating {
    position: relative;
}

.fragment {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    will-change: transform, opacity;
}

.fragment-triangle {
    width: 0;
    height: 0;
    border-style: solid;
}

.fragment-square {
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
}

.fragment-circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.fragment-diamond {
    width: 10px;
    height: 10px;
    background: inherit;
    transform: rotate(45deg);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.element-dissolving {
    animation: dissolve-effect 1.2s ease-out forwards;
}

@keyframes dissolve-effect {
    0% {
        opacity: 1;
        filter: brightness(1) contrast(1);
        transform: scale(1);
    }
    30% {
        opacity: 0.9;
        filter: brightness(1.3) contrast(1.2);
        transform: scale(1.02);
    }
    60% {
        opacity: 0.6;
        filter: brightness(0.8) contrast(0.9);
        transform: scale(0.98);
    }
    100% {
        opacity: 0;
        filter: brightness(0) contrast(0);
        transform: scale(0.95);
    }
}

.modal-countdown {
    font-size: 3rem;
    font-weight: bold;
    color: #dc3545;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.final-message {
    position: absolute;
    width: 100%;
    /*height: 100vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
    background: rgba(0, 0, 0, 0.9);
    color: #ff6b6b;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #ff6b6b;
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
    z-index: 9999;
    display: none;
}

.glitch {
    animation: glitch 0.3s infinite;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}