@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Stardos+Stencil:wght@700&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    overflow: hidden;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    user-select: none;
    /* Mobile: Disable default touch actions like scrolling */
    touch-action: none;
    -webkit-touch-callout: none;
}

#game-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    max-height: 600px;
}

svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    cursor: crosshair;
}

.message {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    text-align: center;
    z-index: 10;
    opacity: 0;
}

.love-msg {
    font-family: 'Bangers', cursive;
    font-size: 8rem;
    color: #ff4444;
    letter-spacing: 2px;
    text-shadow: 4px 4px 0 #fff;
    transform: translate(-50%, -50%) rotate(-5deg) scale(0);
}

.miss-msg {
    font-family: 'Stardos Stencil', cursive;
    font-size: 6rem;
    color: #ddd;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* --- Graphics --- */
.bow-path {
    fill: none;
    stroke: #88ce02;
    stroke-width: 5;
    stroke-linecap: round;
}

.bow-string {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
}

.arrow-body {
    stroke: #fff;
    stroke-width: 2;
}

.arrow-head {
    fill: #88ce02;
}

.arrow-fletching {
    fill: #fff;
}

.target-white {
    fill: #f5f5f5;
    stroke: #e0e0e0;
    stroke-width: 1;
}

.target-orange {
    fill: #ff4500;
    stroke: #cc3700;
    stroke-width: 1;
}

.pivot-crosshair {
    stroke: #fff;
    stroke-width: 2;
    opacity: 0.8;
}

.trajectory-path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 2;
    stroke-dasharray: 6, 6;
    pointer-events: none;
}