/* Main Styles for Arcadieny */

:root {
  --primary-color: #0e1538;
  --secondary-color: #7122fa;
  --accent-color: #21f3e7;
  --text-color: #ffffff;
  --dark-bg: #070a1c;
  --card-bg: rgba(20, 24, 48, 0.7);
  --overlay-bg: rgba(12, 14, 32, 0.8);
  --glow-color: #21f3e7;
  --glow-secondary: #7122fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Exo 2', sans-serif;
  background-color: var(--primary-color);
  color: var(--text-color);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

/* Stars Background */
.stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  position: relative;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--text-color);
  z-index: 2;
}

.logo-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
  opacity: 0.5;
  filter: blur(5px);
  animation: pulse 3s infinite alternate;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-link {
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  padding: 5px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  z-index: 1000;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: 0.4s;
}

/* Hero Section */
.hero-section {
  display: flex;
  min-height: 80vh;
  padding: 0 5%;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-button {
  padding: 12px 30px;
  border-radius: 30px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: transform 0.3s ease;
}

.cta-button.primary {
  background-color: var(--secondary-color);
  color: var(--text-color);
  border: none;
  box-shadow: 0 0 15px rgba(113, 34, 250, 0.5);
}

.cta-button.primary:hover {
  box-shadow: 0 0 20px rgba(113, 34, 250, 0.8);
  transform: translateY(-3px);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 10px rgba(33, 243, 231, 0.3);
}

.cta-button.secondary:hover {
  background-color: var(--accent-color);
  color: var(--dark-bg);
  box-shadow: 0 0 20px rgba(33, 243, 231, 0.5);
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.hologram {
  width: 300px;
  height: 300px;
  position: relative;
  margin-top: 50px;
}

/* Games Section */
.games-section {
  padding: 100px 5%;
  text-align: center;
}

.games-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.accent {
  color: var(--accent-color);
  position: relative;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.game-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(113, 34, 250, 0.3);
}

.game-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(12, 14, 32, 0.8), transparent);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.play-button {
  background-color: var(--secondary-color);
  color: var(--text-color);
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  box-shadow: 0 0 15px rgba(113, 34, 250, 0.5);
}

.play-button:hover {
  background-color: var(--accent-color);
  color: var(--dark-bg);
  box-shadow: 0 0 20px rgba(33, 243, 231, 0.5);
}

.game-info {
  padding: 20px;
  text-align: left;
}

.game-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.game-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* About Section */
.about-section {
  padding: 100px 5%;
  text-align: center;
  position: relative;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 50px;
}

.stat-box {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  min-width: 200px;
  margin: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(113, 34, 250, 0.3);
}

.stat-box span {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.stat-box p {
  margin-top: 10px;
  font-size: 1rem;
  text-align: center;
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
  position: relative;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.newsletter-container p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 15px;
  border-radius: 30px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(33, 243, 231, 0.3);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  background-color: var(--secondary-color);
  color: var(--text-color);
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(113, 34, 250, 0.3);
}

.newsletter-form button:hover {
  background-color: var(--accent-color);
  color: var(--dark-bg);
  box-shadow: 0 0 20px rgba(33, 243, 231, 0.5);
  transform: translateY(-3px);
}

/* Disclaimer Section */
.disclaimer-section {
  padding: 60px 5%;
  background: var(--dark-bg);
  position: relative;
}

.disclaimer-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--text-color);
}

.disclaimer-content {
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.disclaimer-content p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--text-color);
}

.disclaimer-content ul {
  list-style-type: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

.disclaimer-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--text-color);
}

.disclaimer-content ul li:before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-size: 1.2em;
}

.disclaimer-content a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.disclaimer-content a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  padding: 50px 5% 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo .logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.footer-logo h2 {
  font-size: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  min-width: 150px;
  margin-bottom: 20px;
}

.footer-column h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Cursor Trail */
.cursor-trail {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-color);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: lighten;
  filter: blur(5px);
  opacity: 0;
  z-index: 9999;
}

/* Content Pages (Contact, Terms, Privacy) */
.page-content {
  padding: 50px 5%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 60vh;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.page-header h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--accent-color);
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.breadcrumbs a,
.breadcrumbs span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a:hover {
  color: var(--accent-color);
}

.breadcrumbs .separator {
  color: rgba(255, 255, 255, 0.4);
}

/* Contact Form */
.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: var(--accent-color);
}

.form-control {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(33, 243, 231, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--secondary-color);
  color: var(--text-color);
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(113, 34, 250, 0.3);
}

.submit-btn:hover {
  background-color: var(--accent-color);
  color: var(--dark-bg);
  box-shadow: 0 0 20px rgba(33, 243, 231, 0.5);
  transform: translateY(-3px);
}

/* Contact Info */
.contact-info {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(113, 34, 250, 0.3);
}

.contact-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Terms & Privacy Pages */
.terms-content,
.privacy-content {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.terms-content h2,
.privacy-content h2 {
  color: var(--accent-color);
  margin: 30px 0 20px;
  font-size: 1.8rem;
}

.terms-content h3,
.privacy-content h3 {
  margin: 25px 0 15px;
  font-size: 1.3rem;
  color: var(--secondary-color);
}

.terms-content p,
.privacy-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.terms-content ul,
.privacy-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.terms-content li,
.privacy-content li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}