* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #07d687;
  --accent-hover: #00ffd5;
  --text-main: #e8e8e8;
  --text-secondary: #cccccc;
  --bg-main: #0b0b0b;
  --bg-card: #111;
}
nav a.active {
  color: var(--accent) !important;
}

body {
  background: url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: var(--text-main);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.container { width: 90%; max-width: 1100px; margin: auto; }
.container img { border-radius: 3px; }

header {
  background-color:black;
  padding: 15px 0;
  border-bottom: 1px solid #222;
}

header .container { display: flex; justify-content: space-between; align-items: center; }
header nav a { margin-left: 18px; color: aliceblue; text-decoration: none; font-weight: 500; transition: color 0.3s; }
header nav a:hover { color: var(--accent-hover); }

.hero { text-align: center; padding: 120px 20px 80px; background: #00000092; }
.hero h1 { font-size: 60px; font-weight: 700; letter-spacing: 2px; color: var(--accent); text-shadow: 0 0 3px rgba(152, 251, 152, 0.873); }
.hero h2 { font-size: 30px; margin-top: 5px; }
.hero p { font-size: 18px; margin-top: 20px; color: var(--text-secondary); }

.gallery {
  background-color: rgba(0, 0, 0, 0.516);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 100px;
}

.thumb { text-decoration: none; color: inherit; display: block; transition: 0.3s; }

.thumb-box {
  width: 100%;
  height: 260px;
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
  transition: 0.3s;
}

.thumb-box img { width: 100%; height: 100%; object-fit: cover; }

.thumb-box::after {
  content: "►";
  position: absolute;
  font-size: 38px;
  color: rgba(255,255,255,0.85);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.thumb-label-bar {
  text-align: center;
  padding: 10px 0;
  font-size: 15px;
  background: rgba(0,0,0,0.65);
  margin-top: 4px;
  border-radius: 6px;
  transition: 0.3s;
}

.thumb:hover .thumb-box { border-color: var(--accent); transform: translateY(-4px); }
.thumb:hover .thumb-label-bar { color: var(--accent); }

.services { margin-bottom: 100px; }
.services h2 { margin-bottom: 20px; color: var(--accent); }

.collaboration-grid { display: flex; justify-content: center; margin-bottom: 100px; }
.collab-item { display: flex; flex-direction: column; align-items: center; background-color: rgba(0, 0, 0, 0.75); padding: 20px; border-radius: 8px; width: 196px; transition: 0.3s; text-decoration: none; }
.collab-item img { width: 120px; margin-bottom: 10px; object-fit: contain; }
.collab-item p { font-weight: 500; color: aliceblue;}
.collab-item:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }

.contact { text-align: center; margin-top: 80px; color: var(--accent); text-shadow: 0 0 2px aliceblue; }
.contact p { margin-bottom: 25px; font-size: 20px; font-weight: bold; }
.icon-link { display: inline-block; margin: 20px 90px 0; }
.icon-link img { width: 40px; transition: 0.3s; cursor: pointer; }
.icon-link img.artstation-icon { width: 130px; }
.icon-link img:hover { transform: scale(1.15); }

footer { text-align: center; padding: 40px 0; border-top: 1px solid #222; margin-top: 80px; opacity: 0.6; font-size: 14px; }
