body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: #004d40; /* Dark green background */
    color: #fff;
    text-align: center;
}

.scratch-container {
    background: #c62828; /* Festive red container */
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

h1 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    color: #ffeb3b; /* Gold text */
    margin-bottom: 0.5rem;
}

h3 {
    font-weight: normal;
    color: #e0e0e0;
    margin-top: 0;
}

.card-area {
    position: relative;
    width: 400px;
    height: 200px;
    margin: 20px auto 0;
    border: 5px solid #ffeb3b;
    border-radius: 10px;
    overflow: hidden;
}

#scratch-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="16" cy="16" r="14"/></svg>'), pointer;
}

#prize-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff; /* White background for the reveal */
    color: #004d40;
    padding: 10px;
    box-sizing: border-box;
    z-index: 1;
    font-size: 1.2rem;
    font-weight: bold;
}

#prize-message.hidden {
    display: none;
}

.coupon-code {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-top: 10px;
    padding: 5px 15px;
    background: #ffeb3b;
    color: #c62828;
    border-radius: 5px;
}
