* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #0f1115;
    color: #eaeaea;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

.contact-container {
    max-width: 850px;
    margin: auto;
    padding: 30px 20px;
}

h1 {
    text-align: center;
    color: #ff4757;
    margin-bottom: 15px;
}

.intro {
    text-align: center;
    color: #ccc;
    margin-bottom: 25px;
}

/* Email box */
.email-box {
    background: #161920;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
}

.email-box a {
    display: inline-block;
    margin-top: 8px;
    color: #1e90ff;
    font-weight: bold;
    text-decoration: none;
}

/* Disclaimer */
.disclaimer {
    background: #1e222b;
    padding: 20px;
    border-left: 4px solid #ff4757;
    border-radius: 8px;
    margin-bottom: 40px;
}

.disclaimer h2 {
    color: #ffa502;
    margin-bottom: 10px;
}

.disclaimer p {
    margin-bottom: 10px;
    color: #ddd;
}

.thanks {
    font-weight: bold;
    color: #fff;
}

/* Footer */
footer {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    margin: 0 8px;
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ff4757;
}

/* Mobile */
@media (max-width: 600px) {
    h1 {
        font-size: 22px;
    }
}
