
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

body {
    margin: 0;
    background-color: #000;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in;
}
body.loaded {
    opacity: 1;
}
.logo-container {
    text-align: center;
    position: relative;
    z-index: 10;
}
.logo-circle {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    border: none;
    animation: pulse 2s infinite;
}
.title {
    margin-top: 15px;
    font-size: 32px;
    font-family: Zapfino, cursive, serif;
    color: #ff6600;
    letter-spacing: 1px;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
    100% { transform: scale(1); opacity: 1; }
}
canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spinner {
    border: 6px solid #333;
    border-top: 6px solid #ff6600;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media (max-width: 600px) {
    .logo-circle {
        width: 160px;
        height: 160px;
    }
    .title {
        font-size: 24px;
    }
}
