/* Global */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  color: #f5f5f5;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(rgba(10,10,10,0.95), rgba(5,5,5,0.95)),
              url('bg.jpg') repeat center center fixed;
  background-size: cover;
}

main {
  flex: 1;
}

/* Header */
header {
  background: rgba(15,15,15,0.98);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #d4af37;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .logo { font-size: 26px; font-weight: bold; }
header .logo .gold { color: #d4af37; }
header nav { flex: 1; text-align: center; }
header nav a {
  color: #ccc; margin: 0 15px; text-decoration: none; font-weight: 500;
}
header nav a:hover { color: #d4af37; }
header .actions { display: flex; align-items: center; gap: 15px; position: relative; }
header .actions input {
  padding: 6px 15px; border-radius: 25px; border: 1px solid #444;
  background: #111; color: #f5f5f5;
}
header .profile {
  width: 35px; height: 35px; border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  display: flex; justify-content: center; align-items: center;
  color: #111; font-weight: bold; cursor: pointer;
}
.dropdown {
  display: none; position: absolute; top: 50px; right: 0;
  background: #222; border: 1px solid #333; border-radius: 6px;
}
.dropdown a { display: block; padding: 10px 20px; color: #ccc; text-decoration: none; }
.dropdown a:hover { background: #333; color: #d4af37; }

/* Hero banner */
.hero {
  height: 50vh;
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.4)),
              url('bg.jpg') center/cover no-repeat;
  display: flex; align-items: center; padding-left: 50px;
}
.hero-content h1 { font-size: 48px; color: #d4af37; margin: 0; }
.hero-content p { font-size: 18px; color: #ccc; margin: 10px 0; }
.btn-play {
  padding: 12px 25px; background: #d4af37; color: #111;
  border-radius: 25px; text-decoration: none; font-weight: bold;
}
.btn-play:hover { background: #ffd700; }

/* Sekcje */
.section { padding: 40px 60px; }
.section h2 { color: #d4af37; border-left: 5px solid #d4af37; padding-left: 10px; }

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.item {
  background: #1c1c1c;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.item:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(0,0,0,0.6); }
.thumb { width: 100%; display: block; }
.title { padding: 10px; text-align: center; font-size: 14px; }

/* Footer */
footer { background: rgba(15,15,15,0.98); border-top: 2px solid #d4af37; padding: 40px 20px; }
.footer-container {
  max-width: 1200px; margin: auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.footer-col h3 { color: #d4af37; margin-bottom: 15px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #ccc; text-decoration: none; }
.footer-col ul li a:hover { color: #d4af37; }
.socials a { margin-right: 10px; font-size: 20px; text-decoration: none; }
.footer-bottom { text-align: center; margin-top: 30px; color: #777; font-size: 13px; }
