/*
Theme Name: Dota Clone
Theme URI: https://example.com/dota-clone
Author: Kenan
Description: Dark Gaming Blog & Store Theme
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: dota-clone
*/

body {
  background-color: #0f0f0f;
  color: #e0e0e0;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: #ff0044;
  text-decoration: none;
}

a:hover {
  color: #00ffcc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header Styling */
.site-header {
  background-color: #1a1a1a;
  padding: 20px 0;
  border-bottom: 2px solid #ff0044;
}

.logo {
  margin: 0;
  font-size: 28px;
  text-transform: uppercase;
}

.logo a {
  color: #ffffff;
}

.main-nav {
  margin-top: 10px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  display: inline-block;
}

.nav-menu li a {
  color: #ff0044;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 15px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-menu li a:hover {
  color: #00ffcc;
  background-color: #222;
  border-radius: 4px;
}

/* Post Grid Layout */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Einzelne Beitragskarte */
.post-card {
  background-color: #1a1a1a;
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 0, 68, 0.2);
}

.post-card:hover {
  transform: scale(1.03);
}

/* Beitragsbild */
.post-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

/* Beitragstitel */
.post-card h2 {
  margin-top: 10px;
  font-size: 18px;
  color: #ff0044;
  text-align: center;
}

/* Beitragstext */
.post-card p {
  font-size: 14px;
  color: #ccc;
  margin-top: 10px;
  text-align: center;
}

/* Sidebar */
.sidebar {
  margin-top: 40px;
}

.widget {
  background-color: #1a1a1a;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
}

.widget h3 {
  color: #ff0044;
  margin-bottom: 10px;
}

/* 🔥 Server-Seite mit Hintergrundbild */
.server-section {
  position: relative;
  padding: 40px;
  overflow: hidden;
  background-color: #0f0f0f;
}

.server-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://www.kill3r-b3an.de/wp-content/uploads/2025/10/cs2.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: 0;
  filter: brightness(1.1) contrast(1.05);
}

.server-section > * {
  position: relative;
  z-index: 1;
}

/* Steam-Button-Box */
.button-box {
  background-color: rgba(30, 30, 30, 0.85);
  border: 1px solid #444;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  width: 320px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  text-align: center;
  color: #fff;
}

/* Server-Titel */
.server-label {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #fff;
}

/* Steam-Connect-Button */
.connect-btn {
  display: inline-block;
  background-color: #0078d7;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.connect-btn:hover {
  background-color: #005fa3;
}

/* Hinweistext */
.notice {
  font-size: 16px;
  margin-top: 30px;
  color: #fff;
}

/* 🌌 Globales Hintergrundbild für alle Seiten */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('https://www.kill3r-b3an.de/wp-content/uploads/2025/11/cs2_css.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: -1;
  filter: brightness(1.1) contrast(1.05);
  pointer-events: none;
}