/*
Theme Name: Yuridrop Theme
Theme URI: http://games.yuridrop.com
Author: Kanade
Version: 1.0
Description: Custom Wordpress theme for Yuridrop.com
*/

/* Font */
@font-face {
    font-family: "ByteBounce";
    src: url("assets/fonts/ByteBounce.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* Animations */
@keyframes fade_in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade_in {
    animation: fade_in 1.5s ease-out forwards;
}

/* Theme Colors */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f14;
    --text-primary: #f0f0f0;
    --text-secondary: #8a8a9a;
    --purple-primary: #6b4ad8;
    --purple-secondary: #7d5ce0;
    --purple-dark: #563ab5;
}

/* Body Defaults */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'ByteBounce', sans-serif;
}

/* Lucide Icons */
.lucide {
    stroke: #800080;
    stroke-width: 2;
    filter: drop-shadow(0 0 8px #800080);
    transition: filter 0.3s ease;
}

/* Optional: Ensure links inherit theme colors */
a {
    color: var(--purple-primary);
    text-decoration: none;
}
a:hover {
    color: var(--purple-secondary);
}
