/* Hero Section */
.hero {
    background: #101010;
    text-align: center;
    padding: 120px 20px;
}

.hero-content {
    max-width: 800px;
    margin: auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 1.25rem;
    color: #bbbbbb;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 12px 20px;
    background-color: #8e44ad;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s ease;
    box-shadow: 0 4px 10px rgba(142, 68, 173, 0.4);
}

.cta-button:hover {
    background-color: #732d91;
}

.cta-button img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.our-servers {
    padding: 60px 20px;
    background-color: #1c1c1c;
    color: #fff;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #ccc;
}

.server-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.server-card {
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 20px;
    max-width: 300px;
    flex: 1 1 250px;
    text-align: left;
    transition: transform 0.2s ease;
}

.server-card:hover {
    transform: scale(1.03);
}

.server-card h3 {
    margin-top: 0;
    color: #4caf50;
}

.server-card p {
    font-size: 0.95rem;
    color: #ddd;
}

.server-link {
    display: inline-block;
    margin-top: 10px;
    color: #4caf50;
    text-decoration: none;
    font-weight: bold;
}

.server-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #111;
    color: #888;
    text-align: center;
    padding: 25px;
    font-size: 0.95rem;
    border-top: 1px solid #222;
}

/* Universal Button Style */
.btn-home,
.btn-gamepanel,
.btn-adminpanel,
.btn-login {
  --clr-font-main: hsla(0 0% 20% / 100);
  --btn-bg-1: hsla(194 100% 69% / 1);
  --btn-bg-2: hsla(217 100% 56% / 1);
  --btn-bg-color: hsla(360 100% 100% / 1);
  --radii: 0.5em;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 0.5em 1em;
  min-width: 100px;
  min-height: 36px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.8s;
  background-size: 280% auto;
  background-image: linear-gradient(
    325deg,
    var(--btn-bg-2) 0%,
    var(--btn-bg-1) 55%,
    var(--btn-bg-2) 90%
  );
  border: none;
  border-radius: var(--radii);
  color: var(--btn-bg-color);
  box-shadow:
    0px 0px 20px rgba(71, 184, 255, 0.5),
    0px 5px 5px -1px rgba(58, 125, 233, 0.25),
    inset 4px 4px 8px rgba(175, 230, 255, 0.5),
    inset -4px -4px 8px rgba(19, 95, 216, 0.35);
}

.btn-home:hover,
.btn-gamepanel:hover,
.btn-adminpanel:hover,
.btn-login:hover {
  background-position: right top;
}

.btn-home:is(:focus, :focus-visible, :active),
.btn-home.active,
.btn-gamepanel.active,
.btn-adminpanel.active,
.btn-login.active {
  outline: none;
  box-shadow:
    0 0 0 3px var(--btn-bg-color),
    0 0 0 6px var(--btn-bg-2);
}

@media (prefers-reduced-motion: reduce) {
  button {
    transition: linear;
  }
}

.btn-logout {
  --btn-bg-1: hsla(0, 100%, 70%, 1);
  --btn-bg-2: hsla(0, 100%, 50%, 1);
  --btn-bg-color: #fff;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 0.5em 1em;
  min-width: 100px;
  min-height: 36px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.8s;
  background-size: 280% auto;
  background-image: linear-gradient(
    325deg,
    var(--btn-bg-2) 0%,
    var(--btn-bg-1) 55%,
    var(--btn-bg-2) 90%
  );
  border: none;
  border-radius: 0.5em;
  color: var(--btn-bg-color);
  box-shadow:
    0px 0px 20px rgba(255, 71, 71, 0.5),
    0px 5px 5px -1px rgba(233, 58, 58, 0.25),
    inset 4px 4px 8px rgba(255, 175, 175, 0.5),
    inset -4px -4px 8px rgba(216, 19, 19, 0.35);
}

.btn-logout:hover {
  background-position: right top;
}

.btn-logout:is(:focus, :focus-visible, :active) {
  outline: none;
  box-shadow:
    0 0 0 3px var(--btn-bg-color),
    0 0 0 6px var(--btn-bg-2);
}

/* ===== TOP BANNER ===== */
.top-banner {
    width: 100%;
    height: 320px;
    background-image: url("../img/banner.png"); /* YOUR IMAGE */
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.85)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.banner-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
    .top-banner {
        height: 220px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }
}