* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
}

.logo-container {
    width: 360px;
    height: 360px;
    position: relative;
    margin-bottom: 20px;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: pulse 3s infinite;
}

.logo-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #2E3862;
    border-radius: 50%;
    opacity: 0;
    animation: ringPulse 3s infinite;
}

.loading-text {
    position: absolute;
    bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1);
    }
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}