/* Shared styles across all pages */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

#canvas-container {
    position: relative;
    width: 800px;
    height: 600px;
}

@media (max-width: 768px) {
    #canvas-container {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    #canvas-container {
        width: 100%;
        max-width: 320px;
        height: 320px;
    }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}