@font-face {
    font-family: 'Poppins';
    src: url('assets/font/poppins-v24-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/font/poppins-v24-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0F0F0F;
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo {
    max-width: clamp(180px, 60vw, 400px);
    width: 100%;
    height: auto;
    z-index: 10;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    user-select: none;
}

.rotating-icon {
    position: fixed;
    width: clamp(200px, 60vw, 600px);
    height: auto;
    opacity: clamp(0.25, 0.4 - 0.05vw, 0.4);
    z-index: 1;
    animation: spin 20s linear infinite;
    transform-origin: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}


.rotating-icon.left {
    top: calc(-15% - 1vw);
    left: calc(-15% - 2vw);
    transform-origin: center;
}

.rotating-icon.right {
    bottom: calc(-15% - 1vw);
    right: calc(-15% - 2vw);
    transform-origin: center;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.contact-email-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.contact-email {
    color: white;
    text-decoration: none;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.contact-email:hover {
    opacity: 1;
    transform: translateY(-1px);
}

