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

body, html {
    background-color: #000000; 
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

#bgCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.center-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

/* Minimalist Cinematic Border container */
.premium-border {
    position: relative;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.4) 100%);
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 
                0 0 30px rgba(255, 255, 255, 0.1); 
    animation: slowFloat 10s ease-in-out infinite;
}

@keyframes slowFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.card-content {
    background: rgba(5, 5, 5, 0.4); 
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 3px;
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: inset 0 0 80px rgba(0,0,0,0.9);
    min-width: 400px;
}

.brand-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    margin-bottom: 2.5rem;
}

.brand-logo {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.brand-text {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    margin-right: -0.3em;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.separator {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
    margin-bottom: 2.5rem;
}

.title {
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 0.8em;
    margin-right: -0.8em;
    color: #e0e0e0;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}