/* General Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff;
    color: #333;
}

header.banner {
    background-color: rgb(22, 24, 35);
    color: #fff;
    text-align: center;
}

header.banner .logo {
    width: 4em;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

header.banner h1 {
    display: inline;
    font-size: 3em;
    vertical-align: middle;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    color: #2c3e50;
    margin-top: 20px;
    font-size: 2em;
}

p {
    color: #34495e;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    margin-right: 10px;
}

button {
    padding: 10px 20px;
    background-color: rgb(254, 44, 85);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: #2980b9;
}

/* Status Message */
#status {
    color: red;
    font-weight: bold;
}

/* Ads Section */
.ads {
    margin: 20px 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal p {
    padding: 0;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Instructions Section */
.instructions {
    background-color: #e8f4f8;
    border: 1px solid #3498db;
    border-radius: 10px;
    padding: 1em;
    margin-top: 1em;
}

.instructions p {
    font-size: 1.2em;
    font-weight: bold;
    color: #2c3e50;
}

.instructions > ul li {
    margin-top: 1em;
}

/* Responsive Styles */
@media (max-width: 600px) {
    h2 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }

    .form-group {
        flex-direction: column;
    }

    input[type="text"] {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    button {
        width: 100%;
    }

    .modal-content {
        width: 90%;
    }
}