/*
Theme Name: Guess The Player Theme
Theme URI: https://example.com
Author: OpenAI
Author URI: https://openai.com
Description: Custom WordPress tema za sportsku igru Pogodi igrača.
Version: 1.0
Text Domain: guess-the-player
*/

:root {
  --bg: #0b1220;
  --bg-soft: #121a2b;
  --card: #182235;
  --text: #f3f7ff;
  --muted: #9fb0cc;
  --primary: #2f6df6;
  --primary-hover: #1e56cf;
  --border: rgba(255,255,255,0.08);
  --radius: 18px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #09101d 0%, #0f1728 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 16, 29, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

}