:root {
    --card-bg: rgba(22, 31, 51, 0.45);
    --accent-glow: #38bdf8;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(56, 189, 248, 0.25);
}

body {
    margin: 0;
    padding: 0;
    color: var(--text-main);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    background-color: #0b0f19;
}

.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    z-index: -2;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 15, 25, 0.5);
    z-index: -1;
}

.layout-wrapper {
    display: flex;
    flex-direction: row; /* Viktig: tvinger dem på samme linje horisontalt */
    justify-content: center;
    align-items: flex-start; /* Holder dem på linje i toppen */
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 0 30px rgba(56, 189, 248, 0.15);
    position: relative;
    z-index: 1;
    overflow: hidden;
}


.main-container {
    padding: 2.5rem 3rem;
    min-width: 570px ;
    max-width: 620px;
    width: 90%;
    text-align: center;
    margin-top: 19rem;
    margin-right: 1rem;
    transform: translateX(+50px);
}

.right-menu {
    padding: 3rem 2.5rem;
    width: 223px;
    min-width: 610px;
    max-width: 610px;
    min-height: 800px;
    text-align: left;
    transform: translateX(+50px);
}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #38bdf8, #818cf8, #c084fc);
    z-index: 2;
}

.main-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #c084fc, #818cf8, #38bdf8);
    box-shadow: 0 0 15px #c084fc, 0 0 30px #38bdf8;
    z-index: 2;
}

p.subtitle {
    color: var(--accent-glow);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

.lore {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: normal;
    margin-bottom: 1.5rem;
}

.lore2 {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}