/* ServerName Dark Fantasy Theme - Enhanced Eye Friendly Version */

:root {
  --main-bg-color: #0a1621;
  --panel-bg-color: #121e2b;
  --panel-border-color: #2a3a4a;
  --header-color: #e6b800;
  --text-color: #e6e6e6;
  --link-color: #e6b800;
  --link-hover-color: #ffcc00;
  --btn-color: #1d3246;
  --btn-hover-color: #284967;
  --btn-text-color: #e6b800;
  --separator-color: #2a3a4a;
  --accent-color: #3775ab;
}

body {
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  background-color: var(--main-bg-color);
  background-image: url('../images/backgrounds/beautiful-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 15, 35, 0.92), rgba(3, 10, 20, 0.8));
  z-index: -1;
}

/* Main Container */
.venore-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

/* Header Styles */
.venore-header {
  position: relative;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 15px;
  background: rgba(5, 15, 30, 0.5);
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.venore-logo {
  text-align: center;
  margin-bottom: 10px;
}

.venore-logo h1 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--header-color);
  margin: 0;
  text-shadow: 0 0 10px rgba(230, 184, 0, 0.5), 0 0 20px rgba(230, 184, 0, 0.3), 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
}

.venore-logo h1::before,
.venore-logo h1::after {
  content: "★";
  font-size: 1.5rem;
  vertical-align: middle;
  margin: 0 15px;
  opacity: 0.8;
}

/* Navigation */
.venore-nav {
  background: rgba(5, 15, 30, 0.7);
  border: 1px solid var(--panel-border-color);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  padding: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.venore-nav a {
  color: var(--link-color);
  text-decoration: none;
  padding: 8px 20px;
  margin: 0 5px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.venore-nav a:hover, .venore-nav a.active {
  color: var(--link-hover-color);
}

.venore-nav a:hover::after, .venore-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--link-hover-color);
  box-shadow: 0 0 8px var(--link-hover-color);
}

/* Status Display */
.venore-status {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid var(--panel-border-color);
  border-radius: 5px;
  padding: 8px 15px;
  color: var(--text-color);
}

.venore-status .status-online {
  color: #5cb85c;
  font-weight: bold;
}

.venore-status .status-offline {
  color: #d9534f;
  font-weight: bold;
}

/* Main Layout */
.venore-layout {
  display: flex;
  gap: 20px;
}

/* Sidebar Panels */
.venore-sidebar {
  width: 250px;
  flex-shrink: 0;
}

.venore-panel {
  background: rgba(5, 15, 30, 0.7);
  border: 1px solid var(--panel-border-color);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.venore-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.venore-panel-header {
  background: linear-gradient(to bottom, #1d3246, #0d1922);
  color: var(--header-color);
  font-family: 'Cinzel', serif;
  padding: 12px 15px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  border-bottom: 1px solid var(--panel-border-color);
  position: relative;
}

.venore-panel-header::before,
.venore-panel-header::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background-color: var(--header-color);
  opacity: 0.5;
}

.venore-panel-header::before {
  left: 20px;
}

.venore-panel-header::after {
  right: 20px;
}

.venore-panel-body {
  padding: 15px;
}

/* Menu Lists */
.venore-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.venore-menu-list li {
  border-bottom: 1px solid rgba(82, 75, 54, 0.3);
}

.venore-menu-list li:last-child {
  border-bottom: none;
}

.venore-menu-list li a {
  display: block;
  padding: 10px 5px;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

.venore-menu-list li a:hover, .venore-menu-list li a.active {
  color: var(--link-hover-color);
  padding-left: 12px;
  background: rgba(29, 50, 70, 0.4);
}

.venore-menu-list li a::before {
  content: '›';
  margin-right: 8px;
  color: var(--link-color);
}

/* Content Area */
.venore-content {
  flex: 1;
  background: rgba(5, 15, 30, 0.7);
  border: 1px solid var(--panel-border-color);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-height: 600px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.content-header {
  font-family: 'Cinzel', serif;
  color: var(--header-color);
  border-bottom: 1px solid var(--separator-color);
  padding-bottom: 15px;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.content-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--header-color);
}

/* Login Form */
.venore-login-form input[type="text"],
.venore-login-form input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid var(--panel-border-color);
  background-color: rgba(13, 13, 13, 0.7);
  color: var(--text-color);
  border-radius: 3px;
}

.venore-login-form input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 5px rgba(153, 92, 0, 0.5);
}

.venore-login-form .login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.venore-login-form .lost-link {
  font-size: 0.9rem;
  color: var(--link-color);
  text-decoration: none;
}

.venore-login-form .lost-link:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

/* Buttons */
.venore-btn {
  background: linear-gradient(to bottom, #1d3246, #0d1922);
  color: var(--btn-text-color);
  border: none;
  border-radius: 3px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  display: inline-block;
  text-align: center;
}

.venore-btn:hover {
  background: linear-gradient(to bottom, #284967, #1d3246);
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

/* Stats */
.venore-stat-item {
  text-align: center;
  margin-bottom: 15px;
  padding: 10px 5px;
  border-radius: 5px;
  transition: all 0.2s ease;
}

.venore-stat-item:hover {
  background: rgba(29, 50, 70, 0.4);
}

.venore-stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--header-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.venore-stat-label {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-top: 5px;
}

/* Rankings */
.venore-rankings table {
  width: 100%;
  border-collapse: collapse;
}

.venore-rankings tr {
  border-bottom: 1px solid rgba(82, 75, 54, 0.3);
  transition: all 0.2s ease;
}

.venore-rankings tr:last-child {
  border-bottom: none;
}

.venore-rankings tr:hover {
  background: rgba(29, 50, 70, 0.4);
}

.venore-rankings td {
  padding: 10px 5px;
}

.venore-player-rank {
  display: inline-block;
  width: 25px;
  color: var(--header-color);
  font-weight: bold;
}

.venore-player-name {
  font-weight: 500;
}

.venore-player-name a {
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

.venore-player-name a:hover {
  color: var(--link-hover-color);
}

.venore-player-level {
  color: #888;
  font-size: 0.9rem;
  margin-left: 5px;
}

/* Server Status */
.venore-server-status {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.venore-status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 10px;
}

.venore-status-indicator.online {
  background-color: #5cb85c;
  box-shadow: 0 0 10px #5cb85c;
}

.venore-status-indicator.offline {
  background-color: #d9534f;
  box-shadow: 0 0 10px #d9534f;
}

.venore-status-text {
  line-height: 1.3;
}

.venore-status-info {
  font-size: 0.9rem;
  color: #aaa;
}

/* Guild Items */
.venore-guild-item {
  display: flex;
  align-items: center;
  padding: 10px 5px;
  border-bottom: 1px solid rgba(82, 75, 54, 0.3);
  transition: all 0.2s ease;
}

.venore-guild-item:last-child {
  border-bottom: none;
}

.venore-guild-item:hover {
  background: rgba(29, 50, 70, 0.4);
}

.venore-guild-emblem {
  width: 40px;
  height: 40px;
  background-color: var(--panel-border-color);
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--link-color);
  font-weight: bold;
}

.venore-guild-info {
  flex: 1;
}

.venore-guild-name {
  font-weight: 500;
}

.venore-guild-kills {
  font-size: 0.9rem;
  color: #aaa;
}

/* Footer */
.venore-footer {
  text-align: center;
  padding: 30px 0 20px;
  margin-top: 30px;
  border-top: 1px solid var(--panel-border-color);
  color: #888;
  font-size: 0.9rem;
}

.venore-copyright {
  margin-bottom: 10px;
}

.designer-credit {
  color: var(--header-color);
  font-weight: 500;
  margin-top: 10px;
  font-style: italic;
  /* This CSS makes it harder to modify via inspect element */
  user-select: none;
  pointer-events: none;
  -webkit-user-select: none;
}

/* Responsive */
@media (max-width: 992px) {
  .venore-layout {
    flex-direction: column;
  }
  
  .venore-sidebar {
    width: 100%;
  }
}

/* Social Icons */
.venore-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.venore-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--btn-color);
  color: var(--btn-text-color);
  transition: all 0.3s ease;
}

.venore-social a:hover {
  background-color: var(--btn-hover-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* Logged User */
.venore-logged-user {
  text-align: center;
}

.venore-logged-user p {
  margin-bottom: 15px;
}

.venore-account-buttons {
  display: flex;
  gap: 10px;
}

.venore-account-buttons .venore-btn {
  flex: 1;
  padding: 8px 10px;
  font-size: 12px;
}

/* News Content */
.venore-news {
  position: relative;
}

.venore-news h1, .venore-news h2, .venore-news h3 {
  color: var(--header-color);
  font-family: 'Cinzel', serif;
}

.venore-page-content h1, 
.venore-page-content h2, 
.venore-page-content h3 {
  color: var(--header-color);
  font-family: 'Cinzel', serif;
}

/* Server Name Decoration */
.server-name-decoration {
  display: inline-block;
  position: relative;
}

.server-name-decoration::before,
.server-name-decoration::after {
  content: "";
  position: absolute;
  height: 3px;
  bottom: -5px;
  background: linear-gradient(to right, transparent, var(--header-color), transparent);
}

.server-name-decoration::before {
  left: 0;
  right: 55%;
}

.server-name-decoration::after {
  right: 0;
  left: 55%;
}

/* Server Status Styles */
.status-online {
    color: #4CAF50;
    font-weight: bold;
}

.status-offline {
    color: #F44336;
    font-weight: bold;
}

.status-checking {
    color: #FFC107;
    font-weight: bold;
}

.venore-status {
    margin-top: 10px;
    text-align: right;
}

.server-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 4px;
}

#PlayersOnline {
    margin-top: 10px;
    text-align: center;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
    position: absolute;
    top: 20px;
    right: 20px;
}

#players {
    font-size: 18px;
    font-weight: bold;
    color: #4CAF50;
}

/* Status Bar Styles */
.status-bar {
    position: absolute;
    top: 20px;
    right: 20px;
}

.status-bar .container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    border-radius: 4px;
}

.status-bar .item a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.label {
    display: inline-block;
    padding: 3px 6px;
    margin-left: 5px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    text-transform: uppercase;
}

.label-success {
    background-color: #4CAF50;
    color: white;
}

.label-danger {
    background-color: #F44336;
    color: white;
}

.label-sm {
    padding: 2px 4px;
    font-size: 10px;
} 