/* Import Roboto Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

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

body {
    background-color: #1e1e1e;
    color: #f0f0f0;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    padding: 20px;
}

/* Headings */
h1, h2, h3, h4 {
    font-weight: 500;
    color: #f0f0f0;
    margin-bottom: 20px;
    text-align: center;
}

/* Paragraphs */
p {
    margin-bottom: 12px;
}

/* Accent Strong Text */
strong {
    color: #ae946d;
    font-weight: 500;
}

/* Card Style */
.card {
    background-color: #2a2a2a;
    padding: 10px;
    border-radius: 4px;
    max-width: 500px;
    margin: 0 auto 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    border: 1px solid #3a3a3a;
}

/* Button Base */
button, .btn {
    display: inline-block;
    background-color: #ae946d;
    color: #fff;
    padding: 10px 18px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
    margin-top: 10px;
}

.btn-green {
    background-color: #4caf50;
    color: white;
}

.btn-red {
    background-color: #f44336;
    color: white;
}

.btn-grey {
    background-color: #555;
    color: white;
}

.btn:hover {
    filter: brightness(1.1);
}

/* Info Box */
.info-box {
    background-color: #2f2f2f;
    border-left: 2px solid #ae946d;
    padding: 10px;
    margin: 10px auto;
    color: #f0f0f0;
}

/* Error Text */
.error-text {
    color: #ff4c4c;
    font-weight: 500;
    margin-top: 10px;
}

/* Links */
a {
    color: #ae946d;
    text-decoration: none;
}

/* Forms */
form {
    margin-top: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 16px;
    border: 1px solid #444;
    background-color: #1e1e1e;
    color: #f0f0f0;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #ae946d;
    background-color: #252525;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1;}
}

/* Clock box */
.clock-box {
    padding: 0.5rem 1rem;
    background-color: #2c2c2c;
    border-left: 2px solid #4caf50;
    font-family: monospace;
    color: #c3ffc3;
    display: inline-block;
}

/* Styled list */
ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

ul li {
    margin-bottom: 0.6rem;
    padding-left: 0.5rem;
    position: relative;
    line-height: 1.4;
}

ul li::before {
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
    top: 0;
}

/* Responsive */
@media (max-width: 620px) {
    .card, .info-box {
        width: 95%;
    }

    button, .btn {
        width: 100%;
    }

    body {
        padding: 12px;
    }
}
