/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: white;

}

/* Loading screen styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

#loader-circle {
    fill: none;
    stroke: #78e51e;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transform-origin: center;
}

.loader-logo {
    position: relative;
    width: 80%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.loader-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.8);
}

.loader-text {
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
}

/* Main content styles */
.content {
    min-height: 100vh;
    padding: 2rem;
}
