@import url('/css/style.css');

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

body {
    overflow: hidden;
    touch-action: none;
    background-color: var(--background-color);
}

#touchCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    touch-action: none;
}

.title-main {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 1000;
    color: var(--accent-main);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 255, 255, 0.2),
        0 0 90px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: right;
}

.version {
    display: block;
    font-size: 16px;
    margin-top: 4px;
    opacity: 0.7;
    font-weight: 200;
    letter-spacing: 2px;
}



.instructions {
    max-width: 500px;

    font-size: 2rem;
    position: fixed;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-main);

    font-weight: 300;
    letter-spacing: 1px;

    opacity: 0.3;
    pointer-events: none;

    transition: opacity 0.3s ease;
}

.instructions.hidden {
    opacity: 0;
    visibility: hidden;
}

.instructions p {
    margin: 1rem 0;
}

.fullscreen-btn, .refresh-btn {
    position: fixed;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    backdrop-filter: blur(5px);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(255, 255, 255, 0.05);
}

.fullscreen-btn {
    bottom: 25px;
    right: 25px;
}

.refresh-btn {
    bottom: 25px;
    left: 25px;
}

.fullscreen-btn svg, .refresh-btn svg {
    fill: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.fullscreen-btn:hover, .refresh-btn:hover {
    background: var(--accent-main);
    transform: scale(1.1);
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.2),
        0 0 60px rgba(255, 255, 255, 0.1);
}

.fullscreen-btn:hover svg, .refresh-btn:hover svg {
    fill: var(--background-color);
}

.refresh-btn:active svg {
    transform: rotate(180deg);
} 