/* Steam/Valve Style Theme for Arcadefox */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #ccc;
  line-height: 1.6;
  min-height: 100vh;
}

/* Navigation */
nav {
  background: rgba(0, 0, 0, 0.8);
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #1a9fff;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1a9fff;
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #1a9fff;
}

.nav-links a.active {
  color: #1a9fff;
  border-bottom: 2px solid #1a9fff;
  padding-bottom: 0.5rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Section */
.hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(180deg, rgba(26, 159, 255, 0.1) 0%, transparent 100%);
  border-bottom: 1px solid rgba(26, 159, 255, 0.2);
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(26, 159, 255, 0.3);
}

.hero p {
  font-size: 1.3rem;
  color: #aaa;
  margin-bottom: 2rem;
  max-width: 600px;
}

.cta-button {
  background: linear-gradient(135deg, #1a9fff 0%, #0078d4 100%);
  color: white;
  padding: 1rem 3rem;
  border: none;
  border-radius: 0;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.cta-button:hover {
  box-shadow: 0 0 30px rgba(26, 159, 255, 0.5);
  transform: scale(1.05);
}

/* Pricing Section */
.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.pricing-header p {
  font-size: 1.2rem;
  color: #aaa;
}

.main-con {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.card {
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid #333;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.card:hover {
  border-color: #1a9fff;
  box-shadow: 0 0 20px rgba(26, 159, 255, 0.2);
  transform: translateY(-5px);
}

.card .title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.card .price {
  font-size: 2.5rem;
  color: #1a9fff;
  margin: 1rem 0;
  font-weight: bold;
}

.price-month {
  font-size: 0.9rem;
  color: #aaa;
}

.card .description {
  color: #aaa;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.services {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
  min-height: 300px;
}

.services li {
  margin-bottom: 1.2rem;
}

.list-item-container {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.checkmark {
  color: #1a9fff;
  font-weight: bold;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.list-item-container .text {
  color: #ccc;
  font-size: 0.95rem;
}

.blue-text {
  color: #1a9fff;
  font-weight: bold;
}

.btn-con {
  margin-top: 2rem;
}

.choose-btn {
  background: transparent;
  border: 2px solid #1a9fff;
  color: #1a9fff;
  padding: 0.8rem 2rem;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-weight: bold;
}

.choose-btn:hover {
  background: #1a9fff;
  color: #000;
  box-shadow: 0 0 20px rgba(26, 159, 255, 0.4);
}

/* Contact Section */
.contact-section {
  background: rgba(26, 159, 255, 0.05);
  border: 1px solid rgba(26, 159, 255, 0.2);
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
}

.contact-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.contact-section p {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 2rem;
}

.contact-email {
  font-size: 1.3rem;
  color: #1a9fff;
  text-decoration: none;
  font-weight: bold;
}

.contact-email:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid #333;
  color: #fff;
  font-family: inherit;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a9fff;
  box-shadow: 0 0 10px rgba(26, 159, 255, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  background: linear-gradient(135deg, #1a9fff 0%, #0078d4 100%);
  color: white;
  padding: 1rem 3rem;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  box-shadow: 0 0 30px rgba(26, 159, 255, 0.5);
  transform: scale(1.02);
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid #333;
  padding: 2rem;
  text-align: center;
  color: #aaa;
  margin-top: 4rem;
}

footer a {
  color: #1a9fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .main-con {
    grid-template-columns: 1fr;
  }

  .pricing-header h1 {
    font-size: 2rem;
  }
}
