body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; text-align: center; padding: 50px; background-color: #f4f4f9; color: #333; }

/* The "Demo" Warning Banner */
.demo-banner {
    background-color: #f39c12;
    color: white;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-weight: bold;
    font-size: 0.9em;
    letter-spacing: 1px;
}

h1 { color: #2c3e50; font-size: 3.5em; margin-bottom: 10px; margin-top: 40px; }
h2 { color: #7f8c8d; font-size: 1.5em; font-weight: 300; margin-top: 0; }

.search-container { margin-top: 40px; }
input[type=text] {
    padding: 15px;
    font-size: 1.2em;
    border: 2px solid #ddd;
    width: 60%;
    border-radius: 25px;
    outline: none;
    transition: 0.3s;
}
input[type=text]:focus { border-color: #2c3e50; box-shadow: 0 0 10px rgba(0,0,0,0.1); }

button {
    padding: 15px 30px;
    font-size: 1.2em;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-left: 10px;
    transition: 0.3s;
}
button:hover { background-color: #34495e; transform: scale(1.05); }

/* The Result Box */
#result-box {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    display: none;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
.safe { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.scam { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* "Coming Soon" Explainer */
.coming-soon {
    margin-top: 60px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    color: #777;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.coming-soon h3 { color: #2c3e50; }
