/* Storylinn Main Layout - Clean Version */

:root {
    --bg: #ffffff;
    --text: #000000;
    --accent: #f0f0f0;
    --glass: rgba(255, 255, 255, 0.4);
    --transition: 0.4s ease;
}

[data-theme="dark"] {
    --bg: #000000;
    --text: #ffffff;
    --accent: #111111;
    --glass: rgba(0, 0, 0, 0.4);
}

* { 
    box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent; 
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg);
    color: var(--text);
    overflow: hidden; 
    transition: background-color var(--transition), color var(--transition);
}

.logo {
    position: fixed;
    top: 30px;
    left: 30px;
    font-size: 28px;
    font-weight: 800;
    text-transform: none;
    font-family: sans-serif;
    letter-spacing: -1.8px;
    cursor: default;
    user-select: none;
    z-index: 1000;
}

.controls {
    position: fixed;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.btn-round {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--text);
    background: none;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    -webkit-appearance: none;
}

.btn-round:hover {
    background-color: var(--text);
    color: var(--bg);
}

#stage {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10%;
    text-align: center;
    cursor: pointer;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .logo { 
        top: 20px; 
        left: 20px; 
        font-size: 24px; 
    }
    .controls { 
        top: 20px; 
        right: 20px; 
    }
    #stage { 
        padding: 5%; 
    }
}