/* Main CSS for Movable Games */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Rajdhani:wght@400;600;700&family=Josefin+Sans:wght@300;400;600&display=swap');

:root {
    --primary-cyan: #4cc9f0;
    --primary-purple: #7209b7;
    --highlight: #f72585;
    --text-main: #ffffff;
    --bg-dark: #0b0f19;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* No Scrollbars */
html,
body {
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow: hidden !important;
    height: 100vh !important;
    width: 100vw !important;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* Home Button Style */
.home-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid var(--primary-cyan);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Orbitron';
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-btn:hover {
    background: var(--primary-cyan);
    color: black;
    box-shadow: 0 0 15px var(--primary-cyan);
}

/* Container */
.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* Logo */
.logoImg {
    height: 60px;
    filter: drop-shadow(0 0 10px var(--primary-cyan));
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.animate__animated {
    animation-duration: 0.5s;
}
