body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a2e;
    color: #f5f5f5;
    line-height: 1.6;
    margin: 20px;
    padding: 0;
}

header {
    background-color: #0f3460;
    color: #f5f5f5;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 0 20px #16213e;
}

h1 {
    font-size: 2.5em;
    margin: 0;
    color: #e94560;
}

h2 {
    font-size: 1.5em;
    margin: 0;
    color: #00bcd4;
}

h3 {
    color: #00bcd4;
}

section {
    margin: 20px 0;
    background-color: #16213e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table, th, td {
    border: 1px solid #444;
}

th {
    background-color: #0f3460;
    color: #f5f5f5;
}

th, td {
    padding: 10px;
    text-align: left;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: #1a1a2e;
    color: #f5f5f5;
}

form input[type="submit"] {
    background-color: #e94560;
    color: white;
    border: none;
    padding: 12px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
    background-color: #ff2e63;
}

a {
    color: #00f2ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 30px;
    color: #888;
}

img {
    display: block;
    margin: 0 auto;
    width: 300px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(225, 177, 44, 0.4);
}

img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.7);
}

