/* Global Styles */
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #ff9a9e, #fad0c4);
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    color: #fff;
    background-color: #e84393;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #d63072;
    transform: scale(1.05);
}

.romantic-btn {
    background-color: #ff7675;
}

.romantic-btn:hover {
    background-color: #e84393;
}

/* General */
.rules-list {
    text-align: left;
    margin: 20px auto;
    padding: 0;
    font-size: 1.2em;
    color: #fff;
    list-style-type: none;
}

.rules-list li {
    margin: 10px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.rules-list li:before {
    content: "🌟";
    font-size: 1.5em;
    margin-right: 10px;
}

.rules-list li:nth-child(1):before {
    content: "🎁";
}

.rules-list li:nth-child(2):before {
    content: "🔍";
}

.rules-list li:nth-child(3):before {
    content: "❤️";
}

/* Romantic container styles (reuse from index.php) */
.romantic {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.romantic h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.romantic p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
/* Message Styles */
.message {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #ff7675;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.message p {
    font-size: 1.2em;
    color: #2c3e50;
    font-weight: bold;
}

/* Button Style */
.btn {
    padding: 10px 20px;
    background-color: #ff7675;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
}

.btn:hover {
    background-color: #ff3f56;
}

/* Estilo general */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Botones */
.btn {
    padding: 10px 20px;
    background-color: #ff7675;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    margin-top: 20px;
}

.btn:hover {
    background-color: #ff3f56;
}

/* Mensaje de feedback */
.message {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #ff7675;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.message p {
    font-size: 1.2em;
    color: #2c3e50;
    font-weight: bold;
}


