body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1a1a;
    font-family: 'Space Mono', monospace;
    color: #ff6b8b;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2em;
    position: relative;
}

.container::before {
    content: '{ }';
    position: absolute;
    font-size: 200px;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff6b8b;
    z-index: -1;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 2em;
    position: relative;
    display: inline-block;
}

h1::before {
    content: '<';
    position: absolute;
    left: -1em;
    color: #ff6b8b;
    opacity: 0.5;
}

h1::after {
    content: '/>';
    position: absolute;
    right: -1.5em;
    color: #ff6b8b;
    opacity: 0.5;
}

.buttons {
    display: flex;
    gap: 2em;
    justify-content: center;
    margin-top: 3em;
}

button {
    padding: 1em 2em;
    font-size: 1em;
    font-family: 'Space Mono', monospace;
    border: 2px solid #ff6b8b;
    background: transparent;
    color: #ff6b8b;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ff6b8b;
    transition: all 0.3s ease;
    z-index: -1;
}

.yes-btn:hover {
    color: #1a1a1a;
}

.yes-btn:hover::before {
    left: 0;
}

.no-btn {
    opacity: 0.7;
}

.no-btn:hover {
    opacity: 0.5;
}

/* Add some floating elements in the background */
@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100vh) rotate(360deg); }
}

.container::after {
    content: '♥';
    position: fixed;
    color: #ff6b8b;
    font-size: 20px;
    animation: float 10s linear infinite;
    opacity: 0.1;
    z-index: -1;
}

/* Add this to your HTML head section */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap'); 