/* Add this new block to style.css */
.gift-reveal-image {
    width: 100px; 
    height: auto;
    margin: 20px auto;
    display: block; /* Make it centered and separate */
}

/* Add this new block to style.css */
.puzzle-icon {
    width: 60px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 25px;
    opacity: 0.8; /* Make it slightly transparent for subtlety */
}

:root {
    /* Sleek Colors */
    --main-text: #333;
    --background-color: #F8F8F8;
    --highlight-color: #B0C4DE; /* Light slate blue for a cool, modern feel */
    --accent-color: #007BFF; /* A clean blue for the button */
    --error-color: #CC0000;
}

body {
    /* Use the new sleek font */
    font-family: 'Montserrat', sans-serif; 
    background-color: var(--background-color);
    color: var(--main-text);
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    transition: background-color 1s ease; /* Smooth background transition on unlock */
}

.hidden {
    display: none !important;
}

/* --- PUZZLE CONTAINER STYLING --- */

#puzzle-container {
    max-width: 500px;
    width: 90%;
    padding: 20px;
}

.riddle-text {
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.4;
}

.input-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#password-input {
    flex-grow: 1;
    padding: 15px;
    border: none;
    border-bottom: 2px solid var(--highlight-color);
    background: transparent;
    font-size: 1.2em;
    font-family: inherit;
    text-align: center;
    transition: border-bottom-color 0.3s;
    outline: none;
    max-width: 300px;
}

#password-input:focus {
    border-bottom-color: var(--accent-color);
}

#submit-button {
    background-color: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%; /* Makes it a circle */
    cursor: pointer;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, transform 0.2s;
}

#submit-button:hover {
    background-color: #0056b3;
}

#submit-button:active {
    transform: scale(0.95);
}

.arrow-icon {
    display: inline-block;
    transform: translateX(2px); /* Nudge the arrow slightly */
}

#error-message {
    color: var(--error-color);
    font-weight: 600;
    margin-top: 20px;
    font-size: 1em;
}


/* --- GIFT CONTAINER STYLING (To make the reveal feel different) --- */

#gift-container {
    /* Fill the page on reveal */
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; /* Clean white background for the content */
    padding: 40px;
    overflow-y: auto; /* Allow scrolling if content is long */
}

#gift-container header h2 {
    color: var(--accent-color);
    font-size: 2.5em;
    margin-top: 0;
}

.domain-name-tag {
    font-size: 2em;
    font-weight: 600;
    color: var(--error-color); /* Use a strong color for the domain name */
    background-color: #FFFACD; /* Light yellow background */
    padding: 15px 30px;
    border-radius: 10px;
    display: inline-block;
    margin: 20px auto;
}

.next-steps {
    max-width: 500px;
    margin: 40px auto;
    text-align: left;
}

/* Retain the script.js logic from the previous answer */