* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0b0f17;
  color: #f5f7fa;
  font-family: Arial, Helvetica, sans-serif;
}

header {
  height: 80px;
  max-width: 1200px;
  margin: auto;
  padding: 0 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 5px;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: #aeb8c6;
  text-decoration: none;
}

nav a:hover {
  color: white;
}

main {
  max-width: 1200px;
  margin: auto;
  padding: 0 32px;
}

.hero {
  min-height: 650px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-small {
  color: #6f8cff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.hero h1 {
  margin: 0;
  max-width: 800px;

  font-size: 82px;
  line-height: 0.95;
  letter-spacing: -4px;
}

.hero p {
  margin: 30px 0;
  max-width: 600px;

  color: #aeb8c6;
  font-size: 21px;
  line-height: 1.6;
}

.button {
  width: fit-content;

  background: #f5f7fa;
  color: #0b0f17;

  padding: 15px 25px;
  border-radius: 8px;

  text-decoration: none;
  font-weight: bold;
}

.projects {
  padding: 100px 0;
}

.projects h2,
.about h2 {
  font-size: 38px;
  margin-bottom: 40px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.project-card {
  min-height: 300px;
  padding: 35px;

  border: 1px solid #273142;
  border-radius: 18px;

  background: #111722;
}

.project-number {
  color: #6f8cff;
  font-size: 14px;
  font-weight: bold;
}

.project-card h3 {
  font-size: 32px;
  margin: 35px 0 15px;
}

.project-card p {
  color: #aeb8c6;
  line-height: 1.7;
  max-width: 470px;
}

.project-card span {
  display: block;
  margin-top: 35px;

  color: #6f8cff;
  font-size: 14px;
}

.about {
  padding: 100px 0 140px;
  max-width: 700px;
}

.about p {
  color: #aeb8c6;
  font-size: 20px;
  line-height: 1.8;
}

footer {
  max-width: 1200px;
  margin: auto;

  padding: 30px 32px;

  border-top: 1px solid #273142;

  display: flex;
  justify-content: space-between;

  color: #7e8999;
  font-size: 14px;
}

@media (max-width: 700px) {

  header {
    padding: 0 20px;
  }

  nav {
    display: none;
  }

  main {
    padding: 0 20px;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1 {
    font-size: 54px;
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 18px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 30px 20px;
    gap: 20px;
    flex-direction: column;
  }
}
.logo {
  position: relative;
}

.logo::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 7px;
  background: #6f8cff;
  border-radius: 10px;
}

.project-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: #6f8cff;
}

.button {
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #dfe5ff;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(111, 140, 255, 0.08);
  filter: blur(80px);
  right: 5%;
  top: 170px;
  pointer-events: none;
}

.hero {
  position: relative;
}
.bricko-card {
  position: relative;
  overflow: hidden;
}

.bricko-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -70px;
  top: -70px;

  background: rgba(255, 77, 166, 0.14);
  filter: blur(25px);
}

.bricko-card::after {
  content: "BRICKO";
  position: absolute;
  right: 25px;
  bottom: 12px;

  font-size: 58px;
  font-weight: bold;
  letter-spacing: 2px;

  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.bricko-card h3 {
  color: #ffffff;
}

.bricko-card:hover {
  border-color: #ff4da6;
}
.cevir-card {
  position: relative;
  overflow: hidden;
}

.cevir-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  right: -80px;
  top: -80px;

  background: rgba(45, 212, 191, 0.12);
  filter: blur(28px);
}

.cevir-card::after {
  content: "TR  ⇄  DE";
  position: absolute;
  right: 25px;
  bottom: 18px;

  font-size: 42px;
  font-weight: bold;
  letter-spacing: 2px;

  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cevir-card:hover {
  border-color: #2dd4bf;
}
.project-visual {
  margin-top: 24px;
  height: 120px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
}

.bricko-visual {
  background:
    linear-gradient(
      135deg,
      rgba(255, 77, 166, 0.18),
      rgba(111, 140, 255, 0.08)
    );
}

.cevir-visual {
  background:
    linear-gradient(
      135deg,
      rgba(45, 212, 191, 0.16),
      rgba(111, 140, 255, 0.08)
    );
}
.project-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.product-hero {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 80px 0;
}

.product-hero h1 {
  margin: 0;
  font-size: 96px;
  letter-spacing: -5px;
}

.product-lead {
  max-width: 700px;
  margin: 28px 0;

  color: #aeb8c6;
  font-size: 22px;
  line-height: 1.7;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-tags span {
  padding: 9px 15px;

  border: 1px solid #273142;
  border-radius: 100px;

  color: #c7cfdb;
  font-size: 14px;
}

.bricko-page {
  position: relative;
}

.bricko-page::before {
  content: "";
  position: absolute;

  width: 480px;
  height: 480px;

  right: 0;
  top: 40px;

  border-radius: 50%;

  background: rgba(255, 77, 166, 0.13);
  filter: blur(100px);

  pointer-events: none;
}

.product-section {
  padding: 80px 0;
  border-top: 1px solid #1d2633;
}

.product-section h2 {
  margin-top: 0;
  font-size: 38px;
}

.product-section > p {
  max-width: 780px;

  color: #aeb8c6;
  font-size: 19px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
  margin-top: 35px;
}

.feature-box {
  min-height: 170px;

  padding: 28px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: #111722;

  border: 1px solid #273142;
  border-radius: 16px;
}

.feature-box strong {
  font-size: 24px;
}

.feature-box span {
  color: #8f9aaa;
  line-height: 1.5;
}

.screenshot-placeholder {
  min-height: 320px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 35px;

  border: 1px dashed #3b4658;
  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 77, 166, 0.09),
      rgba(111, 140, 255, 0.05)
    );

  color: #7f8998;
  font-size: 18px;
}

@media (max-width: 700px) {

  .product-hero h1 {
    font-size: 62px;
    letter-spacing: -3px;
  }

  .product-lead {
    font-size: 18px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

}
.bricko-gallery {
  margin-top: 35px;
}

.bricko-main-shot {
  padding: 25px;

  display: flex;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      rgba(255, 77, 166, 0.12),
      rgba(111, 140, 255, 0.06)
    );

  border: 1px solid #273142;
  border-radius: 22px;
}

.bricko-main-shot img {
  display: block;

  max-width: 100%;
  max-height: 650px;

  border-radius: 14px;
}

.bricko-small-shots {
  margin-top: 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bricko-small-shots img {
  width: 100%;
  height: 320px;

  object-fit: contain;

  padding: 12px;

  background: #111722;

  border: 1px solid #273142;
  border-radius: 16px;
}

.bricko-small-shots img:hover {
  border-color: #ff4da6;
}

@media (max-width: 700px) {

  .bricko-small-shots {
    grid-template-columns: 1fr;
  }

  .bricko-small-shots img {
    height: auto;
  }

}
.game-gallery {
  margin-top: 35px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.game-gallery img {
  width: 100%;
  height: 420px;

  object-fit: contain;

  padding: 10px;

  background: #111722;

  border: 1px solid #273142;
  border-radius: 16px;

  transition: transform 0.2s ease, border-color 0.2s ease;
}

.game-gallery img:hover {
  transform: translateY(-4px);
  border-color: #ff4da6;
}

@media (max-width: 1000px) {

  .game-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .game-gallery {
    grid-template-columns: 1fr;
  }

  .game-gallery img {
    height: auto;
  }

}
.cevir-page {
  position: relative;
}

.cevir-page::before {
  content: "";
  position: absolute;

  width: 480px;
  height: 480px;

  right: 0;
  top: 40px;

  border-radius: 50%;

  background: rgba(45, 212, 191, 0.12);
  filter: blur(100px);

  pointer-events: none;
}
.cevir-features {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1000px) {
  .cevir-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cevir-features {
    grid-template-columns: 1fr;
  }
}
.cevir-gallery {
  margin-top: 35px;
}

.cevir-main-shot {
  padding: 30px;

  display: flex;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      rgba(45, 212, 191, 0.12),
      rgba(111, 140, 255, 0.06)
    );

  border: 1px solid #273142;
  border-radius: 22px;
}

.cevir-main-shot img {
  display: block;
  max-width: 100%;
  max-height: 650px;
  border-radius: 14px;
}

.cevir-small-shots {
  margin-top: 20px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cevir-small-shots img {
  width: 100%;
  height: 420px;

  object-fit: contain;

  padding: 10px;

  background: #111722;

  border: 1px solid #273142;
  border-radius: 16px;

  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cevir-small-shots img:hover {
  transform: translateY(-4px);
  border-color: #2dd4bf;
}

@media (max-width: 1000px) {

  .cevir-small-shots {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .cevir-small-shots {
    grid-template-columns: 1fr;
  }

  .cevir-small-shots img {
    height: auto;
  }

}
.project-image {
  height: 180px;
  padding: 0;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cevir-preview img {
  object-fit: contain;
  padding: 8px;
  background: #13202b;
}
.cevir-preview {
  height: 180px;
  padding: 10px 25px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(45, 212, 191, 0.12),
      rgba(111, 140, 255, 0.08)
    );
}

.cevir-preview img {
  width: auto;
  height: 155px;

  object-fit: contain;

  border-radius: 7px;

  transition: transform 0.2s ease;
}

.cevir-preview img:nth-child(2) {
  height: 165px;
}

.cevir-preview:hover img:nth-child(2) {
  transform: translateY(-3px);
}
/* PLANTRON LOGO */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #f5f7fa;
  text-decoration: none;
}
.brand img {
  height: 88px;
  width: auto;
  display: block;
}
@media (max-width: 700px) {
  .brand img {
    height: 34px;
  }

  .brand-text {
    font-size: 18px;
    letter-spacing: 3px;
  }
}