body {
  margin: 0;
  background: linear-gradient(135deg, #1b2838 70%, #232a36 100%);
  color: #c7d5e0;
  font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
  min-height: 100vh;
}
.header-glass {
  backdrop-filter: blur(12px);
  background: rgba(27, 40, 56, 0.7);
  border-radius: 28px;
  margin: 28px auto 0 auto;
  max-width: 900px;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.30);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2.5px solid #232f41;
}
.header-logo {
  font-size: 2.2rem;
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 700;
  color: #66c0f4;
  letter-spacing: 2.5px;
  text-shadow: 0 3px 12px #10182060;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.1;
  user-select: none;
  padding-right: 16px;
}
.header-actions {
  display: flex;
  gap: 16px;
}
.btn {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1b2838;
  background: linear-gradient(90deg, #66c0f4 60%, #c7d5e0 100%);
  border: none;
  border-radius: 14px;
  padding: 10px 26px;
  margin-left: 6px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 #66c0f4aa;
  transition: background 0.2s, color 0.2s, transform 0.17s, box-shadow 0.2s;
  outline: none;
  letter-spacing: 1.2px;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  background: linear-gradient(90deg, #1b2838 0%, #66c0f4 100%);
  color: #66c0f4;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 4px 20px 0 #66c0f499;
  border: 1.7px solid #66c0f4;
}
.first-section {
  max-width: 1100px;
  margin: 56px auto 0 auto;
  padding: 36px 18px 0 18px;
  text-align: center;
}
.main-title {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #66c0f4;
  margin-bottom: 32px;
  letter-spacing: 1.8px;
  text-shadow: 0 2px 12px #10182050;
}
.info-cards-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.info-card {
  background: rgba(27, 40, 56, 0.80);
  border-radius: 22px;
  box-shadow: 0 4px 18px 0 #1b283866;
  border: 2px solid #232f41;
  min-width: 250px;
  max-width: 320px;
  flex: 1 1 250px;
  padding: 34px 22px;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.17s, box-shadow 0.17s;
  font-family: 'Orbitron', Arial, sans-serif;
}
.info-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 32px 0 #66c0f455;
  border: 2.2px solid #66c0f4;
}
.info-card-title {
  color: #66c0f4;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #66c0f480;
}
.info-card-desc {
  color: #c7d5e0;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.7px;
}
.modal-bg {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(27,40,56,0.6);
  z-index: 1010;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1020;
}
#modal-content {
  background: #222b38;
  border-radius: 16px;
  padding: 36px 30px 24px 30px;
  min-width: 320px;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.30);
  border: 2.5px solid #232f41;
}
.form-title {
  color: #66c0f4;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.form-group {
  margin-bottom: 18px;
}
input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 9px;
  border: 1.7px solid #232f41;
  background: #1b2838;
  color: #c7d5e0;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1rem;
  outline: none;
  margin-top: 4px;
  margin-bottom: 8px;
  box-sizing: border-box;
  transition: border 0.18s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  border: 1.7px solid #66c0f4;
}
label {
  font-size: 1rem;
  color: #66c0f4;
  margin-bottom: 3px;
  display: block;
  font-weight: 500;
  letter-spacing: 1px;
}
.submit-btn {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 8px;
}
.switch-link {
  color: #66c0f4;
  cursor: pointer;
  display: block;
  text-align: center;
  margin-top: 10px;
  text-decoration: underline;
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  .info-cards-row {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .info-card {
    width: 90%;
    min-width: unset;
    max-width: unset;
  }
}
@media (max-width: 700px) {
  .main-title {
    font-size: 1.2rem;
  }
  .first-section {
    padding: 24px 2vw 0 2vw;
  }
  .header-glass {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 10px;
    border-radius: 16px;
    margin: 12px;
  }
  .header-logo {
    font-size: 1.2rem;
    padding-right: 0;
    margin-bottom: 12px;
  }
  .header-actions {
    justify-content: center;
  }
  .btn {
    font-size: 0.93rem;
    padding: 9px 18px;
  }
  #modal-content {
    min-width: unset;
    width: 94vw;
    padding: 22px 6vw 20px 6vw;
  }
}

.second-section {
  max-width: 820px;
  margin: 68px auto 0 auto;
  padding: 36px 16px 0 16px;
  background: rgba(27, 40, 56, 0.67);
  border-radius: 28px;
  box-shadow: 0 6px 24px 0 #232f4170;
  text-align: center;
  border: 2.5px solid #232f41;
}

.second-title {
  font-family: 'Orbitron', Arial, sans-serif;
  color: #66c0f4;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px #10182030;
}

.karambit-img {
  width: 120px;
  margin: 10px auto 18px auto;
  display: block;
  filter: drop-shadow(0 2px 16px #232f41b0);
  transition: transform 0.22s;
}
.karambit-img:hover {
  transform: scale(1.12) rotate(-7deg);
}

.second-desc {
  color: #c7d5e0;
  font-size: 1.09rem;
  line-height: 1.8;
  margin-top: 6px;
}
.second-desc .discord {
  color: #7289da;
  font-weight: 700;
  letter-spacing: 1px;
}
@media (max-width: 700px) {
  .second-section {
    padding: 16px 2vw 0 2vw;
    border-radius: 16px;
  }
  .second-title {
    font-size: 1.2rem;
  }
  .karambit-img {
    width: 68px;
    margin: 10px auto 12px auto;
  }
  .second-desc {
    font-size: 0.97rem;
  }
}

.third-section {
  position: relative;
  overflow: hidden;
  max-width: 820px;
  margin: 68px auto 0 auto;
  padding: 44px 18px 38px 18px;
  background: rgba(27, 40, 56, 0.92);
  border-radius: 28px;
  box-shadow: 0 6px 36px 0 #232f4170;
  text-align: center;
  border: 2.5px solid #232f41;
  z-index: 1;
}

.third-bg-images {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* All images have a glowing effect and are closer to the center */
.bg-img {
  position: absolute;
  filter: blur(3.2px) brightness(1.22) drop-shadow(0 0 38px #66c0f4b7);
  opacity: 0.23;
  mix-blend-mode: lighten;
  pointer-events: none;
  transition: opacity 0.3s, filter 0.4s;
}

/* Place images in a visible layered collage, not far corners */
.bg-img-axie {
  left: 4%;
  top: 17%;
  width: 110px;
  transform: rotate(-9deg);
  z-index: 1;
}
.bg-img-axie2 {
  right: 5%;
  top: 21%;
  width: 105px;
  transform: rotate(7deg) scale(1.08);
  z-index: 2;
}
.bg-img-stepn {
  left: 28%;
  bottom: 7%;
  width: 106px;
  transform: rotate(-11deg) scale(1.07);
  z-index: 3;
  opacity: 0.28;
  filter: blur(2px) brightness(1.33) drop-shadow(0 0 44px #51fd95c0);
}
.bg-img-stepn2 {
  right: 18%;
  bottom: 2%;
  width: 98px;
  transform: rotate(14deg) scale(0.93);
  z-index: 4;
  opacity: 0.25;
  filter: blur(2.5px) brightness(1.19) drop-shadow(0 0 36px #fbfb69b8);
}

.third-section:hover .bg-img {
  opacity: 0.34;
  filter: blur(1.1px) brightness(1.33) drop-shadow(0 0 60px #66c0f4cc);
}

.third-title,
.third-desc {
  position: relative;
  z-index: 10;
  background: rgba(27,40,56,0.81);
  border-radius: 10px;
  margin: 0 auto;
}

.third-title {
  font-family: 'Orbitron', Arial, sans-serif;
  color: #66c0f4;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px #10182030;
  padding: 10px 0 4px 0;
}

.third-desc {
  color: #c7d5e0;
  font-size: 1.13rem;
  line-height: 1.8;
  text-align: left;
  max-width: 660px;
  margin: 0 auto;
  padding: 18px 14px;
}

.third-desc .highlight {
  color: #66c0f4;
  font-weight: 700;
  letter-spacing: 0.8px;
}

/* Responsive, bring images in and scale down for mobile */
@media (max-width: 700px) {
  .third-section {
    padding: 16px 2vw 18px 2vw;
    border-radius: 16px;
  }
  .third-title {
    font-size: 1.09rem;
  }
  .third-desc {
    font-size: 0.97rem;
    padding: 12px 2vw;
  }
  .bg-img-axie {
    left: 0%;
    top: 13%;
    width: 59px;
  }
  .bg-img-axie2 {
    right: 2%;
    top: 18%;
    width: 58px;
  }
  .bg-img-stepn {
    left: 23%;
    bottom: 6%;
    width: 53px;
  }
  .bg-img-stepn2 {
    right: 7%;
    bottom: 3%;
    width: 48px;
  }
}

.timeline-section {
  max-width: 740px;
  margin: 70px auto 0 auto;
  padding: 36px 14px 36px 14px;
  background: rgba(27, 40, 56, 0.90);
  border-radius: 28px;
  box-shadow: 0 6px 24px 0 #232f4170;
  border: 2.5px solid #232f41;
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-title {
  font-family: 'Orbitron', Arial, sans-serif;
  color: #66c0f4;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px #10182030;
}

.timeline {
  position: relative;
  margin: 0 auto;
  padding-left: 32px;
  max-width: 620px;
  text-align: left;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #66c0f4 0%, #232a36 100%);
  border-radius: 8px;
  opacity: 0.47;
  z-index: 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 46px;
}

.timeline-dot {
  position: absolute;
  left: 14px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: linear-gradient(120deg, #66c0f4, #c7d5e0 65%);
  border-radius: 50%;
  box-shadow: 0 0 20px 5px #66c0f4cc;
  z-index: 2;
  border: 2px solid #232f41;
}

.timeline-date {
  position: absolute;
  left: -60px;
  top: 2px;
  width: 55px;
  color: #66c0f4;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-align: right;
  opacity: 0.83;
}

.timeline-content {
  margin-left: 36px;
  background: rgba(27, 40, 56, 0.74);
  border-radius: 10px;
  padding: 18px 20px 13px 20px;
  color: #c7d5e0;
  font-size: 1.08rem;
  line-height: 1.65;
  box-shadow: 0 4px 14px 0 #66c0f426;
  border-left: 3.5px solid #66c0f4;
}

.timeline-highlight {
  color: #66c0f4;
  font-weight: 700;
  letter-spacing: 0.6px;
}

@media (max-width: 700px) {
  .timeline-section {
    padding: 16px 2vw 20px 2vw;
    border-radius: 16px;
  }
  .timeline-title {
    font-size: 1.13rem;
  }
  .timeline {
    padding-left: 17px;
    max-width: 97vw;
  }
  .timeline-date {
    left: -52px;
    font-size: 0.99rem;
    width: 46px;
  }
  .timeline-content {
    font-size: 0.97rem;
    padding: 11px 9px 10px 11px;
  }
  .timeline-dot {
    width: 13px;
    height: 13px;
    left: 8px;
    top: 7px;
  }
  .timeline:before {
    left: 12px;
    width: 2.7px;
  }
}

.reviews-section {
  max-width: 820px;
  margin: 68px auto 36px auto;
  padding: 36px 16px 26px 16px;
  background: rgba(27, 40, 56, 0.92);
  border-radius: 28px;
  box-shadow: 0 6px 28px 0 #232f4170;
  text-align: center;
  border: 2.5px solid #232f41;
  position: relative;
}

.reviews-title {
  font-family: 'Orbitron', Arial, sans-serif;
  color: #66c0f4;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 32px;
  text-shadow: 0 2px 10px #10182030;
}

.reviews-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 28px;
}

.review-card {
  background: rgba(27,40,56,0.80);
  border: 2px solid #232f41;
  border-radius: 16px;
  padding: 18px 22px 14px 22px;
  min-width: 210px;
  max-width: 250px;
  flex: 1 1 210px;
  box-shadow: 0 2px 14px 0 #66c0f420;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.18s, transform 0.17s;
}

.review-card:hover {
  box-shadow: 0 7px 28px 0 #66c0f450;
  transform: translateY(-3px) scale(1.04);
}

.review-nickname {
  color: #66c0f4;
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  margin-bottom: 5px;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.steam-link {
  display: inline-block;
  transition: transform 0.15s;
  vertical-align: middle;
  margin-left: 2px;
}
.steam-link:hover svg {
  filter: drop-shadow(0 0 6px #66c0f4aa);
  transform: scale(1.15);
}

.review-text {
  color: #c7d5e0;
  font-size: 1.01rem;
  line-height: 1.5;
  margin-bottom: 4px;
  font-weight: 500;
}

.review-date {
  font-size: 0.85rem;
  color: #88a6be;
  margin-top: 5px;
  opacity: 0.74;
  font-family: 'Orbitron', Arial, sans-serif;
}

.review-form input,
.review-form textarea {
  margin-bottom:7px;
  width:99%;
  border-radius:7px;
  border:1.4px solid #232f41;
  padding:8px 10px;
  background:#1b2838;
  color:#c7d5e0;
  font-family:'Orbitron',Arial,sans-serif;
}

.review-form textarea {
  resize:vertical;
  min-height:56px;
}

.review-form button {
  width:99%;
}

@media (max-width: 700px) {
  .reviews-section {
    padding: 16px 2vw 16px 2vw;
    border-radius: 16px;
  }
  .reviews-title {
    font-size: 1.1rem;
  }
  .review-card {
    min-width: 120px;
    max-width: 98vw;
    padding: 11px 7px 7px 10px;
  }
}

.site-footer {
  width: 100%;
  background: linear-gradient(90deg, #1b2838 60%, #232a36 100%);
  color: #8faecf;
  text-align: center;
  padding: 22px 0 18px 0;
  border-top: 2.5px solid #232f41;
  margin-top: 64px;
  font-size: 1.06rem;
  box-shadow: 0 -2px 18px 0 #232f4180;
  letter-spacing: 0.6px;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 9px;
}

.footer-brand {
  color: #66c0f4;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-divider {
  color: #232f41;
  opacity: 0.45;
  font-weight: bold;
  margin: 0 8px;
}

.footer-credit b {
  color: #66c0f4;
  font-weight: 700;
  letter-spacing: 1.2px;
}

@media (max-width: 700px) {
  .site-footer {
    font-size: 0.99rem;
    padding: 15px 0 13px 0;
    margin-top: 36px;
  }
  .footer-content {
    flex-direction: column;
    gap: 4px;
  }
}

.review-warning {
  background: #ffe0e0;
  color: #a80000;
  border: 1.5px solid #ff6b6b;
  border-radius: 7px;
  padding: 13px 18px;
  margin: 16px 0 18px 0;
  font-size: 1.08em;
  display: none;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255,107,107,0.12);
  letter-spacing: 0.03em;
  transition: all 0.22s;
  font-family: 'Orbitron', Arial, sans-serif;
}
