@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* =============================================
   GLOBAL STYLES - Golden Network
   ============================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --main-font: 'Inter', sans-serif;
  --main-color: #FFDC30;
  --background-color: #24272B;
  --white-color: #FFFFFF;
  --black-color: #000000;
  --description-color: #D2D0D0;

  --green-color: #4AFF6B;
  --ip-copied-background: rgba(74, 255, 107, 0.17);
  --ip-copied-icon-background: rgba(74, 255, 107, 0.5);

  --copy-ip-button-background: rgba(255, 220, 48, 0.7);
  --how-to-join-button-background: rgba(210, 208, 208, 0.2);
  --stats-background: rgba(210, 208, 208, 0.05);
  --stat-icon-background-2: rgba(255, 220, 48, 0.5);

  --scroll-bar: rgba(210, 208, 208, 0.3);
  --scroll-bar-hover: #555555FF;

  --red-color: #FF7C7C;
  --warning-background: rgba(255, 124, 124, 0.17);
  --warning-icon-background: rgba(255, 124, 124, 0.5);
  --warning-color: #F5C1C1;

  /* Admin-Team rank colors */
  --default-rank-color: rgba(210, 208, 208, 0.3);
}

body {
  background: var(--background-color);
  font-family: var(--main-font);
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 150px;
  background: var(--background-color);
  transition: 0.3s ease-in-out;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(210, 208, 208, 0.08);
}

.navbar a {
  text-decoration: none;
}

.navbar .menu-mobile {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar .menu-mobile .logo {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  gap: 10px;
}

.navbar .menu-mobile .logo img {
  max-width: 40px;
  height: auto;
}

.navbar .menu-mobile .logo h3 {
  color: var(--white-color);
  font-weight: 900;
  font-size: 20px;
}

.navbar .links {
  display: flex;
  flex-direction: row;
  gap: 30px;
  transition: 0.3s ease-in-out;
}

.navbar .links .link {
  color: var(--description-color);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
}

.navbar .links .link.active {
  color: var(--white-color);
}

.navbar .links .link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  border-radius: 5px;
  background: var(--main-color);
}

.navbar .links .link:not(.active):hover {
  color: var(--white-color);
}

.navbar .menu-mobile .hamburger {
  color: var(--white-color);
  font-size: 20px;
  cursor: pointer;
  transition: 0.5s;
  display: none;
}

.navbar .menu-mobile .hamburger:hover {
  opacity: 0.8;
}

.navbar.active {
  max-height: 1000px;
}

.navbar.active .links {
  opacity: 1;
  z-index: 2;
}

/* =============================================
   FOOTER
   ============================================= */

#footer {
  padding: 20px 150px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: var(--stats-background);
}

#footer p {
  color: var(--description-color);
  font-size: 17px;
}

#footer p span {
  color: var(--white-color);
}

#footer .social-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

#footer .social-links .link {
  color: var(--description-color);
  text-decoration: none;
  font-size: 20px;
  transition: 0.2s;
}

#footer .social-links .link:hover {
  color: var(--white-color);
}

/* =============================================
   SCROLLBAR
   ============================================= */

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--stats-background);
}

::-webkit-scrollbar-thumb {
  background: var(--scroll-bar);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scroll-bar-hover);
}

/* =============================================
   SECTION CONTENT SPACING
   ============================================= */

section:not(#header) .content {
  padding: 90px 150px;
  width: 100%;
}

/* =============================================
   HOME PAGE — HEADER
   ============================================= */

#header {
  background: url("images/header-background.jpg") no-repeat fixed center;
  min-width: 100%;
  background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  z-index: 0;
  display: flex;
  align-items: center;
}

/* Home header specific */
.home-header {
  min-height: 800px;
  height: 80vh;
}

.home-header .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 150px;
  width: 100%;
  height: 620px;
  position: relative;
}

.home-header .content .left .ip-copied {
  color: var(--green-color);
  background: var(--ip-copied-background);
  padding: 10px 20px;
  width: fit-content;
  border-radius: 5px;
  font-size: 17px;
  display: none;
}

.home-header .content .left .ip-copied.active {
  display: flex;
}

.home-header .content .left .ip-copied.error {
  background: var(--warning-background);
  color: var(--red-color);
}

.home-header .content .left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-header .content .left .server-name {
  display: flex;
  flex-direction: column;
}

.home-header .content .left .server-name p {
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.home-header .content .left .server-name h1 {
  color: var(--main-color);
  text-transform: uppercase;
  font-size: 65px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.home-header .content .left .server-description {
  color: var(--description-color);
  font-size: 18px;
  font-weight: 400;
  max-width: 620px;
  line-height: 1.7;
}

.home-header .content .left .buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 5px;
}

.home-header .content .left .buttons .copy-ip {
  background: var(--copy-ip-button-background);
  border: 2px solid var(--main-color);
  border-radius: 5px;
  padding: 12px 32px;
  color: var(--white-color);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  font-family: var(--main-font);
}

.home-header .content .left .buttons .copy-ip:hover {
  background: var(--main-color);
  color: var(--black-color);
}

.home-header .content .left .buttons .how-to-join {
  background: var(--how-to-join-button-background);
  border: 2px solid rgba(210, 208, 208, 0.4);
  border-radius: 5px;
  padding: 12px 32px;
  color: var(--description-color);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  font-family: var(--main-font);
}

.home-header .content .left .buttons .how-to-join:hover {
  color: var(--white-color);
  border-color: var(--white-color);
}

.home-header .content .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.home-header .content .right .logo-img {
  max-width: 150px;
  transform: translatey(0px);
  animation: float 4s ease-in-out infinite;
}

.home-header .content .right .stats {
  display: flex;
  flex-direction: row;
  gap: 50px;
  background: var(--stats-background);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(210, 208, 208, 0.08);
  backdrop-filter: blur(4px);
}

.home-header .content .right .stats .stat {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.home-header .content .right .stats .stat .icon {
  border-radius: 5px;
  background: var(--stat-icon-background-2);
  padding: 10px;
  transition: .2s ease-in-out;
}

.home-header .content .right .stats .stat .icon i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  position: relative;
  background: var(--main-color);
  color: var(--black-color);
  border-radius: 5px;
}

.home-header .content .right .stats .stat:hover .icon {
  transform: scale(1.1);
}

.home-header .content .right .stats .stat .texts {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-header .content .right .stats .stat .texts h5 {
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.home-header .content .right .stats .stat .texts p {
  color: var(--description-color);
  font-size: 15px;
  font-weight: 400;
}

.home-header .content .right .stats .stat .texts p span {
  color: var(--green-color);
  font-weight: 600;
}

/* =============================================
   HOME PAGE — ABOUT
   ============================================= */

#about .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
  align-items: center;
}

#about .content .left {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 30px;
  flex: 1;
}

#about .content .left .section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--white-color);
  position: relative;
  padding-bottom: 16px;
}

#about .content .left .section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 1px;
  border-radius: 5px;
  background: rgba(210, 208, 208, 0.3);
}

#about .content .left .section-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 5px;
  background: var(--main-color);
}

#about .content .left .about-us {
  color: var(--description-color);
  font-size: 17px;
  line-height: 1.8;
}

#about .content .right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

#about .content .right img {
  width: auto;
  max-height: 280px;
  position: relative;
  z-index: 1;
}

#about .content .right .img-background {
  position: absolute;
  width: 220px;
  height: calc(100% - 20px);
  border-radius: 40px 3px;
  background: var(--main-color);
  z-index: 0;
  bottom: 0;
  right: -20px;
}

/* =============================================
   HOME PAGE — GAMEMODES
   ============================================= */

#minigames {
  background: var(--stats-background);
  border-top: 1px solid rgba(210, 208, 208, 0.06);
  border-bottom: 1px solid rgba(210, 208, 208, 0.06);
}

#minigames .content {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

/* Section header */
#minigames .content > .section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
}

#minigames .content > .section-header .section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--white-color);
}

#minigames .content > .section-header .section-title span {
  color: var(--main-color);
}

#minigames .content > .section-header p {
  color: var(--description-color);
  font-size: 17px;
  max-width: 600px;
  line-height: 1.7;
}

/* Game cards grid */
#minigames .content .games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

#minigames .content .games-grid .game-card {
  background: rgba(210, 208, 208, 0.04);
  border: 1px solid rgba(210, 208, 208, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
}

#minigames .content .games-grid .game-card:hover {
  border-color: rgba(255, 220, 48, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

#minigames .content .games-grid .game-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

#minigames .content .games-grid .game-card .card-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

#minigames .content .games-grid .game-card .card-info h3 {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 700;
}

#minigames .content .games-grid .game-card .card-info p {
  color: var(--description-color);
  font-size: 15px;
  line-height: 1.6;
}

#minigames .content .games-grid .game-card .card-badge {
  display: inline-block;
  background: var(--stat-icon-background-2);
  color: var(--main-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
  margin: 0 22px 20px;
}

/* =============================================
   HOME PAGE — DISCORD SECTION
   ============================================= */

#discord {
  background: url("images/header-background.jpg") no-repeat fixed center;
  min-width: 100%;
  background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  z-index: 0;
  display: flex;
  align-items: center;
  position: relative;
}

#discord::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 39, 43, 0.55);
}

#discord .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

#discord .content .section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--white-color);
  text-align: center;
  line-height: 1.4;
}

#discord .content .section-title span {
  color: var(--main-color);
}

#discord .content .join-discord {
  background: var(--copy-ip-button-background);
  border: 2px solid var(--main-color);
  border-radius: 5px;
  padding: 12px 36px;
  color: var(--white-color);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  font-family: var(--main-font);
}

#discord .content .join-discord:hover {
  background: var(--main-color);
  color: var(--black-color);
}

/* =============================================
   HOME PAGE — VOTE
   ============================================= */

#vote .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
  align-items: flex-start;
}

#vote .content .info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
}

#vote .content .info .section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--white-color);
  position: relative;
  padding-bottom: 16px;
}

#vote .content .info .section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 1px;
  border-radius: 5px;
  background: rgba(210, 208, 208, 0.3);
}

#vote .content .info .section-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 5px;
  background: var(--main-color);
}

#vote .content .info .section-description {
  color: var(--description-color);
  font-size: 17px;
  line-height: 1.8;
}

#vote .content .links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

#vote .content .links .url {
  text-decoration: none;
}

#vote .content .links .url:hover .link .link-description .icon {
  transform: scale(1.1);
}

#vote .content .links .link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--stats-background);
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(210, 208, 208, 0.08);
  transition: 0.2s;
}

#vote .content .links .url:hover .link {
  border-color: rgba(255, 220, 48, 0.25);
}

#vote .content .links .link h5 {
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

#vote .content .links .link .link-description {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

#vote .content .links .link .link-description .description {
  color: var(--description-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

#vote .content .links .link .link-description .icon {
  border-radius: 5px;
  background: var(--stat-icon-background-2);
  padding: 10px;
  transition: 0.2s ease-in-out;
  flex-shrink: 0;
}

#vote .content .links .link .link-description .icon i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background: var(--main-color);
  color: var(--black-color);
  border-radius: 5px;
}

/* =============================================
   HOME PAGE — FAQ
   ============================================= */

#faq {
  background: var(--stats-background);
  border-top: 1px solid rgba(210, 208, 208, 0.06);
}

#faq .content {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

#faq .content .info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
  position: sticky;
  top: 100px;
}

#faq .content .info .section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--white-color);
  position: relative;
  padding-bottom: 16px;
}

#faq .content .info .section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 1px;
  border-radius: 5px;
  background: rgba(210, 208, 208, 0.3);
}

#faq .content .info .section-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 5px;
  background: var(--main-color);
}

#faq .content .info .section-title span {
  color: var(--main-color);
}

#faq .content .info .section-description {
  color: var(--description-color);
  font-size: 17px;
  line-height: 1.8;
}

#faq .content .accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1.5;
}

#faq .content .accordion .accordion-item {
  background: rgba(210, 208, 208, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(210, 208, 208, 0.08);
  overflow: hidden;
  transition: border-color 0.2s;
}

#faq .content .accordion .accordion-item.active {
  border-color: rgba(255, 220, 48, 0.25);
}

#faq .content .accordion .accordion-item .accordion-item-header {
  padding: 20px 50px 20px 22px;
  line-height: 1.6;
  font-weight: 600;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  color: var(--white-color);
  font-size: 16px;
}

#faq .content .accordion .accordion-item .accordion-item-header::after {
  content: "\002B";
  font-size: 20px;
  position: absolute;
  right: 18px;
  color: var(--main-color);
}

#faq .content .accordion .accordion-item .accordion-item-header.active::after {
  content: "\2212";
}

#faq .content .accordion .accordion-item .accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.25s ease-in-out;
}

#faq .content .accordion .accordion-item .accordion-item-body .accordion-item-body-content {
  padding: 18px 22px 22px;
  line-height: 1.7;
  border-top: 1px solid rgba(210, 208, 208, 0.08);
  color: var(--description-color);
  font-size: 15px;
}

/* =============================================
   INNER PAGES — SHARED HEADER
   ============================================= */

.inner-header {
  min-height: 400px;
  height: 35vh;
}

.inner-header .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 0 150px;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.inner-header .content .info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inner-header .content .info .minecraft-server-ip {
  color: var(--description-color);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.inner-header .content .info .title {
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.inner-header .content .info .title span {
  color: var(--main-color);
}

.inner-header .content .description {
  color: var(--description-color);
  font-size: 17px;
  font-weight: 400;
  max-width: 600px;
  line-height: 1.6;
}

/* =============================================
   RULES PAGE
   ============================================= */

#rules .content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

#rules .warning {
  background: var(--warning-background);
  padding: 20px 25px;
  border-radius: 8px;
  border: 1px solid rgba(255, 124, 124, 0.2);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#rules .warning p {
  color: var(--warning-color);
  font-size: 16px;
  font-weight: 500;
}

#rules .warning .icon {
  border-radius: 5px;
  background: var(--warning-icon-background);
  padding: 10px;
  transition: .2s ease-in-out;
  flex-shrink: 0;
}

#rules .warning .icon i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 20px;
  background: var(--red-color);
  color: var(--white-color);
  border-radius: 5px;
}

#rules .warning:hover .icon {
  transform: scale(1.1);
}

#rules .rules {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#rules .rules .rules-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--white-color);
  position: relative;
  padding-bottom: 16px;
}

#rules .rules .rules-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 1px;
  border-radius: 5px;
  background: rgba(210, 208, 208, 0.3);
}

#rules .rules .rules-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 5px;
  background: var(--main-color);
}

#rules .rules .rules-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 40px;
}

#rules .rules .rules-list .rule {
  color: var(--description-color);
  font-size: 16px;
  line-height: 1.7;
}

#rules .rules .rules-list .rule span {
  color: var(--main-color);
}

/* Rules - Join server CTA */
#join-server {
  background: var(--stats-background);
  border-top: 1px solid rgba(210, 208, 208, 0.06);
  min-width: 100%;
  display: flex;
  align-items: center;
}

#join-server .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
}

#join-server .content .section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--white-color);
  line-height: 1.4;
  max-width: 700px;
}

#join-server .content .section-title span {
  color: var(--main-color);
}

#join-server .content .buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

#join-server .content .buttons .copy-ip {
  background: var(--copy-ip-button-background);
  border: 2px solid var(--main-color);
  border-radius: 5px;
  padding: 12px 32px;
  color: var(--white-color);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  font-family: var(--main-font);
}

#join-server .content .buttons .join-discord {
  background: var(--how-to-join-button-background);
  border: 2px solid rgba(210, 208, 208, 0.4);
  border-radius: 5px;
  padding: 12px 32px;
  color: var(--description-color);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  font-family: var(--main-font);
}

#join-server .content .buttons .copy-ip:hover {
  background: var(--main-color);
  color: var(--black-color);
}

#join-server .content .buttons .join-discord:hover {
  color: var(--white-color);
  border-color: var(--white-color);
}

#join-server .content .ip-copied {
  color: var(--green-color);
  background: var(--ip-copied-background);
  padding: 10px 20px;
  width: fit-content;
  border-radius: 5px;
  font-size: 17px;
  display: none;
}

#join-server .content .ip-copied.active {
  display: flex;
}

#join-server .content .ip-copied.error {
  background: var(--warning-background);
  color: var(--red-color);
}

/* =============================================
   ADMIN-TEAM PAGE
   ============================================= */

#admin-team .content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

#admin-team .group {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

#admin-team .group .rank-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--white-color);
  position: relative;
  padding-bottom: 16px;
}

#admin-team .group .rank-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 1px;
  border-radius: 5px;
  background: rgba(210, 208, 208, 0.3);
}

#admin-team .group .rank-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 5px;
  background: var(--main-color);
}

#admin-team .group .users {
  display: flex;
  flex-direction: row;
  gap: 25px;
  flex-wrap: wrap;
}

#admin-team .group .users .user {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  background: rgba(210, 208, 208, 0.04);
  border: 1px solid rgba(210, 208, 208, 0.08);
  border-radius: 10px;
  padding: 20px 18px;
  transition: 0.2s;
  min-width: 140px;
}

#admin-team .group .users .user:hover {
  border-color: rgba(255, 220, 48, 0.25);
  transform: translateY(-3px);
}

#admin-team .group .users .user img {
  max-width: 110px;
}

#admin-team .group .users .user .name {
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

#admin-team .group .users .user .rank {
  color: var(--white-color);
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  padding: 4px 12px;
  text-align: center;
  border-radius: 20px;
}

.rank {
  background: var(--default-rank-color);
}

/* =============================================
   CONTACT PAGE
   ============================================= */

#contacts .content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#contacts .content .section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--white-color);
  position: relative;
  padding-bottom: 16px;
}

#contacts .content .section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 1px;
  border-radius: 5px;
  background: rgba(210, 208, 208, 0.3);
}

#contacts .content .section-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 5px;
  background: var(--main-color);
}

#contacts .content .columns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 80px;
}

#contacts .content .columns .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 2;
}

#contacts .content .columns .contact-form .row {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}

#contacts .content .columns .contact-form .row label {
  color: var(--description-color);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.row input {
  background: rgba(210, 208, 208, 0.07);
  border: 1px solid rgba(210, 208, 208, 0.1);
  padding: 14px 18px;
  font-size: 16px;
  color: var(--white-color);
  outline: none;
  border-radius: 6px;
  transition: 0.2s;
  font-family: var(--main-font);
}

.row textarea {
  background: rgba(210, 208, 208, 0.07);
  padding: 14px 18px;
  font-size: 15px;
  outline: none;
  line-height: 1.7;
  border-radius: 6px;
  color: var(--white-color);
  font-family: var(--main-font);
  border: 1px solid rgba(210, 208, 208, 0.1);
  transition: 0.2s;
  resize: vertical;
  overflow-y: auto;
  min-height: 180px;
  max-height: 350px;
}

.row input:focus, .row textarea:focus {
  border-color: rgba(255, 220, 48, 0.4);
  background: rgba(210, 208, 208, 0.1);
}

.row input:hover, .row textarea:hover {
  background: rgba(210, 208, 208, 0.1);
}

.row input::placeholder, .row textarea::placeholder {
  color: rgba(210, 208, 208, 0.4);
}

#contacts .content .columns .contact-form .form-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

#contacts .content .columns .contact-form .form-footer button {
  background: var(--copy-ip-button-background);
  border: 2px solid var(--main-color);
  border-radius: 5px;
  padding: 12px 28px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--main-font);
}

#contacts .content .columns .contact-form .form-footer button:hover {
  background: var(--main-color);
  color: var(--black-color);
}

#contacts .content .columns .contact-form .form-footer .alert {
  color: rgba(210, 208, 208, 0.5);
  font-size: 13px;
}

#contacts .content .columns .sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

#contacts .content .columns .url {
  text-decoration: none;
  height: fit-content;
}

#contacts .content .columns .url:hover .link .link-description .icon {
  transform: scale(1.1);
}

#contacts .content .columns .link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(210, 208, 208, 0.04);
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(210, 208, 208, 0.08);
  transition: 0.2s;
}

#contacts .content .columns .url:hover .link {
  border-color: rgba(255, 220, 48, 0.25);
}

#contacts .content .columns .link h5 {
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

#contacts .content .columns .link .link-description {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

#contacts .content .columns .link .link-description .description {
  color: var(--description-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

#contacts .content .columns .link .link-description .description .discord-online-users {
  color: var(--green-color);
  font-weight: 600;
}

#contacts .content .columns .link .link-description .icon {
  border-radius: 5px;
  background: var(--stat-icon-background-2);
  padding: 10px;
  transition: 0.2s ease-in-out;
  flex-shrink: 0;
}

#contacts .content .columns .link .link-description .icon i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background: var(--main-color);
  color: var(--black-color);
  border-radius: 5px;
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media screen and (max-width: 1625px) {
  .navbar { padding: 20px 90px; }
  section:not(#header) .content { padding: 90px; }
  #footer { padding: 20px 90px; }
  .home-header .content { padding: 150px 90px; align-items: flex-start; }
  .inner-header .content { padding: 0 90px; }
}

@media screen and (max-width: 1361px) {
  .home-header .content {
    flex-direction: column;
    padding: 120px 90px;
    height: auto;
    gap: 50px;
  }
  .home-header .content .right .logo-img { display: none; }
  .home-header .content .right .stats { width: fit-content; }
}

@media screen and (max-width: 1100px) {
  #minigames .content .games-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 1000px) {
  #faq .content { flex-direction: column; }
  #faq .content .info { position: static; }
  #vote .content { flex-direction: column; gap: 40px; }
}

@media screen and (max-width: 867px) {
  .navbar {
    flex-direction: column;
    gap: 30px;
    max-height: 80px;
    overflow: hidden;
  }
  .navbar .menu-mobile { width: 100%; }
  .navbar .menu-mobile .hamburger { display: flex; }
  .navbar .links {
    flex-direction: column;
    order: 2;
    width: 100%;
    opacity: 0;
    z-index: -1;
  }
  .navbar.active { max-height: 1000px; overflow: visible; }
  .navbar.active .links { opacity: 1; z-index: 2; }
}

@media screen and (max-width: 819px) {
  .navbar { padding: 20px 30px; }
  section:not(#header) .content { padding: 50px 30px; }
  #footer { padding: 20px 30px; }
  .home-header .content { padding: 120px 30px; }
  .inner-header .content { padding: 0 30px; }
  .inner-header .content .info .title { font-size: 40px; }
  .home-header .content .left .server-name h1 { font-size: 40px; }
  .home-header .content .right .stats { width: 100%; justify-content: space-between; }
}

@media screen and (max-width: 700px) {
  #minigames .content .games-grid { grid-template-columns: 1fr; }
  #contacts .content .columns { flex-direction: column; gap: 40px; }
  #about .content { flex-direction: column; }
}

@media screen and (max-width: 621px) {
  .home-header .content .right .stats { flex-direction: column; align-items: flex-start; }
}

@media screen and (max-width: 530px) {
  .inner-header .content .info .title { font-size: 30px; }
}

@media screen and (max-width: 462px) {
  #rules .warning { flex-direction: column; gap: 15px; text-align: center; }
}

@media screen and (max-width: 447px) {
  .home-header .content .left .server-name h1 { font-size: 30px; }
}

@media screen and (max-width: 383px) {
  .home-header .content .left .buttons { flex-direction: column; }
}

@media screen and (max-width: 380px) {
  #join-server .content .buttons { flex-direction: column; width: 100%; }
}

@media screen and (max-width: 564px) {
  #footer { flex-direction: column; gap: 20px; align-items: center; justify-content: center; text-align: center; }
}

@media screen and (max-width: 540px) {
  #contacts .content .columns .contact-form .form-footer { flex-direction: column; align-items: flex-start; }
  #contacts .content .columns .contact-form .form-footer button { width: 100%; justify-content: center; }
}
