body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    font-family: 'Arial Black', sans-serif;
}

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

.side {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s ease;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.mc .bg { background-image: url('../image/mlobby.jpg'); }
.rp .bg { background-image: url('../image/gtalobby.jpg'); }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 0.6s ease;
}

.mc .overlay { background-color: rgba(10, 30, 15, 0.85); } 
.rp .overlay { background-color: rgba(35, 20, 10, 0.85); }

.content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.server-logo {
    width: 140px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.8));
    animation: floating 4s ease-in-out infinite;
    transition: transform 0.5s ease;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

h2 {
    font-size: 3.2rem;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    letter-spacing: 5px;
    text-shadow: 3px 3px 20px rgba(0,0,0,1);
}

.mc h2 span { 
    color: #2ecc71; 
    text-shadow: 0 0 25px rgba(46, 204, 113, 0.6); 
}
.rp h2 span { 
    color: #ff9800; 
    text-shadow: 0 0 25px rgba(255, 152, 0, 0.6); 
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 45px;
    border: 3px solid #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 2px;
    background: rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.side:hover .bg { 
    transform: scale(1.15); 
}

.mc:hover .overlay { 
    background-color: rgba(30, 132, 73, 0.4); 
    box-shadow: inset 0 0 200px rgba(0,0,0,0.9);
}

.rp:hover .overlay { 
    background-color: rgba(211, 84, 0, 0.4); 
    box-shadow: inset 0 0 200px rgba(0,0,0,0.9);
}

.side:hover .server-logo {
    transform: scale(1.1);
}

.side:hover .btn {
    background: #fff;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .container { flex-direction: column; }
    h2 { font-size: 2rem; }
    .server-logo { width: 100px; }
    .side { flex: 1; }
}