body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}
.header-bar {
    background-color: black;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
}
.header-bar img {
    max-width: 100px;
    margin-right: 20px;
}
form {
    max-width: 500px;
    margin: auto;
}
.form-group {
    margin-bottom: 15px;
}
.feedback {
    max-width: 500px;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #000;
    background-color: #f8f8f8;
    text-align: center;
    border-radius: 8px;
    font-family: Helvetica;
    font-size: 18px;
    font-variant: small-caps;
}
.sponsorsbox {
    max-width: 500px;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #000;
    background-color: #f8f8f8;
    text-align: center;
    border-radius: 8px;
    font-family: Helvetica;
    font-size: 18px;
    font-variant: small-caps;
}
.sponsorstext {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: left;
    font-family: 'Georgia', serif;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.spinner-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    justify-content: center;
    align-items: center;
}
.spinner {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #007BFF;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.image-preview {
    text-align: center;
    margin-top: 20px;
}
.image-preview img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 10px;
}
.social-media {
    text-align: center;
    margin-top: 20px;
}
.social-media a {
    color: #007BFF;
    text-decoration: none;
    font-size: 20px;
}
.social-media a:hover {
    color: #0056b3;
}
.ip-info {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: gray;
}
.ad-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 15px;
    border: 1px solid #000;
    background-color: #000;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.ad-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}
.card {
    position: relative;
    overflow: hidden;
    border: 1px solid #000;
}
.card-img-top {
    max-width: 280px;
    margin: auto;
    padding: 10px; /* Added padding around the image */
}
.file-input-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;  /* Center horizontally */
    align-items: center;      /* Center vertically */
}
.file-input-button {
    width: 50%;
    text-align: center;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}
.file-input-button:hover {
    background-color: #0056b3;
}
.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.btn-submit {
    background-color: #8B0000;
    color: white;
    width: 100%;
}
.btn-submit:hover {
    background-color: #5A0000;
}
.god-mode {
    text-align: center;
    color: gold;
    font-weight: bold;
    font-size: 24px;
}
