:root {
    --pro-bg: #111111;
    --hobby-bg: #f8f9fa;
    --accent: #d4af37; /* Elegáns arany vagy bármi, ami tetszik */
}
body, html {
    margin: 0; padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}
/* Floating Header */
.main-header {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    pointer-events: none; /* Átkattintható maradjon az alatta lévő rész */
}
.brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 8px;
    color: white;
    mix-blend-mode: difference; /* Trükk: fekete felett fehér, fehér felett fekete lesz! */
}
.tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent);
    margin-top: 5px;
}
/* Split Container */
.split-container {
    display: flex;
    height: 100vh;
    position: relative;
}
.split {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    position: relative;
}
.pro-side { background: var(--pro-bg); color: white; }
.hobby-side { background: var(--hobby-bg); color: #222; }
/* The Center Badge */
.center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
}
.circle-text {
    width: 100px;
    height: 100px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: black;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
    transition: all 0.5s;
}
.split:hover { flex: 1.2; }
/* Content Styling */
.content h1 {
    font-size: 5rem;
    margin: 0;
    letter-spacing: 10px;
}
.label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    opacity: 0.6;
}