@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&display=swap");

:root {
  --cp-yellow: #fcee0a;
  --cp-black: #0b0b0b;
  --cp-dark-gray: #1a1a1a;
  --cp-red: #ff003c;
  --cp-cyan: #00f0ff;
  --text-color: #e0e0e0;
}

* {
  outline: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  background-color: var(--cp-black);
  background-image:
    linear-gradient(rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.9)),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.02) 10px,
      rgba(255, 255, 255, 0.02) 20px
    );
  color: var(--text-color);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: none;
  line-height: 1.6;
}

header {
  background: var(--cp-black);
  border-bottom: 3px solid var(--cp-red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(255, 0, 60, 0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
}

.logo {
  height: 58px;
}

.logo img {
  height: 58px;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cp-yellow);
  color: var(--cp-black);
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  clip-path: polygon(
    15px 0,
    100% 0,
    100% calc(100% - 15px),
    calc(100% - 15px) 100%,
    0 100%,
    0 15px
  );
  transition: all 0.3s ease;
  position: relative;
}

.button:hover {
  background-color: var(--cp-cyan);
  color: var(--cp-black);
  box-shadow: 0 0 15px var(--cp-cyan);
}

.section {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}

h1 {
  color: var(--cp-yellow);
  font-size: 42px;
  margin-bottom: 24px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0px var(--cp-red);
  border-left: 10px solid var(--cp-cyan);
  padding-left: 15px;
}

p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.review-hero__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 32px;
  padding: 16px;
  background-color: var(--cp-dark-gray);
  border: 1px solid var(--cp-red);
  position: relative;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 15px),
    calc(100% - 15px) 100%,
    0 100%
  );
}

.review-hero__author::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--cp-cyan);
}

.review-hero__author-avatar {
  margin: 0;
  padding: 0;
}

.review-hero__author-avatar-placeholder {
  width: 48px;
  height: 48px;
  background-color: var(--cp-yellow);
  color: var(--cp-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  clip-path: polygon(
    10px 0,
    100% 0,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0 100%,
    0 10px
  );
}

.review-hero__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-hero__author-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}

.review-hero__verified-badge {
  margin: 0;
  display: flex;
}

.review-hero__author-updated {
  font-size: 14px;
  color: var(--cp-cyan);
  font-weight: 600;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .review-hero__author {
    padding: 12px;
    gap: 12px;
  }
  h1 {
    font-size: 32px;
  }
}

footer {
  margin-top: auto;
  background-color: var(--cp-dark-gray);
  color: var(--text-color);
  padding: 40px 20px;
  border-top: 2px solid var(--cp-yellow);
  position: relative;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-inner p {
  font-size: 15px;
  color: #888888;
  margin-bottom: 16px;
}

.footer-brand p {
  margin-bottom: 8px;
}

.footer-brand strong {
  color: var(--cp-yellow);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}
