body {
    background-color: #1a1a1a;
    color: #39ff14;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px 0 20px 0;
}

.logo-container img {
    width: 500px;
    height: 500px;
    object-fit: contain;
}

.welcome-text {
    text-align: center;
    font-size: 2rem;
    color: #39ff14;
    margin: 20px 0;
    padding: 0 20px;
}

.button-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.button-row button {
    background-color: #FFD700;
    color: #000000;
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.button-row button:hover {
    background-color: #DAA520;
    border-color: #DAA520;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.4);
}

.button-row button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.4);
}

/* Privacy Modal Styles */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.privacy-content {
    color: #000;
    text-align: left;
}

.privacy-content h2 {
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.privacy-content p, .privacy-content li {
    color: #000;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-content a {
    color: #0066cc;
    text-decoration: underline;
}

.privacy-content a:hover {
    color: #004499;
}

.close-privacy {
    background-color: #FFD700;
    color: #000000;
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 20px auto 0;
    min-width: 100px;
}

.close-privacy:hover {
    background-color: #DAA520;
    border-color: #DAA520;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.4);
}

/* Modal styles for pop-up forms */
.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.5);
}

.modal-content {
    background-color: #d3d3d3;
    margin: 10% auto;
    padding: 20px;
    border: 3px solid #39ff14;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.close-modal {
    color: #000;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 5px;
    line-height: 1;
}

.close-modal:hover {
    color: #39ff14;
}

.modal h2 {
    margin-top: 0;
    color: #000;
    text-align: center;
    border-bottom: 2px solid #39ff14;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #000;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 2px solid #39ff14;
    border-radius: 5px;
    background-color: white;
    color: #000;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #2dd60f;
    box-shadow: 0 0 5px rgba(57, 255, 20, 0.3);
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}

.form-actions button {
    padding: 10px 20px;
    margin: 0 5px;
    border: 2px solid #39ff14;
    border-radius: 5px;
    background-color: #39ff14;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-actions button:hover {
    background-color: #2dd60f;
    transform: translateY(-1px);
}

.form-actions button[type="button"] {
    background-color: transparent;
    color: #000;
}

.form-actions button[type="button"]:hover {
    background-color: #39ff14;
    color: #000;
}

.recaptcha-container {
    text-align: center;
    margin: 15px 0;
}