/* =====================================================
   ANIMATIONS - Komprehenzivní sada animací
   ===================================================== */

/* ===== KEYFRAME DEFINICE ===== */

/* Základní fade animace */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Zoom animace */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomInBounce {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Bounce animace */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pulse animace */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes pulseScale {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Glow animace */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 247, 255, 0.6);
    }
}

@keyframes glowText {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 247, 255, 0.6), 0 0 30px rgba(0, 247, 255, 0.4);
    }
}

/* Neon flicker */
@keyframes neonFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 0 0 10px rgba(0, 247, 255, 0.5), 0 0 20px rgba(0, 247, 255, 0.3);
        box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
    }
    20%, 24%, 55% {
        text-shadow: none;
        box-shadow: none;
    }
}

/* Rotate animace */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateReverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

/* Slide animace */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Wave animace */
@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-10px);
    }
}

/* Shake animace */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

/* Heartbeat */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.05);
    }
}

/* Gradient animation */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Skew animation */
@keyframes skewIn {
    from {
        opacity: 0;
        transform: skewX(-10deg);
    }
    to {
        opacity: 1;
        transform: skewX(0deg);
    }
}

/* Float animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Shimmer animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* ===== APLIKACE ANIMACÍ NA PRVKY ===== */

/* Navbar animace */
.navbar {
    animation: slideInDown 0.6s ease-out;
}

/* Hero sekce */
.hero {
    animation: fadeIn 0.8s ease-out;
}

.hero-content {
    animation: zoomInBounce 0.8s ease-out;
}

.hero h1 {
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.hero p {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.server-ip-container {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Copy IP button animace */
.copy-ip {
    transition: all 0.3s ease;
}

.copy-ip:hover {
    animation: pulseScale 0.6s ease-in-out;
}

.copy-ip.copied {
    animation: bounceIn 0.5s ease-out;
}

/* Feature cards animace */
.overview-grid {
    animation: fadeIn 0.8s ease-out;
}

.overview-card {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.overview-card:nth-child(1) {
    animation-delay: 0.1s;
}

.overview-card:nth-child(2) {
    animation-delay: 0.2s;
}

.overview-card:nth-child(3) {
    animation-delay: 0.3s;
}

.overview-card:nth-child(4) {
    animation-delay: 0.4s;
}

.overview-card:hover {
    animation: glow 2s ease-in-out infinite;
}

.card-icon {
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.overview-card:nth-child(2) .card-icon {
    animation-delay: 0.3s;
}

.overview-card:nth-child(3) .card-icon {
    animation-delay: 0.6s;
}

.overview-card:nth-child(4) .card-icon {
    animation-delay: 0.9s;
}

.overview-card h3 {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    transition: all 0.3s ease;
}

.overview-card p {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    transition: all 0.3s ease;
}

/* Navigation links animace */
.nav-links a {
    position: relative;
    animation: fadeIn 0.8s ease-out;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
    animation: none;
}

.nav-links a:hover::after {
    width: 100%;
    animation: none;
}

.nav-links a.active::after {
    width: 100%;
}

/* Mobile nav links */
.mobile-nav-container.active .nav-links a {
    animation: fadeInLeft 0.5s ease-out;
    animation-fill-mode: both;
}

.mobile-nav-container.active .nav-links a:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav-container.active .nav-links a:nth-child(2) {
    animation-delay: 0.15s;
}

.mobile-nav-container.active .nav-links a:nth-child(3) {
    animation-delay: 0.2s;
}

.mobile-nav-container.active .nav-links a:nth-child(4) {
    animation-delay: 0.25s;
}

.mobile-nav-container.active .nav-links a:nth-child(5) {
    animation-delay: 0.3s;
}

.mobile-nav-container.active .nav-links a:nth-child(6) {
    animation-delay: 0.35s;
}

.mobile-nav-container.active .nav-links a:nth-child(7) {
    animation-delay: 0.4s;
}

/* Theme toggle button */
.theme-toggle {
    animation: fadeInRight 0.8s ease-out;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    animation: rotate 0.6s ease-in-out;
}

/* Hamburger menu animace */
.hamburger {
    animation: fadeInRight 0.8s ease-out;
}

.hamburger.active .hamburger-line:nth-child(1) {
    animation: rotate 0.3s ease-out forwards;
}

.hamburger.active .hamburger-line:nth-child(3) {
    animation: rotateReverse 0.3s ease-out forwards;
}

/* Status elements */
.status-dot {
    animation: pulse 2s ease-in-out infinite;
}

.status-dot.online {
    animation: glow 2s ease-in-out infinite;
}

/* Spinner animace */
.spinner {
    animation: rotate 1s linear infinite;
}

/* Form elements */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    animation: fadeInUp 0.6s ease-out;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    animation: pulseScale 0.4s ease-out;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
}

/* Buttons */
button {
    animation: fadeInUp 0.6s ease-out;
    transition: all 0.3s ease;
}

.btn {
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Cards */
.card {
    animation: fadeInUp 0.6s ease-out;
    transition: all 0.3s ease;
}

.card:hover {
    animation: glow 2s ease-in-out infinite;
}

/* Links animace */
a {
    position: relative;
    transition: all 0.3s ease;
}

a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

a:hover::before {
    width: 100%;
}

/* Page info */
.page-info {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* Scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Alert animace */
.alert {
    animation: slideInDown 0.5s ease-out;
}

.alert-success {
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
    animation: glow 2s ease-in-out infinite;
}

.alert-error {
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.3);
    animation: shake 0.5s ease-out;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--color-accent), #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

/* Neon text effect */
.neon-text {
    animation: neonFlicker 2s ease-in-out infinite;
}

/* Delay utilities */
.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }
.delay-5 { animation-delay: 0.5s !important; }

/* Duration utilities */
.duration-fast { animation-duration: 0.3s !important; }
.duration-normal { animation-duration: 0.6s !important; }
.duration-slow { animation-duration: 1s !important; }
.duration-slower { animation-duration: 1.5s !important; }

/* Hover lift effect */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Smooth transitions */
.smooth-transition {
    transition: all 0.3s ease;
}

/* Responsive animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        animation: fadeInDown 0.6s ease-out 0.1s both;
    }
    
    .hero p {
        animation: fadeInUp 0.6s ease-out 0.2s both;
    }
    
    .server-ip-container {
        animation: fadeInUp 0.6s ease-out 0.3s both;
    }
    
    .overview-card {
        animation: fadeInUp 0.6s ease-out;
    }
}

/* ===== RIPPLE EFEKT NA TLAČÍTKA ===== */
.btn,
button {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleAnimation 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== GRADIENT ANIMATION BACKGROUND ===== */
.gradient-bg {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* ===== TEXT SHADOW ANIMATION ===== */
.text-shadow-animated {
    animation: glowText 2s ease-in-out infinite;
}

/* ===== INTERACTIVE HOVER STATE ===== */
.interactive-element {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-element:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.interactive-element:active {
    transform: translateY(-2px);
}

/* ===== BACKGROUND ANIMATION ===== */
.animated-bg {
    position: relative;
    background: var(--color-background);
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 247, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(42, 10, 58, 0.1) 0%, transparent 50%);
    animation: gradientShift 8s ease infinite;
    pointer-events: none;
    z-index: 1;
}

/* ===== BORDER ANIMATION ===== */
.border-animated {
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.border-animated::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, var(--color-accent), transparent, var(--color-accent));
    border-radius: inherit;
    animation: borderRotate 3s linear infinite;
    z-index: -1;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ===== ICON ROTATION ===== */
.icon-rotating {
    animation: rotate 2s linear infinite;
}

.icon-rotating:hover {
    animation: rotate 1s linear infinite;
}

/* ===== TEXT REVEAL ANIMATION ===== */
.text-reveal {
    position: relative;
    overflow: hidden;
}

.text-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-background);
    animation: revealAnimation 0.8s ease-out;
}

@keyframes revealAnimation {
    to {
        transform: translateX(100%);
    }
}

/* ===== CURSOR POINTER ANIMATION ===== */
.cursor-pointer {
    cursor: pointer;
    transition: all 0.2s ease;
}

.cursor-pointer:hover {
    filter: brightness(1.1);
}

/* ===== ACCESSIBLE ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .smooth-scroll {
        scroll-behavior: smooth;
    }
}

/* ===== STAGGER ANIMATION MODIFIER ===== */
[data-stagger="1"] { animation-delay: 0.1s; }
[data-stagger="2"] { animation-delay: 0.2s; }
[data-stagger="3"] { animation-delay: 0.3s; }
[data-stagger="4"] { animation-delay: 0.4s; }
[data-stagger="5"] { animation-delay: 0.5s; }
[data-stagger="6"] { animation-delay: 0.6s; }
[data-stagger="7"] { animation-delay: 0.7s; }
[data-stagger="8"] { animation-delay: 0.8s; }

/* ===== PAGE-SPECIFIC ANIMATIONS ===== */

/* Admin Team Page */
.admin-team h1 {
    animation: fadeInDown 0.8s ease-out;
}

.team-section {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

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

.section-title {
    animation: fadeInLeft 0.6s ease-out;
    color: var(--color-accent);
}

.team-grid {
    display: grid;
    animation: fadeIn 0.6s ease-out;
}

.team-member {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    transition: all 0.3s ease;
}

.team-member:hover {
    animation: glow 2s ease-in-out infinite;
    transform: translateY(-5px);
}

/* Rules Page */
.rules-page h1 {
    animation: fadeInDown 0.8s ease-out;
}

.notice-box {
    animation: slideInDown 0.6s ease-out;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.2);
}

.rule-section {
    animation: fadeIn 0.8s ease-out;
}

.rule-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    transition: all 0.3s ease;
    border-color: transparent;
}

.rule-section > .rule-card:nth-child(1) { animation-delay: 0.1s; }
.rule-section > .rule-card:nth-child(2) { animation-delay: 0.2s; }

.rule-card:hover {
    animation: glow 2s ease-in-out infinite;
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.rule-icon {
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.rule-card:nth-child(2) .rule-icon {
    animation-delay: 0.3s;
}

.rule-card ul li {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.rule-card ul li:nth-child(1) { animation-delay: 0.15s; }
.rule-card ul li:nth-child(2) { animation-delay: 0.2s; }
.rule-card ul li:nth-child(3) { animation-delay: 0.25s; }

/* Social Page */
.social-page h1 {
    animation: fadeInDown 0.8s ease-out;
}

.social-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    transition: all 0.3s ease;
}

.social-grid > .social-card:nth-child(1) { animation-delay: 0.1s; }
.social-grid > .social-card:nth-child(2) { animation-delay: 0.2s; }
.social-grid > .social-card:nth-child(3) { animation-delay: 0.3s; }
.social-grid > .social-card:nth-child(4) { animation-delay: 0.4s; }

.social-card:hover {
    animation: glow 2s ease-in-out infinite;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 247, 255, 0.25);
}

.social-icon {
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.social-card svg {
    transition: all 0.3s ease;
}

.social-card:hover svg {
    animation: rotate 0.8s ease-in-out;
}

.social-card h2 {
    animation: fadeInUp 0.6s ease-out;
}

.social-card p,
.social-card .social-username {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    animation-delay: 0.1s;
}

.copy-ip {
    animation: fadeInUp 0.6s ease-out;
}

/* Status Page */
.status-page {
    animation: fadeIn 0.8s ease-out;
}

.status-section {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.minecraft-servers { animation-delay: 0.1s; }
.server-info { animation-delay: 0.2s; }

.section-header {
    animation: fadeInLeft 0.6s ease-out;
}

.section-icon {
    animation: pulse 2s ease-in-out infinite;
    display: inline-block;
}

.server-card {
    animation: zoomInBounce 0.6s ease-out;
    transition: all 0.3s ease;
}

.server-card:hover {
    animation: glow 2s ease-in-out infinite;
    transform: translateY(-5px);
}

.server-status {
    animation: pulse 2s ease-in-out infinite;
}

.server-status.online {
    color: #4CAF50;
    animation: glow 2s ease-in-out infinite;
}

.server-status.offline {
    color: #f44336;
    animation: shake 0.5s ease-out;
}

.server-grid {
    display: grid;
    animation: fadeIn 0.6s ease-out;
}

.stat-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    transition: all 0.3s ease;
}

.stats-grid > .stat-card:nth-child(1) { animation-delay: 0.1s; }
.stats-grid > .stat-card:nth-child(2) { animation-delay: 0.2s; }
.stats-grid > .stat-card:nth-child(3) { animation-delay: 0.3s; }
.stats-grid > .stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    animation: glow 2s ease-in-out infinite;
    transform: translateY(-3px);
}

.stat-icon {
    animation: float 3s ease-in-out infinite;
    display: inline-block;
    font-size: 1.5rem;
}

.stat-card:nth-child(2) .stat-icon {
    animation-delay: 0.3s;
}

.stat-card:nth-child(3) .stat-icon {
    animation-delay: 0.6s;
}

.stat-value {
    animation: pulse 2s ease-in-out infinite;
    font-weight: 700;
}

/* Vote Page */
.vote-page h1 {
    animation: fadeInDown 0.8s ease-out;
}

.vote-info {
    animation: fadeInUp 0.6s ease-out;
    padding: 2rem;
    background: rgba(0, 247, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 247, 255, 0.2);
    margin-bottom: 2rem;
}

.vote-info h2 {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.1s;
}

.vote-info p {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.2s;
}

.vote-button {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 12px;
    color: var(--color-text);
    text-decoration: none;
    margin-bottom: 1rem;
}

.vote-links > .vote-button:nth-child(1) { animation-delay: 0.1s; }
.vote-links > .vote-button:nth-child(2) { animation-delay: 0.2s; }

.vote-button:hover {
    animation: glow 2s ease-in-out infinite;
    border-color: var(--color-accent);
    transform: translateX(10px);
    box-shadow: 0 8px 24px rgba(0, 247, 255, 0.2);
}

.vote-icon {
    animation: float 3s ease-in-out infinite;
    font-size: 2rem;
    margin-right: 1rem;
}

.vote-button:nth-child(2) .vote-icon {
    animation-delay: 0.3s;
}

.vote-arrow {
    margin-left: auto;
    transition: all 0.3s ease;
}

.vote-button:hover .vote-arrow {
    animation: rotate 0.6s ease-out;
}

.vote-rewards {
    animation: fadeInUp 0.8s ease-out 0.3s both;
    padding: 2rem;
    background: rgba(0, 247, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 247, 255, 0.2);
    margin-top: 2rem;
}

.vote-rewards h3 {
    animation: fadeInDown 0.6s ease-out;
    color: var(--color-accent);
}

.reward-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.rewards-list > .reward-item:nth-child(1) { animation-delay: 0.15s; }
.rewards-list > .reward-item:nth-child(2) { animation-delay: 0.25s; }

.reward-item:hover {
    animation: pulse 0.8s ease-in-out;
    transform: translateY(-2px);
}

.reward-icon {
    animation: float 3s ease-in-out infinite;
    display: inline-block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.rewards-list > .reward-item:nth-child(2) .reward-icon {
    animation-delay: 0.3s;
}

/* Store Page */
.store-page .overview-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.store-page .overview-grid > .overview-card:nth-child(1) { animation-delay: 0.1s; }
.store-page .overview-grid > .overview-card:nth-child(2) { animation-delay: 0.2s; }
.store-page .overview-grid > .overview-card:nth-child(3) { animation-delay: 0.3s; }
.store-page .overview-grid > .overview-card:nth-child(4) { animation-delay: 0.4s; }
.store-page .overview-grid > .overview-card:nth-child(5) { animation-delay: 0.5s; }
.store-page .overview-grid > .overview-card:nth-child(6) { animation-delay: 0.6s; }

.store-page .overview-card:hover {
    animation: glow 2s ease-in-out infinite;
}

.store-page .card-icon {
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.store-page .overview-card:nth-child(2) .card-icon {
    animation-delay: 0.3s;
}

.store-page .overview-card:nth-child(3) .card-icon {
    animation-delay: 0.6s;
}

.store-page .overview-card:nth-child(4) .card-icon {
    animation-delay: 0.9s;
}

.store-page .overview-card h3 {
    animation: fadeInUp 0.6s ease-out;
}

.store-page .overview-card p {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.1s;
}

/* 404 Page */
.error-page {
    animation: fadeIn 0.8s ease-out;
}

.error-code {
    animation: zoomInBounce 0.8s ease-out;
    animation-fill-mode: both;
}

.error-message {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.error-description {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.home-button {
    animation: fadeInUp 0.8s ease-out 0.6s both;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--color-accent);
    color: var(--color-background);
    border-radius: 8px;
    text-decoration: none;
}

.home-button:hover {
    animation: pulse 0.8s ease-in-out;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 247, 255, 0.3);
}

