| |
|
| | * {
|
| | margin: 0;
|
| | padding: 0;
|
| | box-sizing: border-box;
|
| | }
|
| |
|
| | body {
|
| | font-family: Arial, sans-serif;
|
| | background: #101820;
|
| | color: #fff;
|
| | line-height: 1.6;
|
| | }
|
| |
|
| | a {
|
| | color: #00ffee;
|
| | text-decoration: none;
|
| | }
|
| |
|
| | a:hover {
|
| | text-decoration: underline;
|
| | }
|
| |
|
| |
|
| | header {
|
| | background: rgba(0, 0, 0, 0.85);
|
| | padding: 10px 0;
|
| | border-bottom: 2px solid #00ffee;
|
| | }
|
| |
|
| | nav {
|
| | max-width: 1200px;
|
| | margin: 0 auto;
|
| | padding: 0 20px;
|
| | }
|
| |
|
| | nav ul {
|
| | list-style: none;
|
| | padding: 0;
|
| | margin: 0;
|
| | display: flex;
|
| | flex-wrap: wrap;
|
| | justify-content: center;
|
| | gap: 10px;
|
| | }
|
| |
|
| | nav ul li {
|
| | display: inline-block;
|
| | }
|
| |
|
| |
|
| | .logo {
|
| | text-align: center;
|
| | margin: 20px 0;
|
| | }
|
| |
|
| | .logo-img {
|
| | max-width: 100%;
|
| | height: auto;
|
| | }
|
| |
|
| |
|
| | .section {
|
| | margin: 40px auto;
|
| | max-width: 900px;
|
| | padding: 32px 24px;
|
| | background: rgba(10, 20, 30, 0.92);
|
| | border-radius: 16px;
|
| | box-shadow: 0 0 24px #00ffee33;
|
| | }
|
| |
|
| | h1, h2, h3 {
|
| | margin-bottom: 20px;
|
| | color: #00ffee;
|
| | }
|
| |
|
| | h1 {
|
| | font-size: 2.5em;
|
| | }
|
| |
|
| | h2 {
|
| | font-size: 2em;
|
| | }
|
| |
|
| |
|
| | .button {
|
| | display: flex;
|
| | flex-direction: column;
|
| | align-items: center;
|
| | justify-content: center;
|
| | text-align: center;
|
| | padding: 18px 24px;
|
| | font-size: 1.3em;
|
| | min-width: 220px;
|
| | min-height: 60px;
|
| | box-sizing: border-box;
|
| | line-height: 1.2;
|
| | white-space: normal;
|
| | word-break: break-word;
|
| | background: rgba(0, 255, 255, 0.1);
|
| | color: #00ffee;
|
| | border: 2px solid #00ffee;
|
| | border-radius: 8px;
|
| | transition: all 0.3s ease;
|
| | }
|
| |
|
| | .button span, .button strong {
|
| | display: block;
|
| | width: 100%;
|
| | text-align: center;
|
| | }
|
| |
|
| | .button:hover {
|
| | background: rgba(0, 255, 255, 0.2);
|
| | color: #00ffee;
|
| | box-shadow: 0 0 10px #00ffee;
|
| | }
|
| |
|
| |
|
| | form {
|
| | display: flex;
|
| | flex-direction: column;
|
| | gap: 10px;
|
| | }
|
| |
|
| | input[type="text"] {
|
| | padding: 10px;
|
| | font-size: 1em;
|
| | border: 2px solid #00ffee;
|
| | border-radius: 8px;
|
| | background: rgba(255, 255, 255, 0.1);
|
| | color: #fff;
|
| | }
|
| |
|
| | input[type="text"]:focus {
|
| | outline: none;
|
| | border-color: #00ffee;
|
| | box-shadow: 0 0 5px #00ffee;
|
| | }
|
| |
|
| |
|
| | .phishing-result {
|
| | margin-top: 10px;
|
| | padding: 10px;
|
| | border-radius: 8px;
|
| | background: rgba(255, 255, 255, 0.1);
|
| | color: #fff;
|
| | }
|
| |
|
| |
|
| | .log-output {
|
| | background: rgba(255, 255, 255, 0.05);
|
| | padding: 10px;
|
| | border-radius: 8px;
|
| | max-height: 300px;
|
| | overflow-y: auto;
|
| | color: #00ffee;
|
| | }
|
| |
|
| |
|
| | #map {
|
| | width: 100%;
|
| | height: 400px;
|
| | min-height: 300px;
|
| | border: 1px solid #0ff;
|
| | border-radius: 8px;
|
| | margin: 0 auto;
|
| | box-sizing: border-box;
|
| | }
|
| |
|
| | .leaflet-container {
|
| | background: #101820 !important;
|
| | border-radius: 8px;
|
| | }
|
| |
|
| |
|
| | .chatbot-iframe {
|
| | width: 100%;
|
| | height: 650px;
|
| | border: none;
|
| | border-radius: 12px;
|
| | overflow: hidden;
|
| | }
|
| |
|
| |
|
| | @media (max-width: 700px) {
|
| | .section { padding: 18px 4px; }
|
| | .button { min-width: 120px; font-size: 1em; padding: 10px 8px; }
|
| | nav ul { flex-direction: column; gap: 4px; }
|
| | } |