body {
margin: 0;
padding: 0;
color: #fff;
font-family: 'ABeeZee', sans-serif;
}
form {
background: transparent;
margin: 0;
padding: 0;
} .battle-container {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: stretch;
width: 100%;
max-width: 1200px;
margin: 0 auto;
gap: 0;
background: transparent;
padding: 0;
box-sizing: border-box;
position: relative;
} .vote-side {
flex: 1;
display: flex;
flex-direction: column;
justify-content: stretch;
align-items: center;
background: #111;
margin: 0;
padding: 0;
box-sizing: border-box;
overflow: hidden;
} .vote-content {
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
width: 100%;
overflow: hidden;
} .vote-content a {
flex: 1;
display: block;
overflow: hidden;
} .vote-side img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
margin: 0;
flex-shrink: 0;
} .statistics {
background: rgba(255, 255, 255, 0.07);
color: #ffb6c1;
font-size: 1em;
padding: 8px 10px;
width: 100%;
text-align: center;
box-sizing: border-box;
margin: 0;
flex-shrink: 0;
font-weight: bold;
font-family: 'ABeeZee', sans-serif;
} .votebutton {
width: 100%;
border: none;
padding: 20px;
font-size: 2em;
background-color: #ff4d6d;
color: #fff;
cursor: pointer;
margin: 0;
box-sizing: border-box;
flex-shrink: 0;
font-family: 'ABeeZee', sans-serif;
font-weight: 700;
border-radius: 0;
transition: background 0.3s ease;
}
.votebutton:hover {
background-color: #c2185b;
} .vote-side.left {
border-top-left-radius: 12px;
border-bottom-left-radius: 12px;
}
.vote-side.right {
border-top-right-radius: 12px;
border-bottom-right-radius: 12px;
}
.vote-side.left .votebutton {
border-radius: 0 0 0 12px;
}
.vote-side.right .votebutton {
border-radius: 0 0 12px 0;
} .vs-banner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(-10deg);
background: linear-gradient(to right, #ff4d6d, #c2185b);
color: white;
font-family: 'ABeeZee', sans-serif;
font-weight: bold;
font-size: 1.4em;
padding: 10px 28px;
border-radius: 50px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
z-index: 10;
pointer-events: none;
text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
letter-spacing: 1px;
} @media screen and (max-width: 768px) {
.battle-container {
flex-direction: row;
}
.vote-side img {
max-height: 60vh;
}
.vs-banner {
font-size: 1em;
padding: 8px 20px;
}
.votebutton {
font-size: 1.5em;
padding: 16px;
}
} .hover-preview {
position: relative;
display: inline-block;
}
.hover-preview .full-preview {
display: none;
position: absolute;
top: 0;
left: 100%;
z-index: 1000;
background: rgba(0, 0, 0, 0.85);
padding: 4px;
border: 2px solid #fff;
border-radius: 6px;
max-width: 90vw;
max-height: 90vh;
}
.hover-preview .full-preview img {
max-width: 400px;
max-height: 600px;
display: block;
}
.hover-preview:hover .full-preview {
display: block;
}
.gallery-link-container {
text-align: center;
margin-top: 20px;
}
.gallery-link-button {
padding: 12px 24px;
font-size: 1.3em;
font-weight: bold;
background-color: #e91e63; color: #fff;
border: none;
border-radius: 6px;
font-family: 'ABeeZee', sans-serif;
cursor: pointer;
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
transition: background-color 0.3s ease;
}
..gallery-link-button:hover {
background-color: #c2185b;
}