File size: 3,208 Bytes
53249d6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
/* Reset some default styles */
* {
  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 styles */
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 styles */
.logo {
  text-align: center;
  margin: 20px 0;
}

.logo-img {
  max-width: 100%;
  height: auto;
}

/* Section styles */
.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 styles */
.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 styles */
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 styles */
.phishing-result {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Log output styles */
.log-output {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 8px;
  max-height: 300px;
  overflow-y: auto;
  color: #00ffee;
}

/* Map styles */
#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 styles */
.chatbot-iframe {
  width: 100%;
  height: 650px;
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

/* Media queries */
@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; }
}