:root {
    --primary-color: #EF3F54;
    --bg-color: #000000;
    --text-color: #ffffff;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.page-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
}

.hero {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
}

/* Animated background effect */
.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(239, 63, 84, 0.05) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.content {
    z-index: 1;
}

.logo {
    width: 300px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(239, 63, 84, 0.4));
}

.brand {
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.tagline {
    font-size: 2rem;
    font-weight: 300;
    margin-top: 0;
    opacity: 0.9;
    letter-spacing: 1px;
}

.footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    font-size: 0.8rem;
    opacity: 0.5;
    z-index: 1;
}

#blazor-error-ui {
    background: #333;
    color: #fff;
    bottom: 0;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}