@charset "utf-8";
/* 
Diablo Layout By Bufo 
(c) Bufo Studio. All rights reserved.
*/

/* 
===================================
General CSS Settings 
===================================
*/

/* Reset margins and paddings */
* {
  margin: 0;
  padding: 0;
}

/* Link styles */
a {
  text-decoration: none;
  color: #d1d1d1;
  transition: color 0.3s ease; /* Dodano p ynne przej cie koloru */
}

a img {
  border: 0;
}

a:focus {
  outline: none;
}

a:hover {
  color: white;
}

/* General object styling */
object {
  outline: none;
}

/* Paragraph styles */
p {
  margin: 1.5em 0;
  line-height: 1.6; /* Dodano dla lepszej czytelno ci tekstu */
}

p.lead {
  margin-top: 0;
}

/* Double emphasis */
em em {
  font-style: normal;
}

/* Utility classes */
.relative {
  position: relative;
}

.left {
  float: left;
}

.right {
  float: right;
}

/* Spacers */
.clean_5 {
  height: 5px;
  width: 100%;
  clear: both; /* U yto zamiast float dla lepszej semantyki */
}

.clean_20 {
  height: 20px;
  width: 100%;
  clear: both; /* U yto zamiast float */
}

/* 
===================================
Optional Improvements:
- Dodanie zmiennych CSS dla kolor w (je li planujesz sp jny branding)
- Rozwa  u ycie Flexboxa lub Grida zamiast float
===================================
*/

/* ########################################## */
/* ####### Efficient LASTEST NEW ########## */
/* ########################################## */

/* Fire-like pulsating effect */
@keyframes fieryPulse {
  0% {
    color: #ff4500; /* Pomara czowo-czerwony */
    transform: scale(1);
    opacity: 1;
    text-shadow:
      0 0 1px #ff4500,
      0 0 3px #ff4500,
      0 0 7px #ff6347; /* Zmniejszona aureola */
  }
  25% {
    color: #ff6347; /* Czerwony odcie  */
    transform: scale(1.2);
    opacity: 1;
    text-shadow:
      0 0 2px #ff6347,
      0 0 5px #ff4500,
      0 0 10px #ff6347; /* Zmniejszona aureola */
  }
  50% {
    color: #ff4500; /* Ogie  */
    transform: scale(1.3);
    opacity: 0.8;
    text-shadow:
      0 0 3px #ff4500,
      0 0 7px #ff6347,
      0 0 15px #ff6347; /* B ysk z mniejszymi cieniami */
  }
  75% {
    color: #ff6347; /* Czerwony ogie  */
    transform: scale(1.2);
    opacity: 1;
    text-shadow:
      0 0 2px #ff6347,
      0 0 5px #ff4500,
      0 0 10px #ff6347; /* Zmniejszona aureola */
  }
  100% {
    color: #ff4500; /* Ogie  powraca */
    transform: scale(1);
    opacity: 1;
    text-shadow:
      0 0 1px #ff4500,
      0 0 3px #ff4500,
      0 0 7px #ff6347; /* Zmniejszona aureola */
  }
}

.fiery-text {
  font-family: "Creepster", "Rubik Burned", "Bangers", cursive;
  font-weight: normal; /* Creepster i tak ma grubą kreskę */
  font-size: 0.8rem; /* Zwiększona nieco dla lepszej widoczności */
  animation: fieryPulse 1.2s ease-in-out infinite;
  color: red;
  letter-spacing: 0.1em; /* Mniejsze rozstawienie dla czytelności */
  -webkit-text-stroke: 0.3px black; /* Kontur poprawiający widoczność */
  text-shadow: none; /* Domyślny cień usunięty – używamy z animacją */
}

/* ########################################## */
/*  ###### START OF COUNTDOWN EFFECT ######  */
/* ########################################## */

#timer {
  font-size: 40px;
  font-weight: 400;
  color: white;
  padding-left: 20px;
  width: 420px;
  color: #000;
  text-shadow: none;
}

#timer div {
  display: inline-block;
  width: 71px;
  height: 80px;
  padding: 10px;
  background: url(/layouts/dbrebirth/images/cout_kul.png);
  background-repeat: no-repeat;

  text-align: center;
  filter: drop-shadow(0px 0px 6px #ffc434);
}

#timer div span {
  text-align: center;
  color: #000;
  display: block;
  font-size: 0.35em;
  font-weight: 400;
}

/* ########################################## */
/*  ############# NEWS INFO #############  */
/* ########################################## */

.section-title,
.wodbo-announcement .section-title {
  color: #4fc3f7;
  font-size: 26px; /* Increased font size for better readability */
  margin-top: 30px; /* Increased top margin for better spacing */
  margin-bottom: 20px; /* Increased bottom margin for balance */
  border-bottom: 2px solid #7986cb; /* Thicker light indigo border for stronger emphasis */
  padding-bottom: 8px; /* Increased padding for cleaner separation */
  text-shadow: 0px 0px 12px rgba(79, 195, 247, 0.5); /* Stronger subtle glow effect */
}

.important-note,
.wodbo-announcement .important-note {
  background-color: rgba(
    34,
    40,
    49,
    0.9
  ); /* Slightly darker gray for improved contrast */
  padding: 20px; /* More padding for better content breathing space */
  border-radius: 8px; /* Rounded corners for a smoother look */
  margin: 25px 0; /* Increased margin for better separation */
  border: 2px solid #7986cb; /* Thicker light indigo border */
  box-shadow: 0 0 15px rgba(79, 195, 247, 0.4); /* Enhanced blue glow for more impact */
  color: #e0e0e0; /* Light gray text for better contrast */
  font-size: 16px; /* Slightly larger font size for readability */
}

.important-note ul li,
.wodbo-announcement .important-note ul li {
  color: #e0e0e0; /* Light gray text */
  margin-bottom: 10px; /* Increased margin for list spacing */
  font-size: 16px; /* Uniform font size for list items */
}

.important-note strong,
.wodbo-announcement .important-note strong {
  color: #263238; /* Brighter blue for emphasis */
  font-weight: bold;
  font-size: 18px; /* Slightly larger bold text for stronger emphasis */
}

.sites-list,
.wodbo-announcement .sites-list {
  background-color: rgba(
    34,
    40,
    49,
    0.9
  ); /* Slightly darker gray with transparency */
  padding: 20px; /* Increased padding for better content spacing */
  border-radius: 8px; /* Rounded corners */
  margin-bottom: 25px; /* Increased margin for better separation */
  border: 2px solid #7986cb; /* Thicker light indigo border */
  box-shadow: 0 0 15px rgba(79, 195, 247, 0.4); /* Enhanced subtle blue glow */
}

.sites-list a,
.wodbo-announcement .sites-list a {
  color: #4fc3f7; /* Brighter blue */
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease; /* Smooth transition for hover effect */
  font-size: 16px; /* Slightly larger font size for readability */
}

.sites-list a:hover,
.wodbo-announcement .sites-list a:hover {
  color: #81d4fa; /* Lighter blue on hover */
  text-decoration: underline;
  transform: scale(1.05); /* Slight scaling effect for interactivity */
}

.footer,
.wodbo-announcement .footer {
  color: #b0bec5; /* Blue-gray text */
  text-shadow: 0px 0px 8px rgba(176, 190, 197, 0.4); /* Subtle glow with a larger radius */
  font-size: 14px; /* Slightly larger text for readability */
  padding: 10px 0; /* Added vertical padding for spacing */
  text-align: center; /* Centered footer text */
}

/* ########################################## */
/*  ############# EVENT INFO #############  */
/* ########################################## */

#ppointEvent {
  background: #f8d00010 url(../resource/pp_event.png) no-repeat;
  background-position: center top 11px;
  width: 410px;
  min-height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-variant: small-caps;
  font-family: "Josefin Sans";
  font-weight: 400;
  font-size: 14px;
  box-shadow: 0 0px 4px #f8d00050;
  border-radius: 4px;
  margin-top: 10px;
  margin-bottom: 10px;
}

#ppointEvent .tutles {
  font-weight: 600;
  font-size: 18px;
  color: #f1c40f;
  margin-top: 5px;
  animation: blinker 1s linear 1;
}

#ppointEvent .desc {
  margin-top: 0px;
  font-weight: 600;
  font-size: 16px;
  color: #38ec1b;
}

#ppointEvent .desc img {
  max-width: 16px;
  position: relative;
  top: 2px;
  left: -2px;
}

#contestdiv {
  background: #333333 url(/layouts/dbrebirth/images/cont_t.png) no-repeat center
    top 50px;
  width: 495px;
  min-height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-variant: small-caps;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  box-shadow: 0 0 8px rgba(18, 191, 83, 0.3);
  border-radius: 8px;
  padding: 12px 20px 20px;
  color: #fff;
  transition: box-shadow 0.3s ease;
  margin: 0 auto;
}

#contestdiv:hover {
  box-shadow: 0 0 12px rgba(18, 191, 83, 0.6);
}

#contestdiv .tutles {
  font-weight: 600;
  font-size: 18px;
  color: #e1ffe1;
  margin-top: 8px;
  animation: blinker2 1.5s linear infinite;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

#contestdiv .desc {
  margin-top: 6px;
  font-size: 13px;
  color: #d7f7d7;
  max-width: 90%;
  text-align: center;
}

#contestdiv .desc i {
  font-weight: 300;
  font-size: 12px;
  font-style: italic;
  color: #a0dba0;
}

#contestdiv .desc img {
  max-width: 16px;
  position: relative;
  top: 2px;
  left: -3px;
  vertical-align: middle;
}

@keyframes blinker {
  50% {
    transform: scale(1.2);
  }
}

@keyframes blinker2 {
  50% {
    transform: scale(1.05);
    text-shadow: 0 0 6px #000;
  }
}

/* Responsywno   */
@media (max-width: 495px) {
  #contestdiv {
    width: 100%;
    min-height: auto;
    padding: 10px 15px 15px;
  }

  #contestdiv .tutles {
    font-size: 16px;
  }

  #contestdiv .desc {
    font-size: 12px;
    max-width: 100%;
  }
}

/* ########################################## */
/*  ############# DBRSW NEWS INFO #############  */
/* ########################################## */

/* Og lny kontener */
.dbrsw-container {
  max-width: 470px;
  margin: 0 auto;
  padding: 20px;
  font-family: Verdana, "Helvetica Neue", sans-serif;
  color: #f5f5f5;
  background-color: #1b1b1b;
  border-radius: 12px;
  box-shadow:
    0 0 15px rgba(204, 0, 0, 0.5),
    0 0 30px rgba(128, 0, 128, 0.3);
  text-align: center;
}

/* Efekt  wiecenia tekstu */
.glow {
  color: #ffd700;
  font-weight: bold;
  text-align: center;
  text-shadow:
    0 0 5px #ffd700,
    0 0 10px #ffa500,
    0 0 15px #ff4500,
    0 0 20px #ff0000,
    0 0 30px #8b0000,
    0 0 40px #8b0000,
    0 0 50px #888888,
    0 0 60px #666666;
  animation: glowPulse 2.5s infinite alternate ease-in-out;
}

@keyframes glowPulse {
  0% {
    text-shadow:
      0 0 2px #ffd700,
      0 0 4px #ffa500,
      0 0 6px #ff4500,
      0 0 8px #ff0000,
      0 0 10px #8b0000,
      0 0 12px #8b0000,
      0 0 14px #888888,
      0 0 16px #666666;
  }
  100% {
    text-shadow:
      0 0 3px #ffd700,
      0 0 5px #ffa500,
      0 0 7px #ff4500,
      0 0 9px #ff0000,
      0 0 11px #8b0000,
      0 0 13px #8b0000,
      0 0 15px #888888,
      0 0 17px #666666;
  }
}

/* Link do rejestracji */
.cta-link {
  color: #00ff00;
  font-weight: bold;
  text-decoration: underline;
  font-size: 1.2em;
}

.cta-link:hover {
  color: #adff2f;
}

/* Nag  wki */
.dbrsw-container h2,
.dbrsw-container h3 {
  margin: 10px 0;
}

/* Linie oddzielaj ce */
.dbrsw-divider {
  border: 1px solid #ffd700;
  margin: 10px 0;
}

/* Paragraf */
.dbrsw-container p {
  font-size: 1.1em;
  margin: 10px 0;
}

/* Ikony listy */
.dbrsw-container li {
  margin: 6px 0;
}

/* Obrazki */
.dbrsw-container img {
  max-width: 100%;
  margin: -15px 0;
}

/* ########################################## */
/*  ############# DOWNLOAD EFFEKT #############  */
/* ########################################## */

.button_download {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  border: none;
  background: #0ba360;
  background: linear-gradient(to right, #0ba360, #3cba92);
  color: white;
  font-family: inherit;
  text-align: center;
  font-size: 13px;
  box-shadow: 0px 14px 56px -11px #0ba360;
  width: 11em;
  padding: 0.7em;
  transition: all 0.4s;
  cursor: pointer;
}

.button_download svg {
  width: 25px;
  height: 25px;
}

.button_download svg path {
  fill: white;
}

.button_download span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.4s;
}

.button_download span:after {
  content: "for free";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.7s;
}

.button_download:hover span {
  padding-right: 3.8em;
}

.button_download:hover span:after {
  opacity: 4;
  right: 0;
}

.download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 15px;
}

/* ########################################## */
/*  ######## DOWNLOAD INFORMATIONS ########  */
/* ########################################## */

/ /* Basic styling for download button */
.button_download {
  text-decoration: none;
  display: flex;
  align-items: center;
  /* Add more styling as needed */
}

/* Pop-up background */
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Pop-up content */
.popup-content {
  background: var(--primary);
  padding: 20px;
  border-radius: 5px;
  border-color: white;
  border: solid;
}

.popup-content button {
  margin: 10px;
  padding: 10px 20px;
}

/* ########################################## */
/*  ############# CODE EFFEKT #############  */
/* ########################################## */

.code {
  font-family: Courier, "Courier New", sans-serif;
  font-size: 12x;
  color: #015880;
  background-color: #1b1c1c;
  border: #292525;
  border-style: solid;
  border-radius: 10px 10px 10px 10px;
  -webkit-box-shadow: 0px 0px 2px 0px rgba(220, 184, 41, 1);
  -moz-box-shadow: 0px 0px 3px 0px rgba(220, 184, 41, 1);
  box-shadow: 0px 0px 3px 0px rgba(220, 184, 41, 1);
}

/* ########################################## */
/*  ############# Frame EFFEKT #############  */
/* ########################################## */

@keyframes blinkBorderframe {
  0% {
    border-color: #292525;
    box-shadow:
      0 0 4px 1px rgba(255, 69, 0, 0.4),
      0 0 10px 4px rgba(255, 140, 0, 0.2);
  }
  25% {
    border-color: #ff5714; /* Delikatniejszy odcie  pomara czowego */
    box-shadow:
      0 0 6px 3px rgba(255, 69, 0, 0.4),
      0 0 10px 4px rgba(255, 140, 0, 0.3);
  }
  50% {
    border-color: #dcb829; /*   ty */
    box-shadow:
      0 0 8px 4px rgba(255, 140, 0, 0.4),
      0 0 10px 4px rgba(255, 69, 0, 0.4);
  }
  75% {
    border-color: #ff5714; /* Delikatny odcie  pomara czowego */
    box-shadow:
      0 0 6px 3px rgba(255, 69, 0, 0.4),
      0 0 10px 4px rgba(255, 140, 0, 0.3);
  }
  100% {
    border-color: #292525;
    box-shadow:
      0 0 4px 1px rgba(255, 69, 0, 0.4),
      0 0 10px 4px rgba(255, 140, 0, 0.2);
  }
}

.frame {
  font-family: Courier, "Courier New", sans-serif;
  font-size: 16px;
  color: #015880;
  background-color: #1b1c1c;
  border: 2px solid #292525;
  border-radius: 25px;
  box-shadow:
    0 0 4px 1px rgba(255, 69, 0, 0.3),
    0 0 8px 2px rgba(255, 140, 0, 0.2);
  -webkit-box-shadow:
    0 0 4px 1px rgba(255, 69, 0, 0.3),
    0 0 8px 2px rgba(255, 140, 0, 0.2);
  -moz-box-shadow:
    0 0 4px 1px rgba(255, 69, 0, 0.3),
    0 0 8px 2px rgba(255, 140, 0, 0.2);
  animation: blinkBorderframe 5s infinite ease-in-out; /* Jeszcze d u szy czas animacji */
  transition:
    border-color 1s ease,
    box-shadow 1s ease; /* D u sze przej cia */
}

/* ########################################## */
/*  ############# ShowMore #############  */
/* ########################################## */

.showMore {
  width: 520px;
  display: inline-block;
  text-align: center;
  text-shadow: black 0px 0px 5px;
  vertical-align: middle;
  padding: 2px 13px;
  border: 1px solid #222222;
  border-radius: 10px;
  background: #27323c;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#27323c),
    to(#222c35)
  );
  background: -moz-linear-gradient(top, #27323c, #222c35);
  background: linear-gradient(to bottom, #27323c, #222c35);
  -webkit-box-shadow: 0px 0px 2px 0px rgba(220, 184, 41, 1);
  -moz-box-shadow: 0px 0px 3px 0px rgba(220, 184, 41, 1);
  box-shadow: 0px 0px 3px 0px rgba(220, 184, 41, 1);
  font: normal normal bold 14px arial;
  color: #dfdfdf;
  text-decoration: none;
  cursor: pointer;
  font-variant: small-caps;
}

.showMore .icon {
  background: url("../images/swip_icon.png") no-repeat;
  float: right;
  width: 13px;
  height: 21px;
  margin-top: -2px;
}

.showMoreTab {
  margin-left: 5px;
  width: 500px;
  background-color: #00000010;
  color: #cccccc;
  font: normal normal 12px arial;
  padding: 0px 5px 5px 5px;
  text-decoration: none;
  border-left: 1px solid #222222;
  border-right: 1px solid #222222;
  border-bottom: 1px solid #222222;
}

#showMoreTab_1,
#showMoreTab_2,
#showMoreTab_3,
#showMoreTab_4,
#showMoreTab_5,
#showMoreTab_6,
#showMoreTab_7,
#showMoreTab_8,
#showMoreTab_9,
#showMoreTab_10 {
  display: none;
}

.showMoreTab a {
  color: #535455;
  font-family: Arial;
  font-size: 12px;
  font-weight: bold;
}

/* ########################################## */
/*  ############# EFFECT TEXT #############  */
/* ########################################## */

p.red {
  text-shadow: 1px 1px 15px red;
}

p.blue {
  text-shadow: 1px 1px 2px blue;
}

p.black {
  text-shadow: 1px 1px 2px black;
}

p.no-blur {
  text-shadow: 1px 1px 0 black;
}

p.medium-blur {
  text-shadow: 1px 1px 5px black;
}

p.large-blur {
  text-shadow: 1px 1px 15px black;
}

/* ########################################## */
/*  ### Information Play on DBRSW Server ###  */
/* ########################################## */

.register_button {
  font-size: 28px;
  font-weight: 600;
  font-family: "Josefin Sans";
  cursor: pointer;
  border: 0;
  border-radius: 15px;
  margin: 0px 0px;
  width: 420px;
  padding: 10px 0 6px 5px;
  box-shadow: 0 0 3px #fbc675;
  transition: 0.4s;
  color: #c32422;
  background-color: #faa21a;
}

.register_button:hover {
  color: white;
  box-shadow: 0 0 5px #fbc675;
  background-color: #dc8600;
}

.register_button:disabled,
.register_button[disabled] {
  color: white;
  box-shadow: none;
  background-color: #848484;
}

/* ########################################## */
/*  ######### Information Effect #########  */
/* ########################################## */

#divcetner {
  padding: 5px 2px;
  color: #ffffff;
  background-color: #dcb82920;
  width: 530px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #dcb82920;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(220, 184, 41, 1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(220, 184, 41, 1);
  box-shadow: 0px 0px 5px 0px rgba(220, 184, 41, 1);
  border-radius: 4px;
}

#divcetnerinfo {
  padding: 5px 2px;
  color: #ffffff;
  background-color: #dcb82920;
  width: 533px;
  font-size: 12px;
  border: 1px solid #dcb82920;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(220, 184, 41, 1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(220, 184, 41, 1);
  box-shadow: 0px 0px 5px 0px rgba(220, 184, 41, 1);
  border-radius: 4px;
}

/* ########################################## */
/*  ########## Vocations Effect ##########  */
/* ########################################## */

.characters img {
  transition: transform 0.3s ease-in-out;
}

.characters img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px white);
}

.charactersgolden img {
  transition: transform 0.3s ease-in-out;
}

.charactersgolden img:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 1px white);
}

.charactermarket img {
  transition: transform 0.3s ease-in-out;
}

.charactermarket img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 10px red);
}

/* ########################################## */
/*  ######## Vocations Effect Bonus ########  */
/* ########################################## */

/* Glowing effect animation */
@keyframes fire-effect {
  0% {
    text-shadow:
      0 0 5px #ff0000,
      0 0 5px #ff0000,
      0 0 10px #ff0000;
  }
  50% {
    text-shadow:
      0 0 5px #ff9900,
      0 0 5px #ff9900,
      0 0 20px #ff9900;
  }
  100% {
    text-shadow:
      0 0 5px #ff0000,
      0 0 5px #ff0000,
      0 0 10px #ff0000;
  }
}

/* Applying glowing effect to the class fire-effect */
.fire-effect {
  animation: fire-effect 1.5s ease-in-out infinite;
}

/* Center the content */
.container {
  text-align: center;
  margin: auto;
  background-color: #abab8e2;
  border: 5px solid #a0125721;
  border-radius: 10px;
  padding: 10px;
  width: fit-content;
}

/* ########################################## */
/*  ########## Images Effect ##########  */
/* ########################################## */

.dbrswbot img {
  transition: transform 0.3s ease-in-out;
}

.dbrswbot img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 10px red);
}

.downloads img {
  transition: transform 0.3s ease-in-out;
}

.downloads img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 10px red);
}

/* ########################################## */
/*  ########## DISCORD WIDGET ##########  */
/* ########################################## */

#discordWidget {
  width: 99%;
  height: 300px;
  box-sizing: content-box;
  border: 1px solid black;
  background-color: #111;
  background-image:
    url("/images/discordBckg1.png"), url("/images/discordBckg2.png");
  background-size:
    200px 180px,
    110px 130px;
  background-position:
    0 100%,
    100% 100%;
  background-repeat: no-repeat, no-repeat;
  -webkit-box-shadow: 0 1px 0 rgb(0 0 0 / 20%);
  -moz-box-shadow: inset 0 -10px 10px -10px #000;
  -webkit-box-shadow: inset 0 -10px 10px -10px #000;
  box-shadow: inset 0 -10px 10px -10px #000;
  overflow-y: scroll;
  overflow-x: hidden;
  text-align: left;
}

.discord_header {
  width: calc(100% - 40px);
  margin-left: 20px;
  margin-top: 12px;
  color: #888;
  font-size: 11px;
}

#discord_members {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 12px;
}

.discord_member {
  width: 100%;
  height: 28px;
}

.discord_member:nth-child(odd) {
  background: rgba(255, 255, 255, 0);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 90%
  );
}

.discord_member_inner {
  width: calc(100% - 40px);
  height: 28px;
  margin-left: 20px;
}

.discord_member_pic {
  width: 24px;
  height: 28px;
  position: relative;
  float: left;
}

.discord_member_pic img {
  width: 20px;
  height: 20px;
  margin: 4px 2px;
  border-radius: 10px;
  float: left;
}

.discord_member_status {
  width: 7px;
  height: 7px;
  border: solid 2px #111;
  border-radius: 10px;
  position: absolute;
  bottom: 2px;
  right: 0;
}

.discord_status_online {
  background-color: #3ba55d;
}

.discord_status_idle {
  background-color: #faa81a;
}

.discord_status_dnd {
  background-color: #ed4245;
}

.discord_member_username {
  width: 78px;
  height: 16px;
  margin-left: 20px;
  margin-top: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #aaa;
  font-size: 12px;
  float: left;
}

#discordConnect {
  width: 100%;
  height: 34px;
  background-color: #171717;
  border: 1px solid black;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

#discordConnectButton {
  width: 110px;
  height: 13px;
  margin: 6px auto;
  background-image: linear-gradient(
    to bottom,
    #d18115 0%,
    #ea9b1b 51%,
    #d18115 100%
  );
  color: #141414;
  border-radius: 3px;
  border: 1px #bdbd2f solid;
  padding: 3px 10px 3px 10px;
  font:
    bold 11px arial,
    sans-serif;
  text-align: center;
  cursor: pointer;
}

#discordConnectButton:hover {
  background-image: linear-gradient(
    to bottom,
    #c27613 0%,
    #bc7113 51%,
    #c27613 100%
  );
}

/* ########################################## */
/*  ########## ITEM LIST EFFECT ##########  */
/* ########################################## */

.itemImg {
  background-position: center center;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  padding: 5px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  background-color: rgba(50, 50, 50, 0.46);
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 4px 8px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 2px 1px;
}

/* ########################################## */
/*  ########## SET LANGUAGE ##########  */
/* ########################################## */

.ct-topbar {
  text-align: right;
  width: 98%;
  align: right;
  margin-left: 3px;
  margin-bottom: 3px;
}

.ct-topbar__list {
  margin-bottom: 0px;
}

.ct-language__dropdown {
  padding-top: 0px;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  top: 90%;
  right: 10px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  min-width: 120px;
  text-align: left;
  padding-top: 0;
  z-index: 200;
}

.ct-language__dropdown li {
  background: #222;
  padding: 5px;
}

.ct-language__dropdown li a {
  display: block;
}

.ct-language__dropdown li:first-child {
  padding-top: 10px;
  border-radius: 3px 3px 0 0;
}

.ct-language__dropdown li:last-child {
  padding-bottom: 10px;
  border-radius: 0 0 3px 3px;
}

.ct-language__dropdown li:hover {
  background: #444;
}

.ct-language__dropdown li span {
  margin-top: 6px;
  margin-left: 6px;
}

.ct-language {
  position: relative;
  color: #fff;
  padding: 5px 10px;
  border-bottom: 1px solid #2c2c2c;
  font-variant: small-caps;
  font-family: "Josefin Sans";
  font-weight: 600;
  font-size: 16px;
}

.ct-language:hover .ct-language__dropdown {
  max-height: 240px;
  padding-top: 0px;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* ########################################## */
/*  ####### Effect Outfits Disabled #######  */
/* ########################################## */

/* .hvr-bounce-in {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: .5s;
    transition-duration: .5s
}

/* .hvr-bounce-in:active,.hvr-bounce-in:focus,.hvr-bounce-in:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition-timing-function: cubic-bezier(0.47,2.02,.31,-.36);
    transition-timing-function: cubic-bezier(0.47,2.02,.31,-.36)
}

/* ################################################################## */
/* ############################ PAGE LAYOUT ########################### */
/* ################################################################## */

html {
}

body {
  background: #000000 url("../_img/background/background.png") top center
    no-repeat;
  font-size: 11px;
  color: #b7b7b7;
  font-family: Orbitron, sans-serif;
  text-shadow: 1px 1px #000;
  padding: 0;
  margin: 0;
}

/* Kontener na logo */
.logo-container {
  width: 100%;
  max-width: 100%;
  text-align: center;
  padding: 20px 0;
}

/* Obraz logo (baner) */
.logo-container img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* Opcjonalne: Media queries dla lepszego wygl du na r nych ekranach */
@media (max-width: 768px) {
  .logo-container img {
    max-width: 95%;
  }
}

@media (min-width: 1200px) {
  .logo-container img {
    max-width: 100%;
  }
}

/* ################################################################## */
/* ############################# CONTENT ############################ */
/* ################################################################## */

#page {
  width: 1120px;
  margin: auto;
}

#logo {
  background: url("../_img/background/logo.png") no-repeat;
  height: 250px;
  width: 741px;
  margin: 30px auto;
}

#content {
  background: url("../_img/content/content.jpg") repeat-y;
  margin: auto;
  width: 968px;
  margin-top: 70px;
  margin-left: 72px;
  position: absolute center;
  float: left;
}

#content_bot {
  background: url("../_img/content/content_bot.png") no-repeat;
  height: 90px;
  width: 968px;
  margin: auto;
  float: left;
  margin-left: 70px;
}

/* ########################################## */
/* ################ MENU TOP ################ */
/* ########################################## */

#menu_top {
  background: url("../_img/menu/menu_top.png") top center no-repeat;
  height: 154px;
  width: 1109px;
  margin: -65px 0px 0px -71px;
  float: left;
}

#menu_top .left {
  margin-top: 57px;
  margin-left: 23px;
}

#menu_top .online {
  margin-left: 400px;
  margin-top: -20px;
  width: 260px;
  height: 80px;
  text-align: center;
}

#menu_top .right {
  margin-top: -60px;
  margin-left: 703px;
}

div.fadehover {
  position: relative;
}

img.a {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}

img.b {
  position: absolute;
  left: 0;
  top: 0;
}

.divider {
  height: 1px;
  width: inherit;
}

/* left */

#menu_top_home {
  float: left;
  position: relative;
  left: 0px;
}

#menu_top_acc {
  float: left;
  position: relative;
  left: 120px;
}

#menu_top_shop {
  float: left;
  position: relative;
  left: 240px;
}

/* right */

#menu_top_forum {
  float: left;
  position: relative;
  left: 0px;
}

#menu_top_highscores {
  float: left;
  position: relative;
  left: 120px;
}

#menu_top_register {
  float: left;
  position: relative;
  left: 240px;
}

/* ########################################## */
/* ################ MENU LEFT ############### */
/* ########################################## */

#menu_left {
  margin: -36px 0px 10px 19px;
  width: 182px;
  float: left;
}

#menu-label {
  background: url("../images/menu/menu-label.png") no-repeat;
  color: #cccccc;
  float: left;
  height: 34px;
  width: 171px;
  margin-left: 5px;
}

#icon-news,
#icon-account,
#icon-community,
#icon-library,
#icon-shop,
#icon-toplevel,
#icon-topguilds,
#icon-search,
#icon-info,
#icon-events,
#icon-socialmedia {
  width: 32px;
  height: 32px;
  float: left;
  margin: 0px 5px 0 10px;
}

#icon-news {
  background: url("../images/menu/icon-news.gif") no-repeat scroll 0 0
    transparent;
}

#icon-account {
  background: url("../images/menu/icon-account.gif") no-repeat scroll 0 0
    transparent;
}

#icon-community {
  background: url("../images/menu/icon-community.gif") no-repeat scroll 0 0
    transparent;
}

#icon-library {
  background: url("../images/menu/icon-library.gif") no-repeat scroll 0 0
    transparent;
}

#icon-shop {
  background: url("../images/menu/icon-shop.gif") no-repeat scroll 0 0
    transparent;
}

#icon-toplevel {
  background: url("../images/menu/icon-toplevel.gif") no-repeat scroll 0 0
    transparent;
}

#icon-topguilds {
  background: url("../images/menu/icon-topguilds.gif") no-repeat scroll 0 0
    transparent;
}

#icon-search {
  background: url("../images/menu/icon-search.gif") no-repeat scroll 0 0
    transparent;
}

#icon-info {
  background: url("../images/menu/icon-info.gif") no-repeat scroll 0 0
    transparent;
}

#icon-events {
  background: url("../images/menu/icon-events.gif") no-repeat scroll 0 0
    transparent;
}

#icon-socialmedia {
  background: url("../images/menu/icon-socialmedia.gif") no-repeat scroll 0 0
    transparent;
}

#text-news,
#text-account,
#text-community,
#text-library,
#text-shop,
#text-toplevel,
#text-topguilds,
#text-search,
#text-info,
#text-events,
#text-socialmedia {
  width: 157px;
  height: 34px;
  float: left;
  margin: -32px 5px 0 15px;
}

#text-news {
  background: url("../images/menu/latestnews.png") no-repeat scroll 0 0
    transparent;
}

#text-account {
  background: url("../images/menu/account.png") no-repeat scroll 0 0 transparent;
}

#text-community {
  background: url("../images/menu/community.png") no-repeat scroll 0 0
    transparent;
}

#text-library {
  background: url("../images/menu/library.png") no-repeat scroll 0 0 transparent;
}

#text-shop {
  background: url("../images/menu/shop.gif") no-repeat scroll 0 0 transparent;
}

#text-toplevel {
  background: url("../images/menu/top_level.png") no-repeat scroll 0 0
    transparent;
}

#text-topguilds {
  background: url("../images/menu/top_guilds.png") no-repeat scroll 0 0
    transparent;
}

#text-search {
  background: url("../images/menu/player_search.png") no-repeat scroll 0 0
    transparent;
}

#text-info {
  background: url("../images/menu/information.png") no-repeat scroll 0 0
    transparent;
}

#text-events {
  background: url("../images/menu/events.png") no-repeat scroll 0 0 transparent;
}

#text-socialmedia {
  background: url("../images/menu/socialmedia.png") no-repeat scroll 0 0
    transparent;
}

/* ########################################## */
/* ################ MENU LINKS ############## */
/* ########################################## */

#menu_links {
  width: 200px;
  float: left;
  font-size: 11px;
  font-weight: bold;
  text-align: justify;
  transition: all 0.3s ease;
/*  font-family: "Roboto Slab", serif; /* Osobna czcionka tylko dla menu */
}

#menu_links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#menu_links li {
  background: url("../images/menu/chains.png") no-repeat;
  width: 180px;
  display: block;
  padding: 3px 10px 3px 0;
  margin: auto;
  transition: all 0.3s ease;
  border-radius: 4px;
}

#menu_links li:hover {
  background: url("../images/menu/chains-hover.png") no-repeat;
  width: 175px;
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}

#menu_links li a {
  color: #d1d1d1;
  display: block;
  text-decoration: none;
  padding: 0 0 0 17px;
  text-shadow: 1px 1px #000;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease,
    transform 0.3s ease;
}

#menu_links li a:hover {
  color: #ff7f32;
  padding-left: 25px;
  transform: scale(1.05);
  text-shadow: 1px 1px 3px rgba(255, 111, 0, 0.7);
}

#menu_links li a:active {
  color: #ff7f32;
  text-shadow: none;
  transform: scale(1);
}

/* ########################################## */
/* ############### CONTENT TEXT ############# */
/* ########################################## */

#content_text {
  margin: 0 0 5px 12px;
  width: 541px;
  float: left;
}

/* ########################################## */
/* ############# CONTENT BOTTOM ############# */
/* ########################################## */

#content_bottext {
  height: 60px;
  width: 975px;
  margin: auto;
  float: left;
  margin-left: 62px;
  text-align: center;
}

/* ########################################## */
/* ############### MENU RIGHT ############### */
/* ########################################## */

#menu_right {
  margin: -35px 0 10px 12px;
  width: 182px;
  float: left;
}

.search {
  background: #4b4b4b;
  border: 1px solid #000; /* Ensured border color is black */
  padding: 3px;
  color: #fff;
  border-radius: 4px; /* Added rounded corners for modern look */
  width: 100%; /* Ensures input takes full width of the container */
  box-sizing: border-box; /* Ensures padding doesn't affect width calculation */
  font-size: 14px; /* Improved readability */
  transition:
    background 0.3s ease,
    border-color 0.3s ease; /* Smooth transition effect */
}

.search:hover {
  background: #333; /* Darker background on hover */
  border-color: #ff6f00; /* Orange border on hover */
  box-shadow: 0 0 8px rgba(255, 111, 0, 0.7); /* Glow effect on hover */
}

.search:focus {
  border-color: #ff7f32; /* Gold border on focus */
  outline: none; /* Remove default outline */
  background: #555; /* Lighter background when focused */
}

/* ########################################## */
/* ####### Valentine's Day Events ########## */
/* ########################################## */

.hearts-container {
  position: fixed;
  top: 0;
  left: 50%;
  width: 850px; /* Ustalona szeroko   na 400px */
  height: 100vh;
  transform: translateX(-50%);
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}
.heart {
  position: absolute;
  background-image: url(/layouts/dbrebirth/images/heart_png.png); /* Podmie  na w asny obrazek */
  background-size: contain;
  background-repeat: no-repeat;
  animation: floatUp linear;
}
@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(0.5);
    opacity: 0;
  }
}

/* ########################################## */
/* ####### Efficient Update Alerting ########## */
/* ########################################## */

.glowing {
  height: 15vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Orbitron", sans-serif;
  background: none;
}

/* Tekst z animacją "glow" */
.glowing-text {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  animation:
    glow 1.5s ease-in-out infinite,
    blink 1s step-start infinite,
    move 5s ease-in-out infinite;
}

/* Tekst premium */
.premium-text {
  position: relative;
  font-size: 14px;
  font-weight: 200;
  text-transform: capitalize;
  letter-spacing: 5px;
  text-align: center;
  padding: 1px 4px;
  background: linear-gradient(
    248deg,
    #ffb347,
    #ffcc33,
    #ffe066,
    #ffcc33,
    #ffb347
  );
  /*  background-size: 400% auto; OFF */
  animation: gradientShift 4s linear infinite;
  border-radius: 20px;
  box-shadow:
    0 0 10px #ffcc00,
    0 0 10px #ff9900,
    0 0 10px #ff6600,
    0 0 10px #ff3300;
  overflow: visible;
}

/* Efekt "aura" wokół tekstu */
.premium-text::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 20px;
  background: radial-gradient(
    circle at center,
    rgba(255, 204, 0, 0.6),
    transparent 70%
  );
  filter: blur(15px);
  animation: auraPulse 2s ease-in-out infinite alternate;
  z-index: -1;
}

/* Efekt świetlnej flary */
.premium-text::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #fff5cc 30%, transparent 70%);
  filter: blur(10px);
  transform: translateX(-50%) scale(0.9);
  animation: flare 3s ease-in-out infinite;
  z-index: -2;
}

/* Animacje */
@keyframes glow {
  0% {
    text-shadow:
      0 0 5px #fff,
      0 0 10px #fff,
      0 0 15px #ff00ff,
      0 0 20px #ff00ff,
      0 0 30px #ff00ff;
  }
  50% {
    text-shadow:
      0 0 10px #fff,
      0 0 20px #ff00ff,
      0 0 30px #ff00ff,
      0 0 40px #ff00ff;
  }
  100% {
    text-shadow:
      0 0 5px #fff,
      0 0 10px #ff00ff,
      0 0 15px #ff00ff,
      0 0 20px #ff00ff,
      0 0 30px #ff00ff;
  }
}

@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

@keyframes move {
  0% {
    transform: translateX(-10%);
  }
  50% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-10%);
  }
}

/* Dostosowanie do telefonów */
@media (max-width: 1000px) {
  .premium-text {
    font-size: 12px; /* mniejszy tekst */
    letter-spacing: 2px; /* mniejsze rozstrzelenie */
    padding: 5px 10px; /* więcej przestrzeni wewnątrz */
    border-radius: 12px; /* delikatniejsze zaokrąglenia */
    box-shadow:
      0 0 5px #ffcc00,
      0 0 5px #ff9900;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 400% 0;
  }
}

@keyframes auraPulse {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flare {
  0%,
  100% {
    transform: translateX(-50%) scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: translateX(-50%) scale(1.1);
    opacity: 1;
  }
}

/* ########################################## */
/* ### Efficient Tag Gulids latestnews ### */
/* ########################################## */

.guild-tag {
  color: #ffd54f; /* jasny kolor ze świecącym efektem */
  font-weight: bold;
  text-shadow: 0 0 8px #ffd54f; /* efekt światła */
  cursor: default;
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}
/* Możesz usunąć poniższy hover, skoro efekt jest stały */
.guild-tag:hover {
  color: #ffd54f;
  text-shadow: 0 0 8px #ffd54f;
}

/* ########################################## */
/* ######## REGISTER FORM STYLE ######## */
/* ########################################## */

.guild-tags {
  color: silver;
  font-weight: bold;
  text-shadow: 0 0 10px white;
}


/* ########################################## */
/* ######## REGISTER FORM STYLE ######## */
/* ########################################## */

.top-hero {
    text-align: center;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 20px;
}

.top-hero h1 {
    font-size: 24px;
    color: #f4c542;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.9),
        0 0 10px rgba(244,197,66,0.5),
        0 0 25px rgba(244,197,66,0.3);
    letter-spacing: 1px;
}

.top-hero p {
    font-size: 13px;
    color: #aaa;
}

.register-box {
    width: 480px;
    margin: 20px auto 50px auto;
    background: #171a21;
    border: 1px solid #2a2f3a;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

.register-box h2 {
    text-align: center;
    color: #f4c542;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #aaa;
    text-align: left;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #0f1218;
    color: #fff;
    text-align: left;
}

.status {
    font-size: 12px;
    margin-top: 4px;
    color: #aaa;
}

.rules-box {
    background: #0f1218;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 10px;
    font-size: 12px;
    color: #ccc;
    height: 120px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.checkbox {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 15px;
}

.btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #f4c542, #d4a017);
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(244,197,66,0.4);
}

/* ===== SUCCESS BOX (INLINE STYLE PRZENIESIONE 1:1) ===== */

.success-box {
    width:480px;
    margin:50px auto;
    padding:25px;
    background: linear-gradient(145deg, #141922, #0d0f14);
    color:#fff;
    border-radius:12px;
    text-align:center;
    border:1px solid #2a2f3a;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
    animation: popIn 0.6s ease;
}

.success-icon {
    width:60px;
    height:60px;
    margin:0 auto 15px auto;
    border-radius:50%;
    background: rgba(244,197,66,0.1);
    border:1px solid rgba(244,197,66,0.4);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#f4c542;
}

.success-box h2 {
    color:#f4c542;
    font-size:22px;
    margin-bottom:10px;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.9),
        0 0 12px rgba(244,197,66,0.5);
}

.success-box p {
    color:#ccc;
    font-size:13px;
    line-height:1.6;
}

.success-box b {
    color:#f4c542;
}

.redirect-box {
    margin-top:15px;
    font-size:12px;
    color:#888;
    background:#0f1218;
    border:1px solid #2a2f3a;
    padding:10px;
    border-radius:6px;
}

.redirect-box b {
    color:#f4c542;
}

/* ===== ANIMATION ===== */

@keyframes popIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
