/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

/* Split Styles */
.split {
    position: absolute;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: all 0.5s ease;
}

.split.left {
    left: 0;
    right: auto;
    background: linear-gradient(135deg, #000428, #004e92);
    background-size: cover;
}

.split.right {
    left: auto;
    right: 0;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    background-size: cover;
}

/* Particles Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Grid Effect for Retro Side */
.split.left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(33, 36, 45, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(33, 36, 45, 0.5) 1px, transparent 1px);
    background-size: 30px 30px;
    perspective: 500px;
    transform: rotateX(45deg) scale(2);
    z-index: 2;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}

.split.left .overlay {
    background: rgba(0, 0, 0, 0.4);
}

.split.right .overlay {
    background: rgba(255, 255, 255, 0.8);
}

/* Content Styles */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    z-index: 10;
}

/* Left Side - Retro Cyberpunk Style */
.split.left .content {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

.split.left h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #0ff;
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff;
}

.split.left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f0f;
}

.retro-btn {
    background: linear-gradient(to right, #ff00ff, #00ffff);
    color: #000;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    padding: 12px 30px;
    border-radius: 0;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.retro-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 255, 1), 0 0 40px rgba(0, 255, 255, 0.8);
}

/* Right Side - Modern Clean Style */
.split.right .content {
    color: #333;
}

.split.right h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.split.right p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.modern-btn {
    background: #333;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.modern-btn:hover {
    background: #555;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Button Styles */
.btn {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

/* Hover Effects - Desktop Only */
@media (min-width: 801px) {
    /* When right side is hovered */
    .split.right:hover {
        width: 55%;
    }
    
    .split.right:hover + .split.left {
        width: 45%;
    }
    
    /* When left side is hovered */
    .split.left:hover {
        width: 55%;
    }
    
    /* Since left comes after right in the HTML, we need to use JavaScript for this effect */
}

/* Footer - Preserving your custom styling */
.footer {
    position: fixed;
    bottom: 0;
    left: 15px;
    text-align: left;
    padding: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0);
    z-index: 20;
}

/* Media Queries */
@media (max-width: 800px) {
    .split.left, .split.right {
        position: absolute;
        width: 100%;
        height: 50%;
        left: 0;
        right: 0;
    }
    
    .split.left {
        top: 50%;
        bottom: 0;
    }
    
    .split.right {
        top: 0;
        bottom: auto;
    }
    
    /* Mobile Hover Effects */
    .split.left:hover {
        height: 55%;
        top: 45%;
    }
    
    .split.right:hover {
        height: 55%;
    }
} 