/* Prevent white flash on page load */
html {
  background: #000000 !important;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  background: #000000 !important;
  overflow-x: hidden;
  font-family: 'Arial', sans-serif;
  color: white;
  scroll-behavior: smooth;
}

/* Specific styles for index page to prevent scrolling */
body.index-page {
  overflow: hidden;
}

/* Allow scrolling for other pages */
body.page-content-enabled {
  overflow-x: hidden;
  overflow-y: auto;
}

/* Navigation styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.nav-logo-img:hover {
  opacity: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-item {
  margin: 0;
}

.nav-link {
  color: #aaaaaa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown menu styles */
.dropdown {
  position: relative;
}

.navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  min-width: 180px;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.navbar .dropdown:hover .dropdown-menu,
.navbar .dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #aaaaaa;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.dropdown-link:hover,
.dropdown-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile dropdown adjustments */
@media screen and (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 0;
    margin-left: 1rem;
    margin-top: 0.5rem;
  }
  
  .dropdown-link {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    gap: 0;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 1rem 0;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Hero section */
.hero {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 0; /* Remove any top margin that might conflict with nav */
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: left;
}

/* Logo style */
.logo {
  width: 800px;
  max-width: 60%;
  opacity: 0;
  transition: opacity 3s ease-out;
  flex-shrink: 0;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  line-height: 1.1;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-tagline {
  font-size: 1.3rem;
  color: #aaaaaa;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1s forwards;
}

.hero-cta {
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.5s forwards;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cta-button:not(.secondary) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:not(.secondary):hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.cta-button.secondary {
  background: linear-gradient(135deg, rgba(255, 0, 100, 0.8), rgba(255, 0, 100, 0.6));
  color: #ffffff;
  border: 2px solid rgba(255, 0, 100, 0.3);
}

.cta-button.secondary:hover {
  background: linear-gradient(135deg, rgba(255, 0, 100, 1), rgba(255, 0, 100, 0.8));
  border-color: rgba(255, 0, 100, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 0, 100, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile hero responsiveness */
@media (max-width: 968px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 0 20px;
  }
  
  .logo {
    width: 500px;
    max-width: 90%
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* Main content styles */
.content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.8);
}

.content section {
  margin-bottom: 80px;
}

.content h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #cccccc;
}

.content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #dddddd;
}

.content p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #aaaaaa;
  font-size: 1.1rem;
}

/* Contact section */
.contact-info {
  margin-top: 30px;
  text-align: center;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-info strong {
  color: #ffffff;
}

/* Contact page specific styles */
.contact-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.contact-hero {
  text-align: center;
  margin-bottom: 80px;
  padding: 60px 0;
}

.contact-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.contact-content {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-section p {
  line-height: 1.7;
  margin-bottom: 30px;
  color: #bbbbbb;
  font-size: 1.1rem;
}

.contact-info {
  display: grid;
  gap: 25px;
}

.contact-item h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item p {
  margin: 0;
  color: #aaaaaa;
  font-size: 1.1rem;
}

.contact-item a {
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ffffff;
}

/* Responsive design */
@media (max-width: 768px) {
  .content {
    padding: 40px 15px;
  }
    .content h2 {
    font-size: 2rem;
  }
    .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-content {
    max-width: 100%;
    padding: 0 10px;
  }
  
  .contact-section {
    padding: 25px;
  }
  
  .contact-section h2 {
    font-size: 1.8rem;
  }
}

/* Fade-in animation */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Glowing fog-style background */
.hero::before {
  content: "";
  position: absolute;
  width: 300%;
  height: 300%;
  top: -100%;
  left: -100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 80%);
  animation: fogPulse 6s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}

@keyframes fogPulse {
  0% { transform: scale(1); opacity: 0.03; }
  100% { transform: scale(1.2); opacity: 0.07; }
}

/* About page specific styles */
.page-content {
  margin-top: 80px; /* Account for fixed navbar */
}

.about-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.about-hero {
  text-align: center;
  margin-bottom: 80px;
  padding: 60px 0;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #aaaaaa;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-content {
  display: grid;
  gap: 60px;
}

.about-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: #bbbbbb;
  font-size: 1.1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.team-member {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 8px;
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  border-left-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.team-member h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.team-photo:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.team-member p {
  color: #aaaaaa;
  line-height: 1.6;
  margin: 0;
}

/* Mobile responsiveness for about page */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .about-section {
    padding: 25px;
  }
  
  .about-section h2 {
    font-size: 1.8rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Game page specific styles */
.game-page {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
}

.game-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
              radial-gradient(circle at center, rgba(255, 0, 100, 0.1) 0%, transparent 70%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.game-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
  animation: heroShimmer 8s ease-in-out infinite alternate;
}

@keyframes heroShimmer {
  0% { opacity: 0.3; transform: translateX(-100%); }
  100% { opacity: 0.7; transform: translateX(100%); }
}

.game-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.game-hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(255, 0, 100, 0.3);
}

.game-tagline {
  font-size: 1.4rem;
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.game-status {
  margin-top: 20px;
}

.status-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 0, 100, 0.2), rgba(255, 0, 100, 0.4));
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 0, 100, 0.3);
}

.game-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.game-overview {
  padding: 80px 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.overview-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.overview-text p {
  line-height: 1.7;
  margin-bottom: 25px;
  color: #bbbbbb;
  font-size: 1.1rem;
}

.game-features {
  margin-top: 40px;
}

.game-features h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-features ul {
  list-style: none;
  padding: 0;
}

.game-features li {
  padding: 8px 0;
  color: #aaaaaa;
  position: relative;
  padding-left: 20px;
}

.game-features li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: rgba(255, 0, 100, 0.7);
}

.details-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.details-card h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: #aaaaaa;
  font-weight: 500;
}

.detail-value {
  color: #ffffff;
  font-weight: 600;
}

.game-media {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
}

.game-media h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.media-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.media-placeholder:hover {
  border-color: rgba(255, 0, 100, 0.4);
  background: linear-gradient(135deg, rgba(255, 0, 100, 0.1), rgba(255, 0, 100, 0.05));
}

.media-placeholder span {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.media-placeholder p {
  color: #aaaaaa;
  font-size: 0.9rem;
  margin: 0;
}

.game-development {
  padding: 80px 0;
}

.game-development h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.updates-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.update-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.update-item:last-child {
  border-bottom: none;
}

.update-date {
  color: rgba(255, 0, 100, 0.8);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.update-content h4 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.update-content p {
  color: #aaaaaa;
  line-height: 1.6;
  margin: 0;
}

.game-newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 0, 100, 0.1), rgba(255, 0, 100, 0.05));
}

.newsletter-card {
  background: rgba(0, 0, 0, 0.8);
  padding: 60px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.newsletter-card h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.newsletter-card p {
  color: #aaaaaa;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  gap: 15px;
}

.email-input {
  flex: 1;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.email-input::placeholder {
  color: #aaaaaa;
}

.email-input:focus {
  outline: none;
  border-color: rgba(255, 0, 100, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.subscribe-btn {
  padding: 15px 30px;
  background: linear-gradient(135deg, rgba(255, 0, 100, 0.8), rgba(255, 0, 100, 0.6));
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subscribe-btn:hover {
  background: linear-gradient(135deg, rgba(255, 0, 100, 1), rgba(255, 0, 100, 0.8));
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 0, 100, 0.3);
}

/* Homepage content sections */
.content {
  background: #000000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Featured Game Section */
.featured-game {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 0, 100, 0.1), rgba(0, 0, 0, 0.8));
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.featured-text h2 {
  color: #aaaaaa;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.featured-text h3 {
  color: #ffffff;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.featured-text p {
  color: #cccccc;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.featured-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff0064, #ff3385);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.featured-btn:hover {
  background: linear-gradient(135deg, #ff3385, #ff0064);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 100, 0.4);
}

.featured-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-placeholder {
  width: 100%;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* News Preview Section */
.news-preview-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
}

.section-title {
  text-align: center;
  color: #ffffff;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 60px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.news-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.news-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.news-date {
  color: #aaaaaa;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.news-card h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-card p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-link {
  color: #ff0064;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.news-link:hover {
  color: #ff3385;
}

.news-cta {
  text-align: center;
}

.view-all-news {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.view-all-news:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Studio Overview Section */
.studio-overview {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 0, 100, 0.05), rgba(0, 0, 0, 0.9));
}

.overview-content {
  text-align: center;
}

.overview-content h2 {
  color: #ffffff;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.overview-content p {
  color: #cccccc;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  color: #ff0064;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-label {
  color: #aaaaaa;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overview-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff0064, #ff3385);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.overview-btn:hover {
  background: linear-gradient(135deg, #ff3385, #ff0064);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 100, 0.4);
}

/* Mobile responsiveness for homepage content */
@media (max-width: 768px) {
  .featured-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .featured-text h3 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .overview-content h2 {
    font-size: 2rem;
  }
  
  .overview-stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* News page specific styles */
.news-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.news-hero {
  text-align: center;
  margin-bottom: 80px;
  padding: 60px 0;
}

.news-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.news-hero .hero-subtitle {
  font-size: 1.4rem;
  color: #aaaaaa;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.news-content {
  display: grid;
  gap: 40px;
}

.news-preview {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.news-preview:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.news-header {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.news-date {
  color: #aaaaaa;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-category {
  background: linear-gradient(135deg, rgba(255, 0, 100, 0.8), rgba(255, 0, 100, 0.6));
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-title {
  margin-bottom: 15px;
}

.news-title-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.news-title-link:hover {
  color: #ff0064;
}

.news-excerpt {
  color: #bbbbbb;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.read-more-btn {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.read-more-btn:hover {
  background: linear-gradient(135deg, rgba(255, 0, 100, 0.8), rgba(255, 0, 100, 0.6));
  border-color: rgba(255, 0, 100, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 100, 0.3);
}

/* Individual news article styles */
.news-article-full {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
}

/* Add subtle background animation to article */
.news-article-full::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 0, 100, 0.02) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
  animation: articleGlow 20s ease-in-out infinite alternate;
}

@keyframes articleGlow {
  0% { 
    opacity: 0.2; 
    transform: scale(1) rotate(0deg);
  }
  100% { 
    opacity: 0.4; 
    transform: scale(1.05) rotate(0.5deg);
  }
}

.news-breadcrumb {
  margin-bottom: 30px;
  animation: fadeInDown 0.6s ease-out;
}

.news-breadcrumb a {
  color: #aaaaaa;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Remove this - the HTML already contains the arrow */

.news-breadcrumb a:hover {
  color: #ffffff;
  background: rgba(255, 0, 100, 0.1);
  border-color: rgba(255, 0, 100, 0.3);
  transform: translateX(-5px);
}

.news-article-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 30px 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.news-article-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; opacity: 0; }
  50% { opacity: 0.3; }
  100% { left: 100%; opacity: 0; }
}

.news-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  align-items: center;
  animation: fadeIn 1s ease-out 0.4s both;
}

.news-date {
  color: #aaaaaa;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-category {
  background: linear-gradient(135deg, rgba(255, 0, 100, 0.8), rgba(255, 0, 100, 0.6));
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 0, 100, 0.3);
  animation: pulse 4s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 4px 15px rgba(255, 0, 100, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(255, 0, 100, 0.4); }
  100% { box-shadow: 0 4px 15px rgba(255, 0, 100, 0.3); }
}

.news-article-title {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.news-article-lead {
  font-size: 1.3rem;
  color: #cccccc;
  line-height: 1.6;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.news-article-lead::before,
.news-article-lead::after {
  content: '"';
  font-size: 2rem;
  color: rgba(255, 0, 100, 0.5);
  position: absolute;
  font-family: serif;
}

.news-article-lead::before {
  top: 0;
  left: -20px;
}

.news-article-lead::after {
  bottom: 0;
  right: -20px;
}

.news-article-content {
  line-height: 1.8;
  position: relative;
  animation: fadeInUp 1s ease-out 1s both;
}

.news-article-content p {
  color: #bbbbbb;
  margin-bottom: 25px;
  font-size: 1.1rem;
  text-align: justify;
  transition: all 0.3s ease;
  position: relative;
  padding: 15px 0;
}

.news-article-content p:hover {
  color: #cccccc;
  transform: translateX(5px);
}

.news-article-content h2 {
  color: #ffffff;
  font-size: 2rem;
  margin: 40px 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid rgba(255, 0, 100, 0.6);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.news-article-content h2::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(255, 0, 100, 0.8), rgba(255, 0, 100, 0.4));
  border-radius: 2px;
}

.news-article-content h3 {
  color: #dddddd;
  font-size: 1.5rem;
  margin: 30px 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-left: 15px;
}

.news-article-content h3::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: rgba(255, 0, 100, 0.6);
  font-size: 0.8em;
}

.news-article-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.back-to-news-btn {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.back-to-news-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.back-to-news-btn:hover::before {
  left: 100%;
}

.back-to-news-btn:hover {
  background: linear-gradient(135deg, rgba(255, 0, 100, 0.8), rgba(255, 0, 100, 0.6));
  border-color: rgba(255, 0, 100, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 100, 0.3);
}

/* Add reading progress indicator */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 0, 100, 0.8), rgba(255, 0, 100, 0.4));
  z-index: 1001;
  transition: width 0.1s ease;
}

/* Fade-in animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Footer styles - minimal and classy design */
.site-footer {
  background: rgba(0, 0, 0, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
  padding: 50px 0 25px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  text-align: center;
}

.footer-content p {
  color: #555555;
  font-size: 0.85rem;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Ensure footer sticks to bottom */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-content,
.content {
  flex: 1;
}

/* Mobile footer responsiveness */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content p {
    font-size: 0.8rem;
  }
}
