 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('Rocklyzor.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(25px) brightness(0.6); 
    transform: scale(1.15); 
}
.main-container {
    position: relative;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}
.brand-header {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}
.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.brand-title {
    color: #ffffff;
    font-size: 4.2rem;
    font-weight: 600;
    line-height: 1;
    margin: 0 0 4px 0;
    letter-spacing: -1px;
}
.brand-subtitle {
    color: #a417e1;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
}
.loader-svg {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) scale(1.2);
}