:root{
  --accent:#06b6d4;
  --text:#fff;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  min-height:100vh;
  background: radial-gradient(circle at top left, #071024, #020617 70%);
  color: var(--text);
  padding: 40px 20px;
  overflow-x: hidden;
}

/* Particles Background */
#particles{
  position: fixed;
  top:0; left:0;
  width:100vw;
  height:100vh;
  pointer-events:none;
  z-index:-1;
  background:#010114;
}

/* Header */
.site-header{
  width:90%;
  max-width:1100px;
  margin:0 auto 40px;
  padding:14px 30px;
  border-radius:24px;
  backdrop-filter: blur(14px) saturate(180%);
  background: rgba(15,23,42,0.55);
  border:1px solid rgba(255,255,255,0.1);
}

.header-inner{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:50px;
  flex-wrap:wrap;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo{
  width:66px;
  height:66px;
}
.logo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.site-name{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.site-name .title{
  font-size:20px;
  font-weight:700;
}
.site-name .tag{
  font-size:13px;
  opacity:0.75;
}

.nav-list{
  display:flex;
  gap:18px;
  list-style:none;
}
.nav-list a{
  font-weight:800;
  font-size:13px;
  padding:6px 8px;
  border-radius:8px;
  color:var(--text);
  text-decoration:none;
}
.nav-list a:hover{
  background: rgba(255,255,255,0.08);
  transition:0.2s ease;
}

/* Heading */
.games-heading{
  text-align:center;
  font-size:45px;
  font-weight:700;
  margin-bottom:30px;
  letter-spacing:2px;
}

/* Search Bar */
.search-container {
  width: 350px;
  margin: 25px auto;
  position: relative;
  text-align: center;
}
.search-container input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 10px;
  border: 2px solid #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 17px;
}
.search-container input::placeholder {
  color: #ccc;
}

/* Software List */
.software-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Individual Software Card */
.software-card {
  width: 350px;
  padding: 30px;
  border-radius: 15px;
  background: rgba(15,23,42,0.6);
  box-shadow: 0 4px 15px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.software-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

/* Software Image */
.software-card img {
  width: 200px;
  height: 150px;
  object-fit: contain;
  border-radius: 5px;
  display: block;
  margin: 0 auto;
}

/* Hidden Info Section */
.game-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.software-card:hover .game-info {
  opacity: 1;
  transform: translateY(0);
}

/* Software Name */
.game-name {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-align: center;
}

/* Description */
.game-desc {
  font-size: 13px;
  color: #ccc;
  text-align: center;
}

/* Download Button */
.download-btn {
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--accent, #06b6d4);
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.2s ease;
}
.download-btn:hover {
  background: #00bcd4;
  transform: scale(1.05);
}

/* Disable selection / right-click / inspect */
body, p, h1, h2, h3, span, a, div {
  user-select: none;
}
img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
