/* Font Declarations */
@font-face {
  font-family: 'Xolonium';
  src: url('Xolonium-Regular.otf') format('opentype'),
       url('Xolonium-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Xolonium';
  src: url('Xolonium-Bold.otf') format('opentype'),
       url('Xolonium-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* Zexion Custom Styles */

body {
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
  color: #d1d4c2;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  background: #23262f;
  padding: 2rem 0 1rem 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

header h1 {
  margin: 0;
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: #fff;
  font-weight: 700;
  font-family: 'Xolonium', 'Courier New', monospace;
}

nav {
  margin: 1.2rem 0 0.5rem 0;
}

nav a {
  color: #a3a3ff;
  text-decoration: none;
  margin: 0 1.5rem;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
}

nav a:hover, nav a.active {
  color: #fff;
  border-bottom: 2px solid #a3a3ff;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

/* Homepage Styles */
.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.social-icon {

  border-radius: 50%;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: transform 0.2s;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
}
.social-icon img {
  width: 60px;
  height: 60px;
}
.social-icon:hover {
  transform: scale(1.1);
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.logo-graphic {
  position: relative;
  display: flex;
  align-items: center;
}

.leaf-shield {
  font-size: 3rem;
  filter: hue-rotate(120deg) brightness(1.2);
}

.swirling-lines {
  width: 60px;
  height: 20px;
  background: linear-gradient(90deg, #00ff88, #00ccff);
  border-radius: 10px;
  margin-left: 10px;
  position: relative;
}

.swirling-lines::before {
  content: '';
  position: absolute;
  top: -5px;
  right: -10px;
  width: 20px;
  height: 30px;
  background: linear-gradient(45deg, #00ff88, #00ccff);
  border-radius: 10px;
}

.company-logo-img {
  width: 100%;
  filter: brightness(1.1) contrast(1.1);
  transition: filter 0.2s;
}

.company-logo-img:hover {
  filter: brightness(1.2) contrast(1.2);
}

.welcome-section {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.welcome-text {
  font-size: 24px;
  max-width: 907px;
  margin: 0 auto;
  text-align: justify;
  text-indent: 71px;
  line-height: 1.2;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
  color: #d1d4c2;
}

.content-section {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
}

.games-column, .updates-column {
  flex: 1;
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #d1d4c2;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
  text-align: center;
  margin: 0px;
  text-decoration: underline;
}

.game-card {
  background: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-align: center;
}

.game-card img {
  width: 200px;
}

.game-cover {
  position: relative;
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #2a1a3a, #1a1a2e);
  border: 3px solid #6c63ff;
  border-radius: 8px;
}

.game-title-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Xolonium', 'Courier New', monospace;
  font-size: 1.5rem;
  font-weight: bold;
  color: #6c63ff;
  text-shadow: 2px 2px 0 #000;
  z-index: 10;
}

.game-art {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a1a3a, #1a1a2e);
}

.character-left {
  position: absolute;
  left: 20px;
  bottom: 60px;
  width: 40px;
  height: 60px;
  background: #333;
  border-radius: 4px;
}

.alien-creature {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #00ff88, #00ccff);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.alien-creature::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #00ff88, #00ccff);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

.character-right {
  position: absolute;
  right: 20px;
  bottom: 40px;
  width: 30px;
  height: 50px;
  background: #00ff88;
  border-radius: 4px;
}

.explosion-effect {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #ff6600, #ff3300);
  border-radius: 50%;
  animation: explode 1s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes explode {
  0% { transform: scale(0.8); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.8; }
}

.update-text {
  font-size: 24px;
  line-height: 1.6;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
  color: #d1d4c2;
}

.highlight-link {
  color: #00ccff;
  text-decoration: none;
  font-weight: bold;
}

.highlight-link:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 3rem 1rem 2.5rem 1rem;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
}
.hero-subtitle {
  font-size: 1.35rem;
  color: #bdbdfc;
  margin-bottom: 2.2rem;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
}
.hero-btn {
  display: inline-block;
  background: linear-gradient(90deg, #6c63ff 0%, #48c6ef 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(76, 70, 255, 0.12);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
}
.hero-btn:hover {
  background: linear-gradient(90deg, #48c6ef 0%, #6c63ff 100%);
  box-shadow: 0 4px 16px rgba(76, 70, 255, 0.18);
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 3rem 0 2rem 0;
}
.feature-card {
  background: #181a20;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  max-width: 270px;
  min-width: 200px;
  text-align: center;
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #6c63ff;
}
.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
}
.feature-desc {
  color: #bdbdfc;
  font-size: 1rem;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
}

/* Game Page Styles */
.game-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.game-title {
  font-family: 'Xolonium', 'Courier New', monospace;
  font-size: 4rem;
  font-weight: bold;
  color: #6c63ff;
  text-shadow: 
    2px 2px 0 #48c6ef,
    4px 4px 0 #2a2a2a;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}

.game-title img {
  width: 800px;
  height: auto;
}

.video-player {
  max-width: 600px;
  margin: 0 auto;
}

.video-placeholder {
  background: linear-gradient(135deg, #2a2a2a 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 3rem;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}

.video-placeholder:hover {
  transform: scale(1.02);
}

.play-button {
  font-size: 4rem;
  color: #ff0000;
  margin-bottom: 1rem;
}

.video-text {
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
}

.game-content {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.game-info {
  flex: 2;
}

.game-heading {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: bold;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
}

.game-description {
  margin-bottom: 2rem;
  line-height: 1.6;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
  color: #d1d4c2;
  font-size: 24px;
}

.game-description p {
  margin-bottom: 1rem;
}

.game-features h3 {
  color: #6c63ff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
}

.game-features ul {
  list-style: disc;
  padding-left: 20px;
  color: #d1d4c2;
  font-size: 24px;
}

.game-features li {
  padding: 0.5rem 0;
  padding-left: 0;
  position: relative;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
  color: #d1d4c2;
  font-size: 24px;
}

.game-features li:before {
  display: none;
}

.game-screenshots {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.screenshot {
  border: 2px solid #6c63ff;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.screenshot-placeholder {
  background: #181a20;
  padding: 0;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
  margin: 0;
}

.screenshot-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  transition: opacity 0.3s ease;
}

.screenshot-placeholder img:hover {
  opacity: 0.7;
}

.game-footer {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 2rem;
}

.return-link {
  color: #d1d4c2;
  text-decoration: none;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: inline-block;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
}

.return-link:hover {
  color: #6c63ff;
}

.copyright {
  color: #d1d4c2;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
}

.wishlist-section {
  margin-top: 2rem;
}

.wishlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1b2838;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  border: 2px solid #66c0f4;
  transition: all 0.2s;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
}

.wishlist-btn:hover {
  background: #66c0f4;
  color: #1b2838;
}

.steam-logo {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
  margin: 0px;
  margin-left: 6px;
}

img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}

footer {
  text-align: center;
  color: #888;
  padding: 2rem 0 1rem 0;
  font-size: 0.95rem;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
}

.footer-steam {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: black;
  font-family: 'Xolonium', 'Segoe UI', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 1rem 0 1.1rem 0;
  z-index: 1000;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.4);
  letter-spacing: 1px;
}

.footer-steam span {
  color: white;
  text-decoration: underline;
  display: inline-block;
  vertical-align: middle;
}

.footer-steam a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-steam a:hover {
  color: #00ff88;
}

.footer-steam .steam-logo {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1); /* Makes Steam logo white */
}

@media (max-width: 900px) {
  main {
    padding: 1rem;
  }
  .features {
    flex-direction: column;
    gap: 1.2rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .game-content {
    flex-direction: column;
    gap: 2rem;
  }
  .game-title {
    font-size: 3rem;
  }
  .game-heading {
    font-size: 1.8rem;
  }
  .content-section {
    flex-direction: column;
    gap: 2rem;
  }
  .social-icons {
    justify-content: center;
  }
  .company-logo {
    flex-direction: column;
    gap: 0.5rem;
  }
  .company-logo-img {
    width: 100%;
  }
} 