:root {
    --pc-color: #00d4ff;
    --mobile-color: #ff0055;
    --bg-dark: #0a0a0a;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    overflow: hidden; /* Prevents scrolling on the hub page */
}

.split-container {
    display: flex;
    height: 100%;
    width: 100%;
}

.split {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* PC Side Styles */
.left {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('pc-bg.jpg'); /* Add a PC game screenshot here */
    background-size: cover;
    background-position: center;
    border-right: 1px solid #333;
}

/* Mobile Side Styles */
.right {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('mobile-bg.jpg'); /* Add a Mobile game screenshot here */
    background-size: cover;
    background-position: center;
}

.content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -2px;
    text-transform: uppercase;
}

p {
    font-size: 1.1rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.button {
    margin-top: 20px;
    padding: 12px 30px;
    border: 2px solid white;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

/* Hover Effects */
.split:hover {
    flex: 1.5; /* Makes the hovered side wider */
}

.left:hover { background-color: rgba(0, 212, 255, 0.2); }
.right:hover { background-color: rgba(255, 0, 85, 0.2); }

.split:hover .button {
    background: white;
    color: black;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }
    h1 { font-size: 2.5rem; }
}