@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Russo+One&family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

html {
    overflow: hidden !important;
    height: 100% !important;
    width: 100% !important;
}

body {
    overflow: hidden !important;
    overscroll-behavior: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(45deg, #1a0033, #000000, #2d0059);
    display: flex;
    justify-content: center;
    align-items: center;
    touch-action: none;
}

.floating-text {
    position: fixed;
    color: rgba(157, 0, 255, 0.2);
    font-family: 'Russo One', sans-serif;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    white-space: nowrap;
    z-index: 1;
    transition: opacity 0.3s ease;
    text-shadow: 0 0 15px rgba(157, 0, 255, 0.3);
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 100vh;
    overflow: visible;
    padding: 20px;
}

.logo {
    position: relative;
    animation: modernFloat 6s ease-in-out infinite;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(2.5em, 6vw, 4em);
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(219deg, 
        #ffffff 19%, 
        #9d00ff 39%,
        #ff00f7 67%,
        #00fff2 86%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 4s linear infinite;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(157, 0, 255, 0.5));
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: clamp(10px, 2vw, 20px);
    width: 100%;
    max-width: 800px;
    padding: 0;
    justify-content: center;
}

.social-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: clamp(12px, 2vw, 20px);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(157, 0, 255, 0.2);
    height: 100%;
    min-height: 100px;
    flex: 1;
    max-width: 200px;
    overflow: visible;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(157, 0, 255, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
                0 0 30px rgba(157, 0, 255, 0.2);
}

.social-icon:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.2);
}

.social-icon:hover .icon-wrapper:before {
    opacity: 1;
    transform: scale(1.5);
}

.social-icon:hover i {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 10px currentColor);
}

.social-icon:hover span {
    letter-spacing: 2px;
    transform: scale(1.05);
    background-size: 100% auto;
}

.social-icon:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

.icon-wrapper {
    position: relative;
    width: clamp(35px, 6vw, 50px);
    height: clamp(35px, 6vw, 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.icon-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at center,
                rgba(255, 255, 255, 0.2),
                transparent);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 50%;
    transform: scale(0.5);
}

.icon-wrapper i {
    font-size: clamp(1em, 3vw, 1.5em);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-icon span {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(0.7em, 1.5vw, 0.9em);
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin-top: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(120deg,
        #ffffff 20%,
        #9d00ff,
        #ff00f7,
        #00fff2 80%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s linear infinite;
    text-shadow: 0 0 15px rgba(157, 0, 255, 0.3);
    text-align: center;
}

.youtube:hover {
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
                0 0 30px rgba(255, 0, 0, 0.2);
}

.youtube:hover i {
    color: red;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.tiktok:hover {
    border-color: rgba(0, 242, 234, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
                0 0 30px rgba(0, 242, 234, 0.2);
}

.tiktok:hover i {
    color: #00f2ea;
    filter: drop-shadow(0 0 10px rgba(0, 242, 234, 0.5));
}

.discord:hover {
    border-color: rgba(114, 137, 218, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
                0 0 30px rgba(114, 137, 218, 0.2);
}

.discord:hover i {
    color: #7289da;
    filter: drop-shadow(0 0 10px rgba(114, 137, 218, 0.5));
}

.donate {
    position: relative !important;
    cursor: pointer;
    overflow: visible !important;
}

.donate-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.donate:hover {
    border-color: rgba(255, 64, 129, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
                0 0 30px rgba(255, 64, 129, 0.2);
}

.donate:hover i {
    color: #ff4081;
    filter: drop-shadow(0 0 10px rgba(255, 64, 129, 0.5));
}

.donate-options {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(26, 0, 51, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 100;
    margin-top: 15px;
    min-width: 140px;
}

.donate-options:before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.1);
}

.donate.active .donate-options,
.donate:focus-within .donate-options {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%);
}

.donate-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.donate-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: white;
}

.donate-option i {
    font-size: 16px;
}

.donate-option span {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.donate-option:hover span {
    letter-spacing: 1px;
}

.donate-option.paypal {
    background: rgba(0, 156, 222, 0.1);
}

.donate-option.paypal:hover {
    background: rgba(0, 156, 222, 0.2);
}

.donate-option.paypal i {
    color: #009cde;
}

.donate-option.card {
    background: rgba(255, 64, 129, 0.1);
}

.donate-option.card:hover {
    background: rgba(255, 64, 129, 0.2);
}

.donate-option.card i {
    color: #ff4081;
}

.stats-container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: clamp(10px, 2vw, 15px);
    z-index: 2;
    padding: 15px clamp(10px, 3vw, 20px);
    flex-wrap: nowrap;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(157, 0, 255, 0.1);
    position: fixed;
    bottom: 40px;
    left: 0;
}

.stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: clamp(6px, 1.5vw, 12px) clamp(12px, 2vw, 16px);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 0, 255, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stats-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(157, 0, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(157, 0, 255, 0.2);
}

.stats-badge i {
    font-size: clamp(0.9em, 2vw, 1.1em);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.stats-badge:hover i {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
}

.stats-badge span {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(0.8em, 1.8vw, 0.9em);
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.stats-badge:hover span {
    opacity: 1;
    transform: scale(1.05);
}

.stats-label {
    font-family: Arial, sans-serif;
    font-size: clamp(0.65em, 1.5vw, 0.75em);
    color: rgba(255, 255, 255, 0.7);
    margin-left: 4px;
    transition: all 0.3s ease;
}

.stats-badge:hover .stats-label {
    color: rgba(255, 255, 255, 0.9);
}

.youtube-stats {
    background: rgba(255, 0, 0, 0.1);
}

.youtube-stats:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(255, 0, 0, 0.2);
}

.youtube-stats i {
    color: red;
}

.tiktok-stats {
    background: rgba(0, 242, 234, 0.1);
}

.tiktok-stats:hover {
    background: rgba(0, 242, 234, 0.15);
    border-color: rgba(0, 242, 234, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 242, 234, 0.2);
}

.tiktok-stats i {
    color: #00f2ea;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: clamp(8px, 1.5vw, 15px);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.7em, 1.5vw, 0.9em);
    z-index: 2;
    border-top: 1px solid rgba(157, 0, 255, 0.2);
}

.interactive-heart {
    position: relative;
    cursor: pointer;
    font-size: clamp(1.5em, 4vw, 2em);
    display: flex;
    align-items: center;
    gap: 10px;
}

.interactive-heart i {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.interactive-heart i.pulse {
    animation: heartPulse 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.interactive-heart i.attract {
    animation: heartAttract 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.interactive-heart.clicked i {
    animation: heartCrack 0.5s ease forwards;
}

.interactive-heart.exploded i {
    animation: heartExplode 0.5s ease forwards;
}

.slay-text {
    position: absolute;
    font-family: 'Russo One', sans-serif;
    font-size: 2em;
    color: #ff00f7;
    text-shadow: 0 0 10px #ff00f7;
    opacity: 0;
    transform: translateX(-50%) scale(0.5) translateY(20px);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    letter-spacing: 2px;
    filter: blur(0px);
    text-transform: uppercase;
    left: 50%;
}

.slay-text.show {
    opacity: 1;
    transform: translateX(-50%) scale(1.2) translateY(-10px);
    animation: slayExplosion 3s ease forwards;
}

.slay-text.hide {
    opacity: 0;
    transform: translateX(-50%) scale(0.5) translateY(20px);
    filter: blur(10px);
}

.logo-text:before {
    content: attr(data-text);
    position: absolute;
    left: -2px;
    text-shadow: 2px 0 #9d00ff;
    top: 0;
    color: #fff;
    background: none;
    overflow: hidden;
    animation: glitch 5s infinite linear alternate-reverse;
}

@keyframes heartPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(0, 136, 255, 0.5));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 20px rgba(0, 136, 255, 0.8));
    }
}

@keyframes heartAttract {
    0% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes heartCrack {
    0% {
        transform: scale(1);
        color: red;
    }
    25% {
        transform: scale(1.2) rotate(5deg);
        color: #00ff00;
    }
    50% {
        transform: scale(0.8) rotate(-10deg);
        color: #0000ff;
    }
    75% {
        transform: scale(1.1) rotate(15deg);
        color: #ff00ff;
    }
    100% {
        transform: scale(1) rotate(-5deg);
        color: #00ffff;
    }
}

@keyframes heartExplode {
    0% {
        transform: scale(1) rotate(-5deg);
        color: #ff00ff;
    }
    50% {
        transform: scale(1.5) rotate(5deg);
        opacity: 1;
        color: red;
    }
    100% {
        transform: scale(2) rotate(0);
        opacity: 0;
        color: #00ff00;
    }
}

@keyframes modernFloat {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(5px, -7px);
    }
    50% {
        transform: translate(-3px, 5px);
    }
    75% {
        transform: translate(4px, -3px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes shine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes glitch {
    0% {
        clip-path: inset(80% 0 0 0);
    }
    5% {
        clip-path: inset(20% 0 60% 0);
    }
    10% {
        clip-path: inset(40% 0 40% 0);
    }
    15% {
        clip-path: inset(60% 0 20% 0);
    }
    20% {
        clip-path: inset(10% 0 90% 0);
    }
    25% {
        clip-path: inset(100% 0 0 0);
    }
    100% {
        clip-path: inset(100% 0 0 0);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes slayExplosion {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5) translateY(20px);
        filter: blur(10px);
    }
    10% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2) translateY(-10px);
        filter: blur(0px);
        color: #ff00f7;
    }
    20% {
        transform: translateX(-50%) scale(1.5) rotate(10deg);
        color: #00fff2;
    }
    30% {
        transform: translateX(-50%) scale(1.3) rotate(-5deg);
        color: #ff00f7;
    }
    40% {
        transform: translateX(-50%) scale(1.4) rotate(5deg);
        color: #9d00ff;
    }
    80% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2) translateY(-15px);
        filter: blur(0px);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) scale(2) translateY(-30px);
        filter: blur(15px);
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 20px;
        gap: 40px;
        justify-content: flex-start;
        padding-top: 80px;
        height: auto;
        min-height: 100vh;
    }
    
    .logo {
        margin-bottom: 0;
        margin-top: 0;
    }
    
    .logo-text {
        font-size: clamp(2em, 8vw, 3em);
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 20px;
        max-width: 650px;
        margin: 0 auto;
        padding-top: 30px;
    }

    .social-icon {
        width: calc(50% - 10px);
        max-width: none;
        min-height: 130px;
        margin: 0;
        flex: 0 0 calc(50% - 10px);
        padding: 20px;
    }

    .icon-wrapper {
        width: clamp(50px, 10vw, 65px);
        height: clamp(50px, 10vw, 65px);
    }

    .icon-wrapper i {
        font-size: clamp(1.4em, 4.5vw, 2em);
    }

    .social-icon span {
        font-size: clamp(1em, 2.8vw, 1.3em);
    }

    .slay-text {
        font-size: 1.5em;
        top: 100%;
    }

    .donate-options {
        position: absolute;
        top: 100%;
        bottom: auto;
        padding-top: 12px;
        padding-bottom: 0;
        flex-direction: column;
        gap: 8px;
    }

    .donate:hover .donate-options {
        animation: slideDown 0.3s ease forwards;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 15px;
        padding-top: 60px;
        gap: 30px;
        height: auto;
        min-height: 100vh;
    }

    .social-links {
        gap: 15px;
        max-width: 440px;
        padding: 0 10px;
        padding-top: 20px;
    }

    .social-icon {
        width: calc(50% - 8px);
        min-height: 120px;
        padding: 15px;
        flex: 0 0 calc(50% - 8px);
    }

    .icon-wrapper {
        width: clamp(45px, 11vw, 55px);
        height: clamp(45px, 11vw, 55px);
    }

    .icon-wrapper i {
        font-size: clamp(1.3em, 5.5vw, 1.8em);
    }

    .social-icon span {
        font-size: clamp(0.95em, 3.2vw, 1.2em);
    }

    .donate-options {
        padding-top: 10px;
        gap: 6px;
    }

    .donate-option {
        padding: 8px 12px;
        min-width: 120px;
        font-size: 0.85em;
    }
}

/* Chaoso lemputės stiliai */
.chaos-toggle {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 24px !important;
    cursor: pointer !important;
    z-index: 999999 !important;
    padding: 15px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    border-radius: 50% !important;
    width: 55px !important;
    height: 55px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.chaos-toggle:hover {
    transform: scale(1.1) rotate(15deg) !important;
    color: #ff00f7 !important;
    text-shadow: 0 0 20px #ff00f7 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 30px rgba(255, 64, 129, 0.2) !important;
}

.chaos-toggle i {
    transition: all 0.3s ease !important;
    font-size: 24px !important;
}

body.chaos-mode .chaos-toggle {
    color: #ff00f7 !important;
    text-shadow: 0 0 15px #ff00f7 !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

body.chaos-mode .chaos-toggle i {
    animation: spin 1s linear infinite !important;
}

/* Chaoso animacijos */
.chaos-mode .social-icon {
    animation: chaos-bounce 1s infinite;
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.chaos-mode .logo-text {
    animation: chaos-shake 0.5s infinite;
}

.chaos-mode .floating-text {
    animation: chaos-float 2s infinite;
}

@keyframes chaos-bounce {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0);
    }
    25% {
        transform: translateY(-20px) scale(1.1) rotate(10deg);
    }
    50% {
        transform: translateY(0) scale(0.9) rotate(-10deg);
    }
    75% {
        transform: translateY(20px) scale(1.1) rotate(10deg);
    }
}

@keyframes chaos-shake {
    0%, 100% {
        transform: translateX(0) rotate(0);
    }
    25% {
        transform: translateX(-10px) rotate(-5deg);
    }
    50% {
        transform: translateX(10px) rotate(5deg);
    }
    75% {
        transform: translateX(-10px) rotate(-5deg);
    }
}

@keyframes chaos-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0);
    }
    25% {
        transform: translate(30px, -30px) rotate(10deg);
    }
    50% {
        transform: translate(-30px, 30px) rotate(-10deg);
    }
    75% {
        transform: translate(30px, 30px) rotate(10deg);
    }
}

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

.chaos-mode .interactive-heart i {
    transition: all 0.3s ease;
    animation: chaos-heart-float 2s infinite;
}

@keyframes chaos-heart-float {
    0%, 100% {
        filter: drop-shadow(0 0 15px currentColor);
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        filter: drop-shadow(0 0 25px currentColor);
        transform: translateY(-10px) rotate(10deg) scale(1.2);
    }
    50% {
        filter: drop-shadow(0 0 20px currentColor);
        transform: translateY(0) rotate(-10deg) scale(0.9);
    }
    75% {
        filter: drop-shadow(0 0 25px currentColor);
        transform: translateY(10px) rotate(10deg) scale(1.1);
    }
}

.chaos-mode .interactive-heart i.pulse {
    animation: chaos-heart-pulse 0.5s ease-in-out;
}

@keyframes chaos-heart-pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px currentColor);
    }
    50% {
        transform: scale(1.5);
        filter: drop-shadow(0 0 30px currentColor);
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px currentColor);
    }
}

.chaos-mode .slay-text {
    font-size: 3em;
    text-shadow: 0 0 20px currentColor;
    animation: chaos-slay 1s ease-in-out infinite;
}

@keyframes chaos-slay {
    0%, 100% {
        transform: translateX(-50%) scale(1) rotate(0deg);
        filter: hue-rotate(0deg);
    }
    25% {
        transform: translateX(-50%) scale(1.2) rotate(5deg);
        filter: hue-rotate(90deg);
    }
    50% {
        transform: translateX(-50%) scale(0.8) rotate(-5deg);
        filter: hue-rotate(180deg);
    }
    75% {
        transform: translateX(-50%) scale(1.2) rotate(5deg);
        filter: hue-rotate(270deg);
    }
}