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

/* Mobile Performance Optimizations */
* {
  -webkit-tap-highlight-color: rgba(0, 255, 255, 0.3);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow text selection for content areas */
p, li, td, th, input, textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

body {
  font-family: 'Courier New', monospace;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a1a 100%);
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  position: relative;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  min-height: 100vh;
}

/* Mobile Safari background fix */
@supports (-webkit-touch-callout: none) {
  body {
    background-attachment: scroll;
  }
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 255, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

header {
  background: linear-gradient(90deg, #111 0%, #1a0d1a 50%, #0d1a1a 100%);
  padding: 2rem;
  border-bottom: 2px solid #00ffff;
  box-shadow: 
    0 0 20px rgba(0, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 255, 0.1) 25%, 
    rgba(255, 0, 255, 0.1) 75%, 
    transparent 100%);
  pointer-events: none;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Header Navigation */
header nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

header nav a {
  color: #00ff00;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #00ff00;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

header nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.4), transparent);
  transition: left 0.5s;
}

header nav a:hover {
  background-color: rgba(0, 255, 0, 0.1);
  color: #00ff00;
  transform: translateY(-1px);
  box-shadow: 
    0 0 10px #00ff00,
    0 0 20px #00ff00,
    inset 0 0 10px rgba(0, 255, 0, 0.1);
  text-shadow: 0 0 10px #00ff00;
}

header nav a:hover::before {
  left: 100%;
}

header nav a:active {
  transform: translateY(0);
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 24px;
  justify-content: space-between;
  z-index: 1001;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background: #00ff00;
  transition: all 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation Menu */
.nav-menu {
  transition: all 0.3s ease;
}

.nav-menu.mobile {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: left 0.3s ease;
}

.nav-menu.mobile.active {
  left: 0;
}

.nav-menu.mobile ul {
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.nav-menu.mobile a {
  font-size: 1.5rem;
  padding: 1rem 2rem;
}

.hero-text {
  text-align: center;
  padding: 1rem 0;
}

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

.logo-img {
  width: 60px;
  height: auto;
  border-radius: 8px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0;
  color: #00ffff;
  text-shadow: 
    0 0 10px #00ffff,
    0 0 20px #00ffff,
    0 0 30px #00ffff,
    0 0 40px #00ffff;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: neonFlicker 3s ease-in-out infinite alternate;
}

h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  color: #ff00ff;
  text-shadow: 
    0 0 5px #ff00ff,
    0 0 10px #ff00ff,
    0 0 15px #ff00ff;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 
      0 0 10px #00ffff,
      0 0 20px #00ffff,
      0 0 30px #00ffff,
      0 0 40px #00ffff;
  }
  20%, 24%, 55% {
    text-shadow: 
      0 0 5px #00ffff,
      0 0 10px #00ffff,
      0 0 15px #00ffff;
  }
}

main {
  padding: 2rem;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.download-buttons a {
  display: block;
  border-radius: 15px;
  padding: 10px;
  background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.download-buttons a::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #00ff00, #ffff00);
  border-radius: 15px;
  z-index: -1;
  animation: neonBorder 3s linear infinite;
}

@keyframes neonBorder {
  0% { background: linear-gradient(45deg, #00ffff, #ff00ff, #00ff00, #ffff00); }
  25% { background: linear-gradient(45deg, #ff00ff, #00ff00, #ffff00, #00ffff); }
  50% { background: linear-gradient(45deg, #00ff00, #ffff00, #00ffff, #ff00ff); }
  75% { background: linear-gradient(45deg, #ffff00, #00ffff, #ff00ff, #00ff00); }
  100% { background: linear-gradient(45deg, #00ffff, #ff00ff, #00ff00, #ffff00); }
}

.download-buttons a img {
  width: 150px;
  height: auto;
  transition: all 0.3s ease;
  filter: brightness(1.1) contrast(1.1);
}

.download-buttons a:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 
    0 10px 30px rgba(0, 255, 255, 0.4),
    0 0 50px rgba(255, 0, 255, 0.3);
}

.download-buttons a:hover img {
  filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.about, .contact {
  margin-top: 2rem;
  padding: 2rem;
  background-color: #222;
  border-radius: 8px;
}

/* Contact form specific styling */
.contact h2 {
  color: #44D3D9;
  margin-bottom: 1rem;
}

#responseMessage {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 5px;
  min-height: 20px;
}

#responseMessage p {
  margin: 0;
  font-weight: 500;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

label {
  margin: 1rem 0 0.5rem;
  font-size: 1rem;
}

input,
textarea {
  width: 80%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 2px solid #00ffff;
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  box-shadow: 
    inset 0 0 10px rgba(0, 255, 255, 0.2),
    0 0 10px rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #ff00ff;
  box-shadow: 
    inset 0 0 10px rgba(255, 0, 255, 0.3),
    0 0 20px rgba(255, 0, 255, 0.4);
  text-shadow: 0 0 5px #fff;
}

input::placeholder,
textarea::placeholder {
  color: #888;
  text-shadow: none;
}

button {
  padding: 0.8rem 2rem;
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  border: 2px solid #ff00ff;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 0 20px rgba(255, 0, 255, 0.5),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
}

button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

button:hover {
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  border-color: #00ffff;
  transform: translateY(-2px);
  box-shadow: 
    0 5px 25px rgba(0, 255, 255, 0.6),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
}

button:hover::before {
  left: 100%;
}

footer {
  background: linear-gradient(90deg, #111 0%, #1a0d1a 50%, #0d1a1a 100%);
  color: #999;
  padding: 2rem 1rem 1rem;
  margin-top: 2rem;
  border-top: 2px solid #ff00ff;
  box-shadow: 
    0 0 20px rgba(255, 0, 255, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 0, 255, 0.1) 25%, 
    rgba(0, 255, 255, 0.1) 75%, 
    transparent 100%);
  pointer-events: none;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer-nav h3 {
  color: #00ffff;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 
    0 0 5px #00ffff,
    0 0 10px #00ffff;
}

/* Footer Navigation Styles */
.footer-nav {
  margin-bottom: 1.5rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  display: inline-block;
}

.footer-nav a {
  color: #ff00ff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.25rem 0;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: block;
  position: relative;
}

.footer-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  transition: width 0.3s ease;
}

.footer-nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px #ff00ff;
  transform: translateX(5px);
}

.footer-nav a:hover::before {
  width: 100%;
  box-shadow: 0 0 5px #ff00ff;
}

.footer-nav a:active {
  transform: translateY(0);
}

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

.footer-bottom p {
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom a {
  color: #00ff00;
  text-decoration: none;
  text-shadow: 0 0 5px #00ff00;
}

.footer-bottom a:hover {
  color: #fff;
  text-shadow: 0 0 10px #00ff00;
}

/* Social Media Links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-links a {
  display: inline-block;
  font-size: 1.5rem;
  color: #00ff00;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  transition: all 0.3s ease;
  min-width: 3rem;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 5px #00ff00;
}

.social-links a:hover {
  background: rgba(0, 255, 0, 0.2);
  border-color: #00ff00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
  text-shadow: 0 0 10px #00ff00;
}

.social-links a:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 255, 0, 0.2);
}

.copyright {
  font-size: 0.9rem;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #333;
  margin-top: 1rem;
}

.copyright a {
  color: #44D3D9;
  text-decoration: none;
}

.copyright a:hover {
  color: #fff;
}

/* Mobile First Responsive Design */

/* Mobile Devices (320px - 480px) */
@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
    line-height: 1.4;
    padding: 10px;
  }

  .container, main, section {
    padding: 15px;
    margin: 10px 0;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
  }

  /* Show hamburger menu on mobile */
  .hamburger-menu {
    display: flex !important;
  }

  /* Hide regular navigation on mobile */
  .nav-menu:not(.mobile) {
    display: none;
  }
  
  .logo {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .logo-img {
    height: 25px;
    width: auto;
  }
  
  h1 {
    font-size: 1.5rem !important;
    margin: 0.5rem 0;
    text-align: center;
    animation: neonFlicker 2s infinite alternate;
  }

  h2 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem 0;
    text-align: center;
  }

  h3 {
    font-size: 1rem;
    margin: 0.8rem 0 0.4rem 0;
  }

  p, li {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
  /* Mobile navigation styles are handled by hamburger menu */

  /* Mobile Download Buttons */
  .download-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin: 2rem 0;
  }

  .download-buttons a {
    width: 100%;
    max-width: 200px;
    padding: 15px;
    text-align: center;
  }

  .download-buttons a img {
    width: 140px;
    height: auto;
  }

  /* Mobile Form Styles */
  form {
    padding: 1.5rem;
    margin: 1rem 0;
  }

  input[type="text"], 
  input[type="email"], 
  input[type="password"], 
  textarea, 
  select {
    width: 100%;
    padding: 12px;
    font-size: 16px; /* Prevents zoom on iOS */
    margin-bottom: 1rem;
  }

  button {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    margin: 1rem 0;
  }

  /* Mobile Table Styles */
  table {
    font-size: 0.8rem;
    margin: 1rem 0;
  }

  table th, table td {
    padding: 8px 6px;
    font-size: 0.8rem;
  }

  /* Hide table borders on very small screens for better readability */
  table th, table td {
    border-left: none;
    border-right: none;
  }

  /* Mobile Footer */
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 1rem;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 0.8rem;
  }

  /* Mobile Social Media Links */
  .social-links {
    gap: 0.8rem;
    justify-content: center;
  }

  .social-links a {
    font-size: 1.3rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    padding: 0.4rem;
  }

  .footer-nav a {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    text-align: center;
    display: block;
  }

  /* Reduce neon effects intensity on mobile for performance */
  *, *::before, *::after {
    animation-duration: 4s !important;
  }
  
  body::before {
    opacity: 0.3;
  }
}

/* Tablets (481px - 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
  body {
    font-size: 15px;
    padding: 15px;
  }

  .container, main, section {
    padding: 20px;
    margin: 15px 0;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .logo {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  
  .logo-img {
    height: 35px;
  }
  
  h1 {
    font-size: 2rem;
    margin: 1rem 0;
  }

  h2 {
    font-size: 1.5rem;
  }
  
  header nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
  }
  
  header nav a {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .download-buttons {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .download-buttons a {
    max-width: 250px;
  }

  .download-buttons a img {
    width: 160px;
  }

  /* Tablet Forms */
  form {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
  }

  input[type="text"], 
  input[type="email"], 
  input[type="password"], 
  textarea, 
  select {
    padding: 12px;
    font-size: 15px;
  }

  /* Tablet Tables */
  table {
    font-size: 0.9rem;
  }

  table th, table td {
    padding: 12px 10px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-nav a {
    padding: 0.8rem 1.2rem;
    text-align: center;
  }
}

/* Large Tablets and Small Desktops (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .container, main, section {
    max-width: 900px;
    margin: 0 auto;
    padding: 25px;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
  }

  .logo {
    flex-direction: row;
    gap: 1rem;
  }

  .logo-img {
    height: 45px;
  }

  header nav ul {
    flex-direction: row;
    gap: 1rem;
  }

  header nav a {
    padding: 0.7rem 1.4rem;
  }

  .download-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .footer-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  header nav a:hover,
  .footer-nav a:hover,
  button:hover,
  .download-buttons a:hover {
    transform: none;
  }

  /* Increase touch targets */
  header nav a,
  .footer-nav a,
  button,
  input,
  select {
    min-height: 44px;
    min-width: 44px;
  }

  /* Reduce complex animations for better performance */
  *, *::before, *::after {
    animation-duration: 1s !important;
  }
}

/* Landscape Phone Optimization */
@media screen and (max-height: 500px) and (orientation: landscape) {
  header {
    padding: 0.5rem 0;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem;
  }

  .logo {
    flex-direction: row;
    gap: 0.5rem;
  }

  .logo-img {
    height: 25px;
  }

  h1 {
    font-size: 1.2rem !important;
  }

  header nav ul {
    flex-direction: row;
    gap: 0.5rem;
  }

  header nav a {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* Thank You Page Styles */
.thank-you {
  margin: 2rem auto;
  padding: 2rem;
  background-color: #222;
  border-radius: 8px;
  max-width: 600px;
  text-align: center;
}

.thank-you h2 {
  color: #44D3D9;
  margin-bottom: 1rem;
}

.thank-you p {
  margin-bottom: 1.5rem;
  color: #ccc;
  line-height: 1.6;
}

.thank-you-content {
  background-color: #333;
  padding: 1.5rem;
  border-radius: 5px;
  margin: 2rem 0;
  border-left: 4px solid #44D3D9;
}

.thank-you-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.thank-you-content li {
  margin: 0.5rem 0;
  padding: 0.5rem 0;
  color: #fff;
}

.thank-you-content a {
  color: #00ffff;
  text-decoration: none;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.thank-you-content a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

/* Neon Table Styles */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 30, 0.9));
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 
    0 0 30px rgba(0, 255, 255, 0.2),
    inset 0 0 30px rgba(255, 0, 255, 0.1);
  position: relative;
}

table::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #00ff00) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  border-radius: 15px;
  pointer-events: none;
}

table th, table td {
  border: 1px solid rgba(0, 255, 255, 0.3);
  padding: 15px 12px;
  text-align: left;
  color: #ffffff;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

table th {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
  color: #00ffff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
  border-bottom: 2px solid #00ffff;
}

table td {
  transition: all 0.3s ease;
  border-color: rgba(255, 0, 255, 0.2);
}

table tbody tr:hover td {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
  color: #ffffff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
  transform: scale(1.02);
}

table tbody tr:nth-child(even) td {
  background: rgba(0, 255, 255, 0.05);
}

table tbody tr:nth-child(odd) td {
  background: rgba(255, 0, 255, 0.05);
}

/* Account Management Section */
.account-management {
  margin: 3rem auto;
  padding: 2rem;
  max-width: 800px;
}

.account-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.account-option {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 30, 0.9));
  border: 2px solid #00ffff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 
    0 0 20px rgba(0, 255, 255, 0.2),
    inset 0 0 20px rgba(255, 0, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.account-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.account-option:hover::before {
  transform: translateX(100%);
}

.account-option:hover {
  border-color: #ff00ff;
  box-shadow: 
    0 0 30px rgba(255, 0, 255, 0.4),
    inset 0 0 30px rgba(0, 255, 255, 0.2);
  transform: translateY(-5px);
}

.account-option h3 {
  color: #00ffff;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
  font-size: 1.5rem;
}

.account-option p {
  color: #cccccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.account-option .button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(45deg, #00ffff, #0080ff);
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.account-option .button:hover {
  background: linear-gradient(45deg, #ff00ff, #ff0080);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
  transform: scale(1.05);
}

/* Password Reset Page Styles */
.reset-password {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 30, 0.9));
  border-radius: 15px;
  border: 2px solid #00ffff;
  box-shadow: 
    0 0 30px rgba(0, 255, 255, 0.2),
    inset 0 0 30px rgba(255, 0, 255, 0.1);
}

.reset-step {
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.reset-step.fade-out {
  opacity: 0;
  transform: translateX(-20px);
}

.reset-step.fade-in {
  opacity: 1;
  transform: translateX(0);
}

.secondary-btn {
  background: linear-gradient(45deg, rgba(255, 0, 255, 0.2), rgba(128, 0, 255, 0.2));
  color: #ff00ff;
  border: 2px solid #ff00ff;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  text-shadow: 0 0 5px rgba(255, 0, 255, 0.8);
}

.secondary-btn:hover {
  background: linear-gradient(45deg, rgba(255, 0, 255, 0.3), rgba(128, 0, 255, 0.3));
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
  transform: scale(1.05);
}

#accountInfo {
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 200, 0, 0.05));
  border: 1px solid #00ff00;
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem 0;
  color: #00ff00;
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.8);
}

.reset-info {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(0, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.reset-info h3 {
  color: #00ffff;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.reset-info ul {
  text-align: left;
  margin: 1rem 0;
  padding-left: 2rem;
}

.reset-info li {
  margin-bottom: 0.5rem;
  color: #cccccc;
}

.help-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 0, 255, 0.2);
}

.back-to-login {
  margin-top: 2rem;
  text-align: center;
}

.back-to-login a {
  color: #00ffff;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.back-to-login a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

/* Reset Confirmation Page Styles */
.reset-confirmation {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
}

.success-message {
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 200, 0, 0.05));
  border: 2px solid #00ff00;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.success-message h2 {
  color: #00ff00;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
  margin-bottom: 1rem;
}

.next-steps, .important-info, .help-options, .security-tip {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 30, 0.9));
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
}

.next-steps h3, .important-info h3, .help-options h3, .security-tip h3 {
  color: #00ffff;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.next-steps ol, .important-info ul, .security-tip ul {
  text-align: left;
  margin: 1rem 0;
  padding-left: 2rem;
}

.next-steps li, .important-info li, .security-tip li {
  margin-bottom: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

.help-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.help-buttons .button {
  padding: 0.8rem 1.5rem;
  background: linear-gradient(45deg, #ff00ff, #8000ff);
  color: #ffffff;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.help-buttons .button:hover {
  background: linear-gradient(45deg, #00ffff, #0080ff);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
  transform: scale(1.05);
}

/* Google AdSense Ad Styling */
.ad-banner {
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(20, 20, 30, 0.8));
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 10px;
  box-shadow: 
    0 0 15px rgba(0, 255, 255, 0.1),
    inset 0 0 15px rgba(255, 0, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.ad-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  animation: adGlow 4s ease-in-out infinite;
}

@keyframes adGlow {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.top-banner {
  margin-top: 1rem;
  max-width: 1200px;
}

.medium-banner {
  max-width: 600px;
  margin: 3rem auto;
}

.bottom-banner {
  margin-bottom: 1rem;
  max-width: 1200px;
}

/* Content with Sidebar Layout */
.content-with-sidebar {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  align-items: flex-start;
}

.sidebar-ad {
  flex: 0 0 300px;
  position: sticky;
  top: 2rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(20, 20, 30, 0.8));
  border: 1px solid rgba(255, 0, 255, 0.3);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 
    0 0 15px rgba(255, 0, 255, 0.1),
    inset 0 0 15px rgba(0, 255, 255, 0.05);
}

.content-with-sidebar .contact {
  flex: 1;
  margin: 0;
}

/* AdSense Responsive Styles */
.adsbygoogle {
  background: transparent !important;
  border-radius: 8px;
  overflow: hidden;
}

/* Mobile Ad Adjustments */
@media screen and (max-width: 768px) {
  .content-with-sidebar {
    flex-direction: column;
  }
  
  .sidebar-ad {
    flex: none;
    position: static;
    order: -1;
    max-width: 100%;
  }
  
  .ad-banner {
    margin: 1rem;
    padding: 0.5rem;
  }
  
  .medium-banner {
    margin: 2rem auto;
  }
}

@media screen and (max-width: 480px) {
  .sidebar-ad {
    display: none; /* Hide sidebar ads on very small screens */
  }
  
  .ad-banner {
    border-radius: 5px;
    margin: 1rem 0;
  }
}

/* Ad Loading States */
.adsbygoogle[data-adtest="on"] {
  background: linear-gradient(45deg, #333, #555) !important;
  border: 1px dashed #00ffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 100px !important;
}

.adsbygoogle[data-adtest="on"]:after {
  content: "Test Ad" !important;
  color: #00ffff !important;
  font-family: 'Courier New', monospace !important;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8) !important;
}

/* iOS Safari Specific Fixes */
@supports (-webkit-overflow-scrolling: touch) {
  body {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Prevent iOS zoom on form focus */
  input[type="text"],
  input[type="email"], 
  input[type="password"],
  textarea,
  select {
    font-size: 16px !important;
  }
  
  /* Fix iOS button styling */
  button,
  input[type="submit"] {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 10px;
  }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  
  /* Sharper text rendering on high DPI */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  body::before {
    animation: none !important;
  }
}

/* Dark mode support (already dark, but ensure consistency) */
@media (prefers-color-scheme: dark) {
  body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a1a 100%);
  }
}

/* Print styles */
@media print {
  body {
    background: white !important;
    color: black !important;
  }
  
  *, *::before, *::after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  header nav,
  footer,
  .download-buttons {
    display: none;
  }
}

/* Password Reset Styles */
.password-reset {
  margin: 2rem auto;
  padding: 2rem;
  background-color: #222;
  border-radius: 8px;
  max-width: 600px;
}

.password-reset h2 {
  color: #0f0;
  margin-bottom: 1rem;
}

.password-reset p {
  margin-bottom: 2rem;
  color: #ccc;
  line-height: 1.5;
}

.reset-step {
  margin-bottom: 2rem;
}

.secondary-btn {
  background-color: #333;
  color: #ccc;
  margin-top: 1rem;
}

.secondary-btn:hover {
  background-color: #444;
  color: #fff;
}

.back-to-home {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #444;
}

.back-to-home a {
  color: #0f0;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.back-to-home a:hover {
  color: #0c0;
}

#resetResponseMessage {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 5px;
}

#resetResponseMessage p {
  margin: 0;
}

.success-message {
  background-color: #0f4d0f;
  border: 1px solid #0f0;
  color: #0f0;
}

.error-message {
  background-color: #4d0f0f;
  border: 1px solid #f00;
  color: #f00;
}

.info-message {
  background-color: #0f0f4d;
  border: 1px solid #00f;
  color: #aaf;
}

/* Account info styling */
#accountInfo {
  background-color: #333;
  padding: 1rem;
  border-radius: 5px;
  border-left: 4px solid #0f0;
  color: #fff;
  font-size: 0.9rem;
}

/* Careers Page Styles */
.careers-intro {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.careers-intro h2 {
  color: #00ffff;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.careers-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
}

.opportunities {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.opportunities h2 {
  color: #00ffff;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.opportunity-card {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid #00ffff;
  border-radius: 10px;
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.opportunity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.opportunity-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.opportunity-card h3 {
  color: #00ffff;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.opportunity-type {
  color: #ff00ff;
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.opportunity-card p {
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.requirements {
  list-style: none;
  margin-bottom: 2rem;
}

.requirements li {
  color: #aaa;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.requirements li:before {
  content: "✓";
  color: #00ff00;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.apply-btn, .partner-btn {
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
}

.apply-btn:hover, .partner-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

.partnerships, .shareholdership {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partnerships h2, .shareholdership h2 {
  color: #00ffff;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.partnership-card {
  background: rgba(255, 0, 255, 0.1);
  border: 1px solid #ff00ff;
  border-radius: 10px;
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partnership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
}

.partnership-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.partnership-card h3 {
  color: #ff00ff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.partnership-card p {
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.partnership-details {
  margin-bottom: 2rem;
}

.partnership-details strong {
  color: #00ffff;
  display: block;
  margin-bottom: 0.5rem;
}

.partnership-details ul {
  list-style: none;
  margin-top: 0.5rem;
}

.partnership-details li {
  color: #aaa;
  margin-bottom: 0.3rem;
  padding-left: 1rem;
  position: relative;
}

.partnership-details li:before {
  content: "•";
  color: #ff00ff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.shareholdership-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.shareholdership-info {
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid #00ff00;
  border-radius: 10px;
  padding: 2rem;
  text-align: left;
}

.shareholdership-info h3 {
  color: #00ff00;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.shareholdership-info p {
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.shareholdership-benefits, .investment-criteria {
  margin-bottom: 2rem;
}

.shareholdership-benefits h4, .investment-criteria h4 {
  color: #00ffff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.shareholdership-benefits ul, .investment-criteria ul {
  list-style: none;
}

.shareholdership-benefits li, .investment-criteria li {
  color: #aaa;
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.4;
}

.shareholdership-benefits li:before {
  position: absolute;
  left: 0;
  top: 0;
}

.investment-criteria li:before {
  content: "→";
  color: #00ff00;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.application-form, .partnership-form {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #00ffff;
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  max-width: 600px;
}

.application-form h2, .partnership-form h2 {
  color: #00ffff;
  margin-bottom: 2rem;
  text-align: center;
}

.application-form label, .partnership-form label {
  display: block;
  color: #ccc;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.application-form input, .partnership-form input,
.application-form select, .partnership-form select,
.application-form textarea, .partnership-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #555;
  border-radius: 5px;
  color: #fff;
  font-family: 'Courier New', monospace;
}

.application-form input:focus, .partnership-form input:focus,
.application-form select:focus, .partnership-form select:focus,
.application-form textarea:focus, .partnership-form textarea:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.application-form button, .partnership-form button {
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  border: none;
  padding: 1rem 3rem;
  border-radius: 25px;
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 2rem auto 0;
}

.application-form button:hover, .partnership-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

/* Active navigation link */
nav a.active {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

/* About Page Styles */
.company-overview, .founder-story, .game-development, .technology-stack, .company-values, .future-plans, .contact-info {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.company-overview h2, .founder-story h2, .game-development h2, .technology-stack h2, .company-values h2, .future-plans h2, .contact-info h2 {
  color: #00ffff;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid #00ffff;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.stat-item h3 {
  color: #00ffff;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.stat-item p {
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
}

.founder-profile {
  background: rgba(255, 0, 255, 0.1);
  border: 1px solid #ff00ff;
  border-radius: 10px;
  padding: 2rem;
  margin-top: 2rem;
}

.founder-profile h3 {
  color: #ff00ff;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.founder-profile h4 {
  color: #00ffff;
  margin: 2rem 0 1rem 0;
  font-size: 1.3rem;
}

.founder-profile p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.founder-profile ul {
  list-style: none;
  margin-top: 1rem;
}

.founder-profile li {
  color: #aaa;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.founder-profile li:before {
  content: "▶";
  color: #ff00ff;
  position: absolute;
  left: 0;
}

.development-stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stage {
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid #00ff00;
  border-radius: 10px;
  padding: 2rem;
}

.stage h3 {
  color: #00ff00;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.stage p {
  color: #ccc;
  line-height: 1.5;
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tech-category {
  background: rgba(255, 165, 0, 0.1);
  border: 1px solid #ffa500;
  border-radius: 10px;
  padding: 1.5rem;
}

.tech-category h3 {
  color: #ffa500;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.tech-category ul {
  list-style: none;
}

.tech-category li {
  color: #ccc;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.tech-category li:before {
  content: "⚡";
  position: absolute;
  left: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid #8a2be2;
  border-radius: 10px;
  padding: 2rem;
}

.value-item h3 {
  color: #8a2be2;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.value-item p {
  color: #ccc;
  line-height: 1.5;
}

.future-plans h3 {
  color: #00ffff;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.future-plans ul {
  list-style: none;
  margin-bottom: 2rem;
}

.future-plans li {
  color: #ccc;
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.4;
}

.future-plans li:before {
  content: "🎯";
  position: absolute;
  left: 0;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-method {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid #00ffff;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}

.contact-method h3 {
  color: #00ffff;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.contact-method p {
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.contact-link {
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.contact-link:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

/* Tips Page Styles */
.tips-intro, .beginner-tips, .advanced-strategies, .level-specific-tips, .common-mistakes, .practice-exercises, .mindset-tips, .community-tips, .final-thoughts {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tips-intro h2, .beginner-tips h2, .advanced-strategies h2, .level-specific-tips h2, .common-mistakes h2, .practice-exercises h2, .mindset-tips h2, .community-tips h2, .final-thoughts h2 {
  color: #00ffff;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tip-card {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid #00ffff;
  border-radius: 10px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.tip-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}

.tip-card h3 {
  color: #00ffff;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.tip-card p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tip-highlight {
  background: rgba(255, 0, 255, 0.2);
  border-left: 3px solid #ff00ff;
  padding: 1rem;
  border-radius: 5px;
}

.tip-highlight strong {
  color: #ff00ff;
}

.strategy-sections {
  margin-top: 2rem;
}

.strategy-section {
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid #00ff00;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.strategy-section h3 {
  color: #00ff00;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.strategy-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.strategy-section ul {
  list-style: none;
  margin-top: 1rem;
}

.strategy-section li {
  color: #aaa;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
}

.strategy-section li:before {
  content: "▶";
  color: #00ff00;
  position: absolute;
  left: 0;
}

.strategy-section li strong {
  color: #00ffff;
}

.level-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.level-tip {
  background: rgba(255, 165, 0, 0.1);
  border: 1px solid #ffa500;
  border-radius: 10px;
  padding: 2rem;
}

.level-tip h3 {
  color: #ffa500;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.level-tip p {
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.level-tip p strong {
  color: #00ffff;
}

.level-tip ul {
  list-style: none;
}

.level-tip li {
  color: #aaa;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
}

.level-tip li:before {
  content: "•";
  color: #ffa500;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.mistake-card {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid #ff4444;
  border-radius: 10px;
  padding: 2rem;
}

.mistake-card h3 {
  color: #ff4444;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.mistake-card p {
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.solution {
  background: rgba(0, 255, 0, 0.2);
  border-left: 3px solid #00ff00;
  padding: 1rem;
  border-radius: 5px;
}

.solution strong {
  color: #00ff00;
}

.exercises {
  margin-top: 2rem;
}

.exercise {
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid #8a2be2;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.exercise h3 {
  color: #8a2be2;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.exercise p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.exercise-goal {
  background: rgba(0, 255, 255, 0.2);
  border-left: 3px solid #00ffff;
  padding: 1rem;
  border-radius: 5px;
}

.exercise-goal strong {
  color: #00ffff;
}

.mindset-content, .community-content {
  margin-top: 2rem;
}

.mindset-content h3, .community-content h3 {
  color: #ff00ff;
  margin: 2rem 0 1rem 0;
  font-size: 1.5rem;
}

.mindset-content p, .community-content p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.mindset-content ul, .community-content ul {
  list-style: none;
  margin-bottom: 2rem;
}

.mindset-content li, .community-content li {
  color: #aaa;
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.4;
}

.mindset-content li:before, .community-content li:before {
  content: "✨";
  position: absolute;
  left: 0;
}

.community-content a {
  color: #00ffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.community-content a:hover {
  color: #ff00ff;
  text-decoration: underline;
}

.final-thoughts p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.call-to-action {
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid #00ffff;
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.call-to-action h3 {
  color: #00ffff;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.call-to-action .download-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.call-to-action .download-buttons img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.call-to-action .download-buttons img:hover {
  transform: scale(1.05);
}

/* Responsive adjustments for careers page */
@media (max-width: 768px) {
  .opportunity-grid, .partnership-grid {
    grid-template-columns: 1fr;
  }
  
  .opportunity-card, .partnership-card {
    padding: 1.5rem;
  }
  
  .application-form, .partnership-form {
    padding: 1.5rem;
    margin: 1rem 0;
  }
  
  .careers-intro h2, .opportunities h2, .partnerships h2, .shareholdership h2 {
    font-size: 1.5rem;
  }
  
  .company-stats, .development-stages, .tech-categories, .values-grid, .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .company-overview h2, .founder-story h2, .game-development h2, .technology-stack h2, .company-values h2, .future-plans h2, .contact-info h2 {
    font-size: 1.5rem;
  }
  
  .founder-profile, .stage, .tech-category, .value-item, .contact-method {
    padding: 1.5rem;
  }
  
  .tips-grid, .level-tips, .mistakes-grid {
    grid-template-columns: 1fr;
  }
  
  .tip-card, .level-tip, .mistake-card, .exercise, .strategy-section {
    padding: 1.5rem;
  }
  
  .call-to-action {
    padding: 2rem 1rem;
  }
  
  .call-to-action .download-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
