body {
  width: 100%;
  background: url(../images/bg.jpg) top center no-repeat;
  background-size: 100% auto, 100% auto;
  background-color: #121a25;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #555c66;
  line-height: 1;
}
a {
  transition: all 0.3s ease;
  color: #c8ddf1;
  text-decoration: none;
}
a:hover,
button:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
  text-decoration: none;
}
p {
  margin-bottom: 15px;
}
h1,
h2,
h3 {
  color: #c8ddf1;
  margin-bottom: 20px;
  line-height: 1.5;
}
h1 {
  font-size: 18px;
}
h2 {
  font-size: 16px;
}
h3 {
  font-size: 14px;
}
input,
textarea {
  background-color: #e0e4e9;
  border: 1px solid #eef0f3;
  color: #7d8a9f;
  padding: 5px 10px;
  font-size: 12px;
  position: relative;
  border-radius: 3px;
  transition: all 0.5s ease;
  width: calc(100% - 20px);
}
input:focus,
textarea:focus {
  border: 1px solid #424e63;
}
input:hover,
textarea:hover {
  border: 1px solid #424e63;
}
button,
.button {
  transition: all 0.3s ease;
  cursor: pointer;
  background: url(../images/button.jpg) center no-repeat;
  background-size: cover;
  border: none;
  color: #c3eaee;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  padding: 10px 20px;
  display: inline-block;
}

.download-button {
  background: url(../images/button.jpg) center no-repeat;
  background-size: cover;
  box-shadow: 0px 0px 20px 0px rgba(119, 240, 241, 0.2);
  margin: 8px 16px 16px 0px;
}

.green-button {
  background: url(../images/green-button.jpg) center no-repeat;
  background-size: cover;
  box-shadow: 0px 0px 20px 0px rgba(119, 240, 241, 0.2);
  width: 100%;
}

.blue-button {
  background: url(../images/button.jpg) center no-repeat;
  background-size: cover;
  box-shadow: 0px 0px 20px 0px rgba(119, 240, 241, 0.2);
  width: 100%;
}

.button-small {
  padding: 4px 12px;
}

/* MMORPG Game Guide Styles */
.game-guide-container {
  background: linear-gradient(135deg, rgba(18, 26, 37, 0.95) 0%, rgba(25, 35, 50, 0.95) 100%);
  border: 2px solid rgba(119, 240, 241, 0.3);
  border-radius: 15px;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 0 0 30px rgba(119, 240, 241, 0.1);
}

.guide-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(119, 240, 241, 0.2);
}

.guide-header h1 {
  font-size: 28px;
  color: #77f0f1;
  text-shadow: 0 0 10px rgba(119, 240, 241, 0.5);
  margin-bottom: 15px;
}

.guide-header h1 i {
  margin-right: 15px;
  color: #ffd700;
}

.guide-subtitle {
  font-size: 16px;
  color: #c8ddf1;
  margin-bottom: 30px;
  font-style: italic;
}

.progress-tracker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.step-indicator {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c3545 0%, #1a2332 100%);
  border: 3px solid #424e63;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: #61738e;
  transition: all 0.3s ease;
}

.step-indicator.active {
  background: linear-gradient(135deg, #77f0f1 0%, #4ecdc4 100%);
  border-color: #77f0f1;
  color: #121a25;
  box-shadow: 0 0 20px rgba(119, 240, 241, 0.5);
}

.progress-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #424e63 0%, #2c3545 100%);
  border-radius: 2px;
}

.quest-step {
  background: linear-gradient(135deg, rgba(44, 53, 69, 0.3) 0%, rgba(26, 35, 50, 0.3) 100%);
  border: 1px solid rgba(119, 240, 241, 0.2);
  border-radius: 12px;
  margin: 30px 0;
  padding: 25px;
  transition: all 0.3s ease;
}

.quest-step:hover {
  border-color: rgba(119, 240, 241, 0.4);
  box-shadow: 0 5px 20px rgba(119, 240, 241, 0.1);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(119, 240, 241, 0.1);
}

.step-header h2 {
  color: #77f0f1;
  font-size: 20px;
  margin: 0;
}

.step-header h2 i {
  margin-right: 10px;
  color: #ffd700;
}

.step-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  color: #121a25;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.quest-description {
  font-size: 14px;
  color: #c8ddf1;
  margin-bottom: 20px;
  line-height: 1.6;
}

.action-panel {
  text-align: center;
}

.mmorpg-button {
  position: relative;
  background: linear-gradient(135deg, #77f0f1 0%, #4ecdc4 100%);
  border: none;
  color: #121a25;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 5px;
  box-shadow: 0 5px 15px rgba(119, 240, 241, 0.3);
  overflow: hidden;
}

.mmorpg-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(119, 240, 241, 0.4);
}

.mmorpg-button.primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.mmorpg-button.primary:hover {
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.mmorpg-button.download {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  position: relative;
  min-width: 160px;
}

.mmorpg-button.btn-bg {
  background: transparent;
  border: 1px solid rgba(195, 234, 238, 0.3);
  color: #c3eaee;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  font-size: 11px;
  width: 100%;
  height: 32px;
}

.mmorpg-button.secondary {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
  box-shadow: 0 5px 15px rgba(155, 89, 182, 0.3);
}

.mmorpg-button.secondary:hover {
  box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
}

.download-speed {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff6b6b;
  color: white;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: bold;
}

.button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.mmorpg-button:hover .button-glow {
  left: 100%;
}

.game-preview {
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.preview-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.preview-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-preview:hover .preview-overlay {
  opacity: 1;
}

.preview-overlay i {
  font-size: 30px;
  color: #77f0f1;
}

.download-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.download-category {
  background: rgba(18, 26, 37, 0.5);
  border: 1px solid rgba(119, 240, 241, 0.2);
  border-radius: 10px;
  padding: 20px;
}

.download-category h3 {
  color: #77f0f1;
  margin-bottom: 15px;
  font-size: 16px;
}

.download-category h3 i {
  margin-right: 10px;
  color: #ffd700;
}

.file-info {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 12px;
  color: #c8ddf1;
}

.file-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.download-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.final-instructions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.instruction-card {
  background: linear-gradient(135deg, rgba(44, 53, 69, 0.5) 0%, rgba(26, 35, 50, 0.5) 100%);
  border: 1px solid rgba(119, 240, 241, 0.2);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.instruction-card:hover {
  border-color: rgba(119, 240, 241, 0.4);
  transform: translateY(-2px);
}

.instruction-icon {
  background: linear-gradient(135deg, #77f0f1 0%, #4ecdc4 100%);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.instruction-icon i {
  font-size: 20px;
  color: #121a25;
}

.instruction-text h4 {
  color: #77f0f1;
  margin: 0 0 10px 0;
  font-size: 14px;
}

.instruction-text p {
  color: #c8ddf1;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.instruction-text code {
  background: rgba(119, 240, 241, 0.1);
  color: #77f0f1;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
}

/* Notification System */
.game-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #77f0f1 0%, #4ecdc4 100%);
  color: #121a25;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 5px 20px rgba(119, 240, 241, 0.3);
  z-index: 9999;
  display: none;
  min-width: 250px;
  text-align: center;
}

.game-notification.info {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
}

.game-notification.success {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: white;
}

.game-notification.warning {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
}

.game-notification.error {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
}

/* Quest Step Animations */
.quest-step {
  opacity: 0;
  transform: translateY(20px);
  animation: questStepFadeIn 0.6s ease forwards;
}

@keyframes questStepFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Instruction Card Expanded State */
.instruction-card.expanded {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(119, 240, 241, 0.2);
}

.instruction-card.expanded .instruction-text {
  max-height: none;
}

/* Button Pulse Animation */
@keyframes buttonPulse {
  0% {
    box-shadow: 0 5px 15px rgba(119, 240, 241, 0.3);
  }
  50% {
    box-shadow: 0 5px 25px rgba(119, 240, 241, 0.5);
  }
  100% {
    box-shadow: 0 5px 15px rgba(119, 240, 241, 0.3);
  }
}

.mmorpg-button.primary {
  animation: buttonPulse 2s infinite;
}

/* Glow Effect for Important Elements */
@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 5px rgba(119, 240, 241, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(119, 240, 241, 0.8), 0 0 30px rgba(119, 240, 241, 0.6);
  }
}

.guide-header h1 {
  animation: glow 3s ease-in-out infinite;
}

/* Hover Effects for Download Speed Indicators */
.download-speed {
  transition: all 0.3s ease;
}

.mmorpg-button:hover .download-speed {
  transform: scale(1.1);
  background: #ff5252;
}

/* Progress Line Animation */
.progress-line {
  position: relative;
  overflow: hidden;
}

.progress-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(119, 240, 241, 0.6), transparent);
  animation: progressFlow 3s infinite;
}

@keyframes progressFlow {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@media (max-width: 768px) {
  .progress-tracker {
    flex-direction: column;
    gap: 10px;
  }
  
  .progress-line {
    width: 3px;
    height: 30px;
  }
  
  .step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .download-options {
    flex-direction: column;
  }
  
  .mmorpg-button {
    width: 100%;
    justify-content: center;
  }
  
  .final-instructions {
    grid-template-columns: 1fr;
  }
  
  .game-notification {
    right: 10px;
    left: 10px;
    min-width: auto;
  }
}

:focus {
  outline: none;
}
::-webkit-input-placeholder {
  color: #485365;
}
::-moz-placeholder {
  color: #485365;
}
:-moz-placeholder {
  color: #485365;
}
:-ms-input-placeholder {
  color: #485365;
}
.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
.flex-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.light {
  background: url(../images/light-bg.jpg);
  box-shadow: 0px 12px 30px -5px rgba(0, 0, 0, 0.1), 0px -12px 30px -5px rgba(0, 0, 0, 0.1);
}
.container {
  /*min-height: 1050px;*/
  display: flex;
  position: relative;
}
.container:before {
  content: "";
  background: url(../images/left-container-icon.png) no-repeat;
  left: -35px;
  top: -34px;
  width: 74px;
  height: 73px;
  position: absolute;
  z-index: 1;
}
.container:after {
  content: "";
  background: url(../images/right-container-icon.png) no-repeat;
  right: -35px;
  top: -34px;
  width: 74px;
  height: 73px;
  position: absolute;
}
.top-panel {
  height: 64px;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  position: absolute;
  z-index: 10;
  transition: all 1s ease;
}
.top-panel .top-panel-container {
  width: 1200px;
  margin: 0 auto;
}
.top-panel:hover {
  background: rgba(0, 0, 0, 0.5);
}
.menu li {
  display: inline-block;
  margin: 0px 12px;
  padding: 0px;
  background: none;
}
.menu li a {
  display: block;
  line-height: 63px;
  text-transform: uppercase;
  color: #b7cdef;
  padding: 0px 16px;
}
.menu li a:hover, .active {
  color: #c8ddf1;
  border-bottom: 1px solid rgba(200, 221, 241, 0.5);
  text-shadow: 0px 0px 10px rgba(200, 221, 241, 0.7);
}
.menu li:first-child {
  margin: 0px 12px 0px 0px;
}
.language-block a {
  display: inline-block;
  height: 22px;
  width: 34px;
  margin: 0px 10px;
  box-shadow: inset 0px 0px 15px 1px rgba(115, 161, 255, 0.7), 0px 0px 9px 0px rgba(0, 0, 0, 0.5);
  opacity: 0.5;
}
.language-block a:hover {
  opacity: 0.9;
}
.language-block .eng {
  background: url(../images/eng-icon.png) no-repeat;
}
.language-block .idn {
  background: url(../images/idn-icon.png) no-repeat;
}
/* Header
-----------------------------------------------------------------------------*/
.header {
  height: 480px;
  position: relative;
}
.char {
  position: absolute;
  left: -147px;
  bottom: -78px;
  background: url(../images/char.png) no-repeat;
  width: 551px;
  height: 500px;
  z-index: 2;
  transition: all 0.8s ease;
  transform: scale(1);
  opacity: 1;
  display: block;
  cursor: pointer;
}
.char:hover {
  filter: drop-shadow(0px 0px 10px rgba(162, 229, 241, 0.2));
}
.char.small {
  transform: scale(0.7);
  opacity: 0.1;
}
.logo {
  width: 100%;
  text-align: center;
  top: 89px;
  position: absolute;
}

.logo-start {
  width: 100%;
  text-align: center;
  top: 140px;
  position: absolute;
}
.start-game {
  width: 100%;
  bottom: 50px;
  position: absolute;
}
.start-game a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/start-game-button.png) no-repeat;
  background-size: contain;
  width: 297px;
  height: 71px;
  margin: 0 auto;
  font-weight: 600;
  font-size: 18px;
}

/* Left Sidebar
-----------------------------------------------------------------------------*/
.left-sidebar {
  width: 285px;
  background: url(../images/sidebar-bg.jpg);
  margin-bottom: 170px;
  position: relative;
}
.left-sidebar:after {
  content: "";
  background: url(../images/left-sidebar-icon.png) no-repeat;
  left: -4px;
  bottom: -4px;
  width: 25px;
  height: 25px;
  position: absolute;
}
.download-block {
  background: url(../images/dowload-button.jpg) no-repeat;
  height: 90px;
  box-shadow: 0px 5px 20px -2px rgba(0, 0, 0, 0.1);
}
.download-block a {
  display: block;
  position: relative;
  z-index: 3;
  font-size: 11px;
  color: #7a96b0;
  line-height: 1.5;
  padding: 23px 0px 23px 90px;
}
.download-block a span {
  display: block;
  color: #aacff2;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
}
.p-block {
  padding: 20px;
}
.login-block {
  background: url(../images/login-block-bg.jpg) bottom no-repeat, url(../images/login-block-repeat.jpg);
}
.login-block .login-block-title {
  margin-bottom: 20px;
}
.login-block .login-block-title span {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
}
.login-block .login-block-title a {
  color: #6fa5ff;
}
.login-block input {
  background-repeat: no-repeat;
  background-position: left;
  height: 32px;
  padding: 0px 10px 0px 50px;
  width: calc(100% - 60px);
}
.login-block .checkbox-block {
  margin-bottom: 20px;
}
.login-block .login-button {
  margin-bottom: 20px;
}
.login-block .login-button a {
  color: #4e5e76;
}
.login-in input {
  background-image: url(../images/login-icon.png);
}
.password-in input {
  background-image: url(../images/password-icon.png);
}
.checkbox {
  display: none;
}
.checkbox-custom {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #394c66;
  border-radius: 3px;
  background: #131f2d;
}
.checkbox-custom,
.label {
  display: inline-block;
  vertical-align: middle;
}
.label {
  margin-left: 9px;
  margin-bottom: -2px;
  color: #7d8a9f;
}
.checkbox:checked + .checkbox-custom::before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0px;
  left: 0px;
  background: url(../images/check.png) center no-repeat;
}
.sidebar-title {
  color: #657793;
  line-height: 1.6;
  padding-bottom: 10px;
}
.sidebar-title span {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}
.sidebar-title .top-title-img {
  background: url(../images/top-player-title-bg.png) no-repeat;
  width: 43px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0px 0px 14px 0px rgba(51, 99, 171, 0.5);
}
.sidebar-title .forum-img {
  background: url(../images/forum-title-bg.png) no-repeat;
  width: 43px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0px 0px 14px 0px rgba(51, 99, 171, 0.5);
}
.top-player {
  padding: 10px 0px;
  border-bottom: 1px solid rgba(133, 216, 255, 0.06);
}
.top-player .number {
  border: 1px solid #2e394a;
  color: #657793;
  font-weight: bold;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
}
.top-player .number.first {
  color: #ffe956;
  border: 1px solid #ffe956;
}
.top-player .number.second {
  color: #d3e3e4;
  border: 1px solid #d3e3e4;
}
.top-player .number.third {
  color: #8d6f46;
  border: 1px solid #8d6f46;
}
.top-player .ava-img {
  width: 40px;
  text-align: center;
  height: 18px;
}
.top-player .ava-img img {
  width: 28px;
  height: 16px;
  border: 1px solid #16629c;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}
.top-player .nickname {
  width: 135px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1px 0px;
  color: #d0e3ff;
}
.top-player .kills {
  width: 40px;
  text-align: right;
  color: #74acff;
  font-size: 14px;
}
.media-block a {
  display: block;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
.media-block a:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 0px 190px 20px rgba(0, 0, 0, 0.8);
  transition: all 1s ease;
}
.media-block img {
  margin-bottom: -2px;
}
.media-block p a:after {
  background: url(../images/play-icon.png) center no-repeat;
}
.media-block a:hover:after {
  box-shadow: inset 0px 0px 190px 20px rgba(0, 0, 0, 0.2);
}
/* Middle
-----------------------------------------------------------------------------*/
.content {
  width: 590px;
  padding: 30px 20px 40px 20px;
  position: relative;
  background: url(../images/content-bg.jpg);
  line-height: 1.4;
}
.content:before {
  content: "";
  background: url(../images/top-content-icon.png) no-repeat;
  left: 50%;
  margin-left: -70px;
  top: -41px;
  width: 143px;
  height: 74px;
  position: absolute;
  z-index: 11;
}
.content:after {
  content: "";
  background: url(../images/bottom-content-icon.png) no-repeat;
  left: -30px;
  bottom: -12px;
  width: 690px;
  height: 40px;
  position: absolute;
}
.content img {
  max-width: 590px;
}
.content input {
  width: auto;
}
.content ul {
  margin-bottom: 15px;
}
.content li {
  background: url(../images/li-icon.png) left no-repeat;
  padding: 9px 0px 9px 29px;
}
.slider {
  overflow: hidden;
  position: relative;
  width: 630px;
  height: 214px;
  margin: 0 auto;
  z-index: 10;
  margin: -30px -20px 0px -20px;
}
.slider .slides {
  position: relative;
  transition: 1s;
}
.slider .slides .active .slider-text {
  transition: all 2s ease;
  bottom: 20px !important;
}
.slider .slides .slide {
  float: left;
  display: block;
  position: relative;
}
.slider .slides .slide:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  box-shadow: inset 0px 0px 40px 20px rgba(0, 0, 0, 0.6);
}
.slider .slides .slide .slider-text {
  position: absolute;
  bottom: -200px;
  left: 0px;
  padding: 8px 30px;
  width: calc(100% - 60px);
  color: #e0ddd1;
  line-height: 1.3;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  text-align: center;
  z-index: 4;
}
.slider .slides .slide h1 {
  margin-bottom: 1px;
  color: #fff;
  font-size: 36px;
}
.slider .slides .slide img {
  width: 630px;
  max-width: 630px;
  height: 214px;
}
.slider .next {
  position: absolute;
  background: url(../images/arrow-right.png) no-repeat;
  height: 30px;
  width: 30px;
  right: 20px;
  top: 95px;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  z-index: 12;
}
.slider .prev {
  position: absolute;
  background: url(../images/arrow-left.png) no-repeat;
  height: 30px;
  width: 30px;
  left: 20px;
  top: 95px;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  z-index: 12;
}
.slider .navigation {
  position: absolute;
  left: 23px;
  top: 16px;
  z-index: 1;
  cursor: pointer;
  display: none;
}
.slider .navigation .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: linear-gradient(to bottom, #a6d0b6, #89b899);
  border: 1px solid #427252;
  cursor: pointer;
  margin: 0 2px;
  position: relative;
}
.slider:hover .next,
.slider:hover .prev {
  opacity: 1;
  transition: all 0.7s ease;
}
.slider .navigation .active:after {
  content: "";
  background: linear-gradient(to bottom, #a6d0b6, #89b899);
  height: 10px;
  width: 10px;
  border: 1px solid #b9d8c2;
  position: absolute;
}
.tabs {
  padding: 20px 20px;
  box-shadow: 0px 25px 30px -5px rgba(0, 0, 0, 0.2);
  background: url(../images/news-bg.jpg);
  margin: 0px -20px 20px -20px;
}
.tabs > .section {
  padding-top: 20px;
  display: none;
  border-top: 1px solid #2e3543;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tabs > input {
  display: none;
  position: absolute;
}
.tabs > label {
  display: inline-block;
  padding: 15px 18px;
  text-align: center;
  color: #839cb3;
  font-size: 12px;
}
.tabs > label:hover {
  cursor: pointer;
  color: #fff;
}
.tabs > input:checked + label {
  color: #69a9e5;
  background: #1b222c;
  border-bottom: 1px solid #69a9e5;
  border-top: 1px solid #202938;
  border-left: 1px solid #202938;
  border-right: 1px solid #202938;
}
#news:checked ~ #content-news,
#articles:checked ~ #content-articles,
#guides:checked ~ #content-guides {
  display: block;
}
.first-new {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(46, 53, 67, 0.3);
}
.first-new .news-img {
  opacity: 0.7;
  width: 237px;
}
.first-new .news-img img {
  width: 237px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}
.first-new .news-img:hover {
  opacity: 1;
}
.first-new .first-news-info {
  width: 335px;
}
.first-new .first-news-info h2 {
  margin-bottom: 10px;
  font-weight: normal;
}
.first-new .first-news-info p {
  text-align: justify;
}
.first-new .first-news-info .first-news-i .button {
  margin-right: 15px;
}
.news {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(46, 53, 67, 0.3);
  transition: all 0.5s ease;
  min-height: 25px;
}
.news .news-title {
  display: flex;
  align-items: center;
}
.news .news-title h2 {
  color: #61738e;
  margin-bottom: 0px;
  font-size: 12px;
  font-weight: normal;
}
.news .news-title span {
  color: #73a6ff;
  font-size: 10px;
  border: 1px solid #73a6ff;
  padding: 2px 4px;
  margin-right: 12px;
}
.news .date-more {
  color: #435067;
  width: 150px;
  text-align: right;
}
.news .more {
  display: none;
}
.news:hover {
  background: rgba(97, 115, 142, 0.04);
}
.news:hover h2 {
  color: #bbd0f0;
}
.news:hover .date {
  display: none;
}
.news:hover .more {
  display: block;
}
.carousel {
  position: relative;
  width: 510px;
  padding: 0px 40px;
}
.arrow {
  position: absolute;
  top: 85px;
  padding: 0;
  height: 30px;
  width: 30px;
  display: block;
}
.arrow:hover {
  cursor: pointer;
}
.prev {
  left: 0px;
  background: url(../images/nav-left.png) no-repeat;
}
.next {
  right: 0px;
  background: url(../images/nav-right.png) no-repeat;
}
.gallery {
  width: 510px;
  overflow: hidden;
}
.gallery ul {
  height: 205px;
  width: 9999px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: margin-left 2250ms;
}
.gallery li {
  width: 150px;
  height: 205px;
  padding: 0px;
  display: inline-block;
  margin: 0px 10px;
  background: rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}
.gallery li .shop-img img {
  max-width: 150px;
}
.gallery li .shop-title {
  color: #bbd0f0;
}
.gallery li .shop-price {
  color: #63cdff;
  font-size: 24px;
}
.gallery li .shop-button {
  width: 100%;
  position: absolute;
  bottom: 20px;
  text-align: center;
}
/* Right Sidebar
-----------------------------------------------------------------------------*/
.right-sidebar {
  width: 285px;
  background: url(../images/sidebar-bg.jpg);
  margin-bottom: 485px;
  position: relative;
}
.right-sidebar:after {
  content: "";
  background: url(../images/right-sidebar-icon.png) no-repeat;
  right: -4px;
  bottom: -4px;
  width: 25px;
  height: 25px;
  position: absolute;
}
.server-block {
  padding: 0px 0px 0px 0px;
}
.server {
  display: flex;
  align-items: center;
  padding: 10px 20px 10px 10px;
  border-bottom: 1px solid rgba(142, 227, 255, 0.06);
}
.server .server-x {
  width: 74px;
  height: 74px;
  text-align: center;
  line-height: 74px;
  font-size: 14px;
  font-weight: bold;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);
}
.server .server-info {
  width: 181px;
  color: #eef7ff;
}
.server .server-info span {
  color: #657793;
}
.server .server-info span b {
  color: #65a1ff;
  font-weight: normal;
}
.server .server-progress {
  background: rgba(0, 0, 0, 0.8);
  height: 3px;
  margin: 8px 0px;
}
.server .server-progress span {
  width: 100%;
  height: 3px;
  display: block;
}
.server .server-description a {
  color: #65a1ff;
  text-decoration: underline;
  font-size: 10px;
}
.server .server-description a:hover {
  text-decoration: none;
}
.server:last-child {
  border-bottom: none;
}
.blue .server-x {
  background: url(../images/server-blue-img.png) center no-repeat;
  color: #8ecbff;
}
.blue .server-progress span {
  background: #00baff;
  box-shadow: 0px 0px 10px 0px rgba(0, 186, 255, 0.6);
}
.pink .server-x {
  background: url(../images/server-pink-img.png) center no-repeat;
  color: #ffbae3;
}
.pink .server-progress span {
  background: #ff0096;
  box-shadow: 0px 0px 10px 0px rgba(255, 0, 150, 0.6);
}
.green .server-x {
  background: url(../images/server-green-img.png) center no-repeat;
  color: #deffba;
}
.green .server-progress span {
  background: #7fff18;
  box-shadow: 0px 0px 10px 0px rgba(127, 255, 24, 0.6);
}
.forum-block {
  /*box-shadow: 0px 15px 20px -7px rgba(0, 0, 0, 0.15);*/
}
.sidebar-forum-title {
  border-bottom: 1px solid rgba(181, 203, 243, 0.04);
  padding-bottom: 18px;
}
.forum {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(181, 203, 243, 0.04);
  padding: 20px 0px;
}
.forum p {
  margin-bottom: 7px;
}

.forum-ava i {
  font-size: 20px; /* Atur ukuran */
  color: #007d9a; /* Contoh warna */
}

.forum .forum-ava {
  width: 32px;
  text-align: center;
}
.forum .forum-ava img {
  height: 32px;
  width: 32px;
}
.forum .forum-title a {
  color: #7d99c4;
  padding-left: 8px
}

.forum-title a:hover {
  text-decoration: underline;
  color: #fff;
}
.forum .forum-info {
  width: 200px;
}
.forum .forum-info .date {
  color: #3c4961;
  font-size: 10px;
}
.forum .forum-info .autor {
  color: #65a1ff;
  text-decoration: underline;
  font-size: 10px;
}
.forum .forum-info .autor:hover {
  text-decoration: none;
}
.fast-links-block li {
  margin-left: -11px;
  background: url(../images/li-icon.png) left no-repeat;
  padding: 9px 0px 9px 29px;
}
.fast-links-block li a {
  color: #82a5dd;
}
/* Footer
-----------------------------------------------------------------------------*/
#toTop {
  position: absolute;
  display: block;
  width: 86px;
  height: 86px;
  left: 50%;
  top: -43px;
  margin-left: -43px;
  background: url(../images/up-button.png) no-repeat;
  cursor: pointer;
  z-index: 999;
}
.footer {
  height: 300px;
  position: relative;
  color: #455468;
  line-height: 1.3;
}
.footer a {
  color: #567db3;
}
.f-logo {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 42px;
}
.footer-info {
  display: flex;
  justify-content: space-around;
  position: absolute;
  width: 100%;
  top: 170px;
}
.design {
  text-align: right;
  padding-right: 20px;
  width: 210px;
}
/*
.copyright {
  padding-left: 20px;
  width: 210px;
}*/

.f-menu li {
  display: inline-block;
  background: none;
  padding: 0px 18px 0px 15px;
  border-right: 1px solid #3d4b5d;
}
.f-menu li a {
  color: #455468;
  text-transform: uppercase;
  font-size: 10px;
}
.f-menu li a:hover {
  color: #fff;
}
.f-menu li:last-child {
  padding: 0px 0px 0px 15px;
  border-right: none;
}
.f-menu li:first-child {
  padding: 0px 18px 0px 0px;
}
/*# sourceMappingURL=style.css.map */

/* Guide Page Styles - MMORPG Theme */

/* Main Content Container */
.content {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.guide-hero {
  background: linear-gradient(135deg, #1a2332 0%, #2d3748 50%, #1a2332 100%);
  border: 2px solid #4a5568;
  border-radius: 15px;
  padding: 50px 40px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.guide-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero-title {
  font-size: 36px;
  color: #f7fafc;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 18px;
  color: #cbd5e0;
  margin: 0;
  font-style: italic;
}

/* Info Cards Grid */
.info-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.info-card {
  background: linear-gradient(145deg, #2d3748 0%, #1a202c 100%);
  border: 1px solid #4a5568;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  border-color: #63b3ed;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #63b3ed, #68d391, #ffd700);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.info-card:hover::before {
  opacity: 1;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #4a5568;
}

.card-header i {
  font-size: 20px;
  color: #63b3ed;
  margin-right: 10px;
}

.card-header h2 {
  margin: 0;
  font-size: 18px;
  color: #f7fafc;
}

.info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 5px 0;
}

.info-item .label {
  color: #a0aec0;
  font-weight: 600;
}

.info-item .value {
  color: #e2e8f0;
}

.info-item .value.highlight {
  color: #68d391;
  font-weight: bold;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-item {
  color: #e2e8f0;
  padding: 5px 0;
  border-left: 3px solid #63b3ed;
  padding-left: 10px;
}

/* Guide Sections */
.guide-section {
  margin-bottom: 50px;
  background: rgba(45, 55, 72, 0.3);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(74, 85, 104, 0.5);
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 20px 25px;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  border-radius: 12px;
  border-left: 5px solid #63b3ed;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.section-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #63b3ed, #68d391);
}

.section-header i {
  font-size: 24px;
  color: #63b3ed;
  margin-right: 12px;
}

.section-header h2 {
  margin: 0;
  color: #f7fafc;
  font-size: 22px;
}

/* Activity Cards */
.activity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.activity-card {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  border: 1px solid #4a5568;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #63b3ed, #68d391);
}

.activity-card:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 15px 35px rgba(99, 179, 237, 0.3);
  border-color: #63b3ed;
}

.activity-time {
  font-size: 18px;
  color: #63b3ed;
  font-weight: bold;
  margin-bottom: 10px;
}

.activity-reward {
  font-size: 16px;
  color: #68d391;
  font-weight: bold;
  margin-bottom: 8px;
}

.activity-desc {
  color: #a0aec0;
  font-size: 14px;
}

/* Reputation Grid */
.reputation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.rep-item {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  border: 1px solid #4a5568;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.rep-item:hover {
  transform: translateX(8px) translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border-color: #ffd700;
}

.rep-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #ffd700, #68d391);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rep-item:hover::before {
  opacity: 1;
}

.rep-icon {
  font-size: 30px;
  margin-right: 15px;
}

.rep-info h3 {
  margin: 0 0 5px 0;
  color: #f7fafc;
  font-size: 16px;
}

.rep-amount {
  color: #ffd700;
  font-weight: bold;
  font-size: 14px;
}

.guide-tip {
  background: linear-gradient(135deg, #2d5016 0%, #1a202c 100%);
  border: 1px solid #68d391;
  border-radius: 12px;
  padding: 20px 25px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 6px 18px rgba(104, 211, 145, 0.2);
  position: relative;
  overflow: hidden;
}

.guide-tip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #68d391, #ffd700);
}

.guide-tip i {
  color: #ffd700;
  font-size: 18px;
  margin-right: 12px;
  margin-top: 2px;
}

.guide-tip p {
  margin: 0;
  color: #e2e8f0;
  line-height: 1.5;
}

/* Boss Categories */
.boss-category {
  margin-bottom: 35px;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  border: 1px solid #4a5568;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.boss-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.boss-category.special-boss {
  border: 2px solid #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.category-header {
  background: linear-gradient(90deg, #4a5568 0%, #2d3748 100%);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-header h3 {
  margin: 0;
  color: #f7fafc;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.category-header h3 i {
  margin-right: 8px;
  color: #63b3ed;
}

.drop-info {
  color: #68d391;
  font-weight: bold;
  font-size: 14px;
}

.spawn-time {
  color: #ffd700;
  font-weight: bold;
  font-size: 14px;
}

/* Boss Table - Minimal Design */
.boss-table-container {
    margin-top: 15px;
    overflow-x: auto;
}

.boss-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #ddd;
}

.boss-table thead {
    background: #f5f5f5;
}

.boss-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    border-bottom: 2px solid #ddd;
}

.boss-table tbody tr {
    border-bottom: 1px solid #eee;
}

.boss-table tbody tr:hover {
    background: #f9f9f9;
}

.boss-table tbody tr:last-child {
    border-bottom: none;
}

.boss-table td {
    padding: 10px 16px;
    color: #333;
    font-size: 13px;
}

.boss-table td:first-child {
    font-weight: 500;
    color: #2c3e50;
}

.boss-table td:last-child {
    font-family: 'Courier New', monospace;
    color: #666;
    text-align: center;
}

/* Treasure Chest Category - Enhanced Design */
.treasure-chest-category {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 2px solid #4f46e5;
    box-shadow: 0 0 25px rgba(79, 70, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.treasure-chest-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed, #4f46e5);
    animation: treasureGlow 3s ease-in-out infinite;
}

@keyframes treasureGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.treasure-header {
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.treasure-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.header-content h3 {
    margin: 0;
    color: #1a202c;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.header-content h3 i {
    margin-right: 10px;
    color: #1a202c;
    font-size: 22px;
}

.time-badge {
    background: rgba(26, 32, 44, 0.9);
    color: #ffd700;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.time-badge i {
    font-size: 12px;
}

.treasure-icon {
    font-size: 32px;
    color: #1a202c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: treasureFloat 2s ease-in-out infinite;
}

@keyframes treasureFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.treasure-table-container {
    margin-top: 0;
    padding: 25px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
}

.treasure-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.treasure-table thead {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

.treasure-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    color: #f7fafc;
    font-size: 14px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.treasure-table th i {
    color: #ffd700;
    font-size: 12px;
}

.rate-column {
    width: 15%;
    min-width: 80px;
}

.item-column {
    width: 60%;
}

.rarity-column {
    width: 25%;
    min-width: 100px;
}

.treasure-table tbody tr {
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.treasure-table tbody tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.treasure-table tbody tr:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.treasure-table tbody tr:hover::before {
    background: linear-gradient(180deg, #ffd700, #ffed4e);
}

.treasure-table tbody tr:last-child {
    border-bottom: none;
}

.treasure-table td {
    padding: 15px 20px;
    color: #e2e8f0;
    font-size: 14px;
    border: none;
    vertical-align: middle;
}

.rate-cell {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    margin: 2px;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.item-cell {
    font-weight: 500;
    color: #f7fafc;
    padding-left: 15px;
}

.rarity-cell {
    font-weight: 600;
    text-align: center;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rarity-cell.legendary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.rarity-cell.epic {
    background: linear-gradient(135deg, #a55eea, #8b5cf6);
    color: white;
    box-shadow: 0 2px 8px rgba(165, 94, 234, 0.3);
}

.rarity-cell.rare {
    background: linear-gradient(135deg, #26de81, #20bf6b);
    color: white;
    box-shadow: 0 2px 8px rgba(38, 222, 129, 0.3);
}

.rarity-cell.common {
    background: linear-gradient(135deg, #778ca3, #4b6584);
    color: white;
    box-shadow: 0 2px 8px rgba(119, 140, 163, 0.3);
}

/* Item row styling based on rarity */
.legendary-item {
    background: linear-gradient(90deg, rgba(255, 107, 107, 0.05), transparent);
}

.epic-item {
    background: linear-gradient(90deg, rgba(165, 94, 234, 0.05), transparent);
}

.rare-item {
    background: linear-gradient(90deg, rgba(38, 222, 129, 0.05), transparent);
}

.common-item {
    background: linear-gradient(90deg, rgba(119, 140, 163, 0.05), transparent);
}

.legendary-item:hover {
    background: linear-gradient(90deg, rgba(255, 107, 107, 0.15), rgba(255, 215, 0, 0.1));
}

.epic-item:hover {
    background: linear-gradient(90deg, rgba(165, 94, 234, 0.15), rgba(255, 215, 0, 0.1));
}

.rare-item:hover {
    background: linear-gradient(90deg, rgba(38, 222, 129, 0.15), rgba(255, 215, 0, 0.1));
}

.common-item:hover {
    background: linear-gradient(90deg, rgba(119, 140, 163, 0.15), rgba(255, 215, 0, 0.1));
}

/* Boss Grid */
.boss-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 25px;
}

.boss-card {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  border: 1px solid #4a5568;
  border-radius: 10px;
  padding: 18px 15px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.boss-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #63b3ed;
  box-shadow: 0 12px 25px rgba(99, 179, 237, 0.3);
}

.boss-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #63b3ed, #68d391);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.boss-card:hover::before {
  opacity: 1;
}

.boss-name {
  color: #f7fafc;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.boss-coords {
  color: #a0aec0;
  font-size: 11px;
  font-family: monospace;
}

.boss-placeholder {
  padding: 40px 20px;
  text-align: center;
  color: #a0aec0;
  font-style: italic;
}

/* Special Boss Info */
.special-boss-info {
  padding: 20px;
}

.boss-rewards {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.reward-item {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  border: 1px solid #ffd700;
  border-radius: 8px;
  padding: 15px 20px;
  transition: all 0.3s ease;
}

.reward-item:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.reward-item i {
  color: #ffd700;
  font-size: 18px;
  margin-right: 10px;
}

.reward-item span {
  color: #f7fafc;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content {
    padding: 15px;
  }
  
  .guide-section {
    padding: 20px;
  }
  
  .boss-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .content {
    padding: 10px;
  }
  
  .guide-hero {
    padding: 30px 20px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .info-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .activity-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .reputation-grid {
    grid-template-columns: 1fr;
  }
  
  .boss-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .boss-rewards {
    flex-direction: column;
    gap: 15px;
  }
  
  .guide-section {
    padding: 15px;
    margin-bottom: 30px;
  }
  
  .section-header {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .boss-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
}

/* Style untuk modal */
.modal {
  display: none; /* Default: modal tersembunyi */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

/* Konten modal */
.modal-content {
  margin: 10% auto;
  display: block;
  max-width: 90%;
  text-align: center;
  position: relative;
}

/* Tombol close */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #aaa;
  text-decoration: none;
}

video {
  width: 80%;
  height: auto;
  max-width: 720px;
  outline: none;
}
