/* --- Estilos Generales --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.container { max-width: 600px; width: 100%; }
.logo { max-width: 150px; margin-bottom: 30px; }
h1 { font-size: 2.5em; font-weight: 700; margin-bottom: 15px; line-height: 1.2; }
p { font-size: 1.1em; color: #cccccc; margin-bottom: 30px; line-height: 1.6; }
span.highlight { color: #FF6600; }
.main-button { padding: 15px 30px; font-size: 1.2em; font-weight: 600; color: #ffffff; background-color: #FF6600; border: none; border-radius: 8px; cursor: pointer; transition: background-color 0.3s ease; }
.main-button:hover { background-color: #e65c00; }
.social-links { margin-top: 40px; }
.social-links a { color: #cccccc; font-size: 1.8em; margin: 0 15px; transition: color 0.3s ease; }
.social-links a:hover { color: #FF6600; }

/* --- Estilos del Modal (Popup) --- */
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.7); }
.modal-content { background-color: #2c2c2c; margin: 10% auto; padding: 30px; border: 1px solid #888; width: 90%; max-width: 500px; border-radius: 10px; position: relative; }
.close-btn { color: #aaa; float: right; font-size: 28px; font-weight: bold; position: absolute; top: 10px; right: 20px; }
.close-btn:hover, .close-btn:focus { color: #fff; text-decoration: none; cursor: pointer; }
.modal-content h2 { margin-top: 0; color: #FF6600; }
.modal-form input, .modal-form select { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #555; background-color: #333; color: #fff; border-radius: 5px; box-sizing: border-box; }
.modal-form button { width: 100%; padding: 15px; background-color: #FF6600; color: white; border: none; border-radius: 5px; cursor: pointer; font-size: 1.1em; font-weight: 600; }
.terms { display: flex; align-items: center; margin-bottom: 20px; text-align: left; }
.terms input { width: auto; margin-right: 10px; }
.terms label { font-size: 0.9em; color: #ccc; }
#modal-message { margin-top: 15px; font-weight: 600; }