@import url('https://fonts.googleapis.com/css2?family=Domine:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jura&display=swap');

body {
  margin: 0px;
  padding: 0px;
  background-color: #000;
  background: url("images/background/background-artwork.jpg") no-repeat top center, url("images/background/background-elements.jpg") top left repeat;
  background-size: 1920px auto, auto auto;
  color: #c4d8e8;
  font-family: "Jura", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

a {
  color: #a8c8e1;
}

a:hover {
  color: #5dade2;
}

header {
  background: linear-gradient(to right, transparent 0%, rgba(15, 27, 45, 0.95) 20%, rgba(22, 34, 56, 0.98) 50%, rgba(15, 27, 45, 0.95) 80%, transparent 100%);
  height: 64px;
  box-shadow: 0 2px 20px rgba(93, 173, 226, 0.15);
  backdrop-filter: blur(10px);
}

header .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  gap: 44px;
}

header .container div {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation-duration: 500ms;
}

header .container a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  transition: .1s;
}

header .container a:hover {
  color: #5dade2;
  /* Lodowo-niebieski kolor dla efektu arktycznego */
  text-shadow: 0 0 8px rgba(93, 173, 226, 0.8);
  /* Delikatna niebieska poświata */
}

.container {
  width: 1260px;
  margin: 0 auto;
}

/* .logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 128px 0;
} */

.logo-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 0;
  height: 400px;
  /* margin-top: -60px;
  margin-bottom: -60px; */
}

.logo {
  user-select: none;
  transform: translateY(-100px);
  pointer-events: none;
}

.wrapper {
  display: flex;
}

.sidebar {
  position: relative;
  width: 280px;
  margin-bottom: 264px;
  background: linear-gradient(145deg, #1a2847 0%, #0f1d35 50%, #1c2a4a 100%);
  /* overflow: hidden; */
  box-shadow: 0 0 30px rgba(93, 173, 226, 0.2), inset 0 0 40px rgba(93, 173, 226, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(93, 173, 226, 0.15);
}

.sidebar-left {
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.sidebar-right {
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

.sidebar-item-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  background: linear-gradient(180deg, #2a4a75 0%, #1e3a5f 50%, transparent 100%);
  box-shadow: inset 0 1px 0 rgba(93, 173, 226, 0.2);
}

.sidebar-item-header-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sidebar-item-header-title {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

.sidebar-item-header-subtitle {
  font-size: 14px;
  color: #9cc5e0;
}

.sidebar-item-header-item {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
}

.sidebar-item-content {
  padding: 25px;
  padding-top: 12px;
}

.sidebar-item-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-item-links a {
  color: #a8c8e1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 4px 0;
  font-size: 14px;
}

.sidebar-item-links a:hover {
  color: #5dade2;
  text-shadow: 0 0 5px rgba(93, 173, 226, 0.3);
  transform: translateX(5px);
}

.sidebar-item-link-arrow {
  font-size: 8px;
  color: #4a6fa5;
  transition: all 0.3s ease;
}

.sidebar-item-links a:hover .sidebar-item-link-arrow {
  color: #5dade2;
}

.content {
  position: relative;
  z-index: 1;
  width: 700px;
  padding: 25px;
  background: linear-gradient(145deg, rgba(26, 40, 71, 0.8) 0%, rgba(15, 29, 53, 0.8) 50%, rgba(28, 42, 74, 0.8) 100%);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(93, 173, 226, 0.15);
  border-left: 2px solid rgba(93, 173, 226, 0.3);
  border-right: 2px solid rgba(93, 173, 226, 0.3);
  border-bottom: 2px solid rgba(93, 173, 226, 0.3);
  box-shadow: 0 0 25px rgba(93, 173, 226, 0.15), inset 0 0 30px rgba(93, 173, 226, 0.05);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

/* Login Form Styles */
.login-input {
  width: calc(100% - 30px);
  padding: 10px 15px;
  background: linear-gradient(145deg, #2a4a75 0%, #1e3a5f 100%);
  border: 1px solid rgba(93, 173, 226, 0.4);
  box-shadow: inset 0 1px 0 rgba(93, 173, 226, 0.2), 0 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  color: #fff;
  font-family: "Jura", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.login-input:focus {
  outline: none;
  border-color: #5dade2;
  box-shadow: 0 0 8px rgba(93, 173, 226, 0.3);
}

.login-input::placeholder {
  color: #9cc5e0;
}

.button-login {
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #4a9fd9 0%, #2980b9 50%, #1f5f8b 100%);
  box-shadow: 0 4px 15px rgba(74, 159, 217, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: "Jura", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-login:hover {
  background: linear-gradient(135deg, #2980b9 0%, #4a9fd9 50%, #5dade2 100%);
  box-shadow: 0 6px 20px rgba(74, 159, 217, 0.6), 0 0 30px rgba(93, 173, 226, 0.4);
  transform: translateY(-2px);
}

.button-logout {
  width: 200px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #dc3545, #c82333);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: "Jura", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-logout:hover {
  background: linear-gradient(135deg, #c82333, #dc3545);
  box-shadow: 0 0 15px rgba(220, 53, 69, 0.5);
  transform: translateY(-2px);
}

.button-register {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border: none;
  border-radius: 4px;
  color: #fff;
  font-family: "Jura", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 8px;
}

.button-register:hover {
  background: linear-gradient(135deg, #20c997, #28a745);
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
  transform: translateY(-1px);
}

.button-account-lost {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #6c757d, #495057);
  border: none;
  border-radius: 4px;
  color: #fff;
  font-family: "Jura", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-account-lost:hover {
  background: linear-gradient(135deg, #495057, #6c757d);
  box-shadow: 0 0 10px rgba(108, 117, 125, 0.5);
  transform: translateY(-1px);
}

/* Footer Styles */
footer {
  margin-top: 100px;
  margin-bottom: 100px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section {
  flex: 1;
}

.footer-title {
  font-size: 24px;
  color: #5dade2;
  text-shadow: 0 0 10px rgba(93, 173, 226, 0.5);
  margin: 0 0 0 0;
  font-weight: 600;
}

.footer-subtitle {
  font-family: "Jura", sans-serif;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.footer-description {
  color: #b8cde0;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.footer-copyright {
  color: #a8c8e1;
  font-size: 12px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  color: #c4c4c6;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-link:before {
  content: "▶";
  position: absolute;
  left: 0;
  font-size: 8px;
  color: #4e5961;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #5dade2;
  text-shadow: 0 0 5px rgba(93, 173, 226, 0.3);
  transform: translateX(5px);
}

.footer-link:hover:before {
  color: #5dade2;
}

.NewsHeadTitle {
  font-weight: bold;
  color: #fff;
}

.sidebar-wiki-link {
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.sidebar-wiki {
  position: relative;
  height: 120px;
  background: url("images/background/background-artwork.jpg") no-repeat top center;
  background-size: cover;
  color: #c4d8e8;
  font-family: "Jura", sans-serif;
  overflow: hidden;
  transition: all 0.3s ease;
}

.sidebar-wiki-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 40, 71, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sidebar-wiki-content {
  text-align: center;
  z-index: 2;
  transition: all 0.3s ease;
}

.sidebar-wiki-title {
  display: block;
  font-size: 24px;
  color: #FFD700;
  text-shadow: 0 0 5px #FFD700;
  font-weight: 900;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sidebar-wiki-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #ddefff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.sidebar-wiki-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #e2e2e2;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.sidebar-wiki-arrow {
  font-size: 14px;
  transition: all 0.3s ease;
}

.sidebar-wiki-link:hover .sidebar-wiki {
  transform: scale(1.02);
}

.sidebar-wiki-link:hover .sidebar-wiki-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(26, 40, 71, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.sidebar-wiki-link:hover .sidebar-wiki-subtitle {
  color: #fff;
  transform: translateY(-1px);
}

.sidebar-wiki-link:hover .sidebar-wiki-cta {
  opacity: 1;
  transform: translateY(0);
}

.sidebar-wiki-link:hover .sidebar-wiki-arrow {
  transform: translateX(3px);
}

/* Table */
table {
  width: 100%;
  font-size: 14px;
}

.table-title {
  padding: 8px 10px 8px 10px;
  background: #01070d;
  color: #fff;
  font-weight: bold;
}

.static-table {
  padding: 12px 10px 12px 10px;
  margin-bottom: 20px;
  background: #141414;
}

.static-table-label {
  padding-right: 10px;
  white-space: nowrap;
}

.static-table-content {
  width: 100%;
}

.static-table-content-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.table-rows {
  background: #172c3f;
}

.table-rows tr:nth-child(odd) {
  background: #141414;
}

.table-rows tr:nth-child(even) {
  background: #242424;
}

.table-rows .static-table-label {
  padding-left: 5px;
  font-weight: bold;
}

.table-rows .static-table-content {
  padding-left: 5px;
}