@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto Condensed", sans-serif;
  
}

body {
  background: linear-gradient(to bottom right, #cce0f5 0%, #f0f4f8 100%);
  color: #1c1c1e;
  min-height: 100vh;
  overflow-x: hidden;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: opacity 0.3s ease;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 200, 200, 0.3);
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar-links li a {
  text-decoration: none;
  color: #000;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar-links li a:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #222;
}


/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
   flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(to top, rgba(255,255,255,1), transparent 80%),
              url('images/background-scaled-1.webp') center center / cover no-repeat;
}


.hero-logo {
  width: 40vw;
  height: auto;
  transition: opacity 0.3s ease;
}

.server-ip {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: #222;
  text-shadow: 0 0 6px rgba(255,255,255,0.8);
  user-select: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.server-ip-container {
  margin-top: 3rem;
  text-align: center;
  user-select: none;
}

.server-ip-label {
  font-size: 3rem;
  color: #222;
  margin-bottom: 0.3rem;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(255,255,255,0.8);
}

.ip-address {
  display: inline-block;
  background-color: white;
  color: #222;
  padding: 0.4rem 1rem;
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  user-select: text;
  transition: background-color 0.2s ease;
}

.ip-address:hover {
  background-color: #f0f0f0;
}


/* Content Section */
.content-section {
  display: flex;
  justify-content: space-between;
  padding: 4rem 8%;
  gap: 2rem;
  flex-wrap: wrap;
}

.left-text, .right-text {
  flex: 1 1 100%; /* full width */
}

.text-wrapper > h2 > img {
  width: 5%;
  vertical-align: middle;
}

.text-wrapper {
  width: 50%;  /* only half width inside each div */
}

.right-text > .text-wrapper {
    float: right;
}

.right-text > .text-wrapper > iframe {
    float: right;
}

.left-text h2,
.right-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.right-text h2 {
    text-align: right;
}

.left-text p,
.right-text p {
  font-size: 1.1rem;
  color: #333;
}

.right-text p {
    text-align: right;
}

/* Footer */
.footer {
  padding: 2rem 8%;
  text-align: center;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(200, 200, 200, 0.3);
  margin-top: 4rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-links a {
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease, color 0.2s ease;
  color: white;
}

/* Discord - blurple */
.social-links a[aria-label="Discord"] {
  background-color: #5865F2;
}

.social-links a[aria-label="Discord"]:hover {
  background-color: #4752c4;
}

/* Instagram - gradient simulation with fallback solid */
.social-links a[aria-label="TikTok"] {
  background-color: #1d1d1d;
}

.social-links a[aria-label="TikTok"]:hover {
  background-color: #000000;
}

/* Icon images inside buttons */
.social-links a img {
  display: inline-block;
  width: 24px;
  height: 24px;
}

/* Icon images inside buttons */
.social-links a img {
  display: inline-block;
  width: 24px;
  height: 24px;
}

/* Server Status */

.server-status {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
}

.status-box {
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%), url('images/server.png') no-repeat center right;
  background-size: cover;
}

.status-title {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}

.status-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  width: 100%;
}

.status-text {
  text-align: left;
  flex: 1;
}


.status-indicator {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  margin-left: 0.5rem;
  background-color: gray;
  /* default */
}

.player-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('images/person.svg');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 0.4rem;
}