body, html {
	margin: 0;
	padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.split {
    position: fixed;
    width: 52%; 
    height: 100%;
    top: 0;
    transition: 0.5s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
}

.left {
    left: 0;
    background-image: url('img/background-rage.png');
    background-size: cover; 
    background-position: center;
    clip-path: polygon(
      0 0,
      98% 0, 100% 5%, 97% 10%, 100% 15%, 98% 20%, 100% 25%, 97% 30%, 100% 35%, 98% 40%, 
      100% 45%, 97% 50%, 100% 55%, 98% 60%, 100% 65%, 97% 70%, 100% 75%, 98% 80%, 100% 85%, 97% 90%, 100% 95%, 98% 100%, 0 100%
    );
}

.right {
    left: 49.5%; 
    background-image: url('img/background-ac.png');
    background-size: cover; 
    background-position: center;
    clip-path: polygon(
      0% 0, 100% 0, 100% 100%, 0% 100%, 3% 95%, 0% 90%, 3% 85%, 0% 80%, 3% 75%, 0% 70%, 3% 65%, 0% 60%, 3% 55%, 0% 50%, 3% 45%, 0% 40%, 3% 35%, 0% 30%, 3% 25%, 0% 20%, 3% 15%, 0% 10%, 3% 5%
    );
}

.split:hover {
    filter: brightness(1.1);
    transform: scale(1.03);
}

.logo-card {
    position: absolute;
    top: 20px;
    width: 90px;
    padding: 5px;
    border-radius: 12px;
    background-color: rgba(0,0,0,0.4);
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.logo-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.split:hover .logo-card {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.8);
}

.logo-top-left { left: 20px; }
.logo-top-right { right: 50px; }

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: absolute;
    bottom: 80px;
    padding: 20px 40px;
    background: rgba(0,0,0,0.5);
    border-radius: 4px;
    backdrop-filter: blur(5px);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUpBg 1s forwards;
    animation-delay: 0.3s;
}

.split h1, .split p {
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    margin: 0;
    animation: fadeUpText 1s forwards;
}

.split h1 {
    font-size: 2em;
    animation-delay: 0.4s;
}

.split p {
    font-size: 1.2em;
    animation-delay: 0.6s;
}

@keyframes fadeUpBg {
    to {
      opacity: 1;
      transform: translateY(0);
    }
}

@keyframes fadeUpText {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    background-color: orange;
    border-radius: 50%;
    animation: blink 1.2s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}
