:root {
  --gta-blue: #00b3e3;
  --gta-pink: #ff00f7;
  --gta-yellow: #ffb800;
  --gta-black: #111111;
  --gta-white: #f5f5f5;
  --vice-pink: #ff41a6;
  --vice-purple: #9000ff;
  --vice-blue: #0080ff;
  --vice-teal: #00ffd9;
}

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--gta-black);
  color: var(--gta-white);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background-image: url('../images/background-min.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 2;
}

.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 3;
}

.neon-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  z-index: 1;
  animation: pulse 8s infinite alternate ease-in-out;
}

.palm-tree {
  position: absolute;
  bottom: 0;
  height: 40%;
  z-index: 2;
  filter: brightness(0) contrast(1.5);
  opacity: 0.7;
}

.palm-tree.left {
  left: 5%;
}

.palm-tree.right {
  right: 5%;
  transform: scaleX(-1);
}

.sun {
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(to right, #ff9966, #ff5e62);
  border-radius: 50%;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(5px);
  z-index: 1;
  box-shadow: 0 0 60px rgba(255, 94, 98, 0.8);
}

.horizon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 2;
}

.grid-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: 
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%),
    linear-gradient(90deg, var(--vice-pink), var(--vice-purple));
  perspective: 500px;
  transform: rotateX(60deg);
  transform-origin: bottom;
  z-index: 1;
}

.grid-floor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 2;
}

@keyframes pulse {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
}

#app {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 10;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gta-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--vice-pink);
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  z-index: 10;
  min-height: 70vh;
}

.title {
  font-size: clamp(3rem, 10vw, 8rem);
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(to right, var(--vice-teal), var(--vice-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -2px;
  position: relative;
}

.title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.2"><path d="M50,0 C60,40 80,50 80,80 C80,100 70,100 60,100 C50,100 40,80 50,60 C60,40 50,40 50,0" fill="none" stroke="white" stroke-width="2" /></svg>');
  background-size: 50px 50px;
  background-repeat: repeat;
  opacity: 0.15;
  z-index: -1;
  mix-blend-mode: overlay;
}

.subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  color: #e0e0e0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.countdown-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid rgba(144, 0, 255, 0.4);
  -webkit-box-shadow: 0 0 30px rgba(144, 0, 255, 0.2);
  box-shadow: 0 0 30px rgba(144, 0, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  max-width: 900px;
  width: 100%;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.countdown-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: -webkit-linear-gradient(45deg, var(--vice-purple), var(--vice-pink));
  background: linear-gradient(45deg, var(--vice-purple), var(--vice-pink));
  border-radius: 12px;
  z-index: -1;
  opacity: 0.3;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.countdown-container:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 40px rgba(144, 0, 255, 0.3);
  box-shadow: 0 5px 40px rgba(144, 0, 255, 0.3);
  border-color: rgba(144, 0, 255, 0.6);
}

.countdown-container:hover::before {
  opacity: 0.5;
}

.time-unit {
  text-align: center;
  min-width: 120px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem;
  position: relative;
}

.number {
  font-size: clamp(3rem, 8vw, 5rem);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: bold;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
  background: -webkit-linear-gradient(var(--vice-teal), var(--vice-pink));
  background: linear-gradient(var(--vice-teal), var(--vice-pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  position: relative;
}

.label {
  font-size: clamp(1rem, 3vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--gta-white);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.release-info {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.2rem;
  color: #e0e0e0;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  border-left: 4px solid var(--vice-pink);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.footer-container {
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1rem;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
}

.neon-text {
  text-shadow: 
    0 0 5px var(--vice-blue),
    0 0 10px var(--vice-blue),
    0 0 20px var(--vice-blue),
    0 0 40px var(--vice-blue);
}

.neon-pink {
  text-shadow: 
    0 0 5px var(--vice-pink),
    0 0 10px var(--vice-pink),
    0 0 20px var(--vice-pink),
    0 0 40px var(--vice-pink);
}

.neon-yellow {
  text-shadow: 
    0 0 5px var(--vice-teal),
    0 0 10px var(--vice-teal),
    0 0 20px var(--vice-teal),
    0 0 40px var(--vice-teal);
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {        
    opacity: 0.85;
  }
}

.flicker {
  animation: flicker 5s infinite alternate;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
  text-stroke: 1px rgba(0, 0, 0, 0.5);
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .time-unit {
    min-width: 100px;
    max-width: 150px;
  }
  
  .sun {
    width: 100px;
    height: 100px;
  }
  
  .section-title {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    width: 100%;
  }
  
  .main-content {
    padding: 1rem;
  }
  
  .title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1;
  }
  
  .subtitle {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    margin-bottom: 2rem;
    padding: 0 0.5rem;
    line-height: 1.4;
  }
  
  .release-info {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  
  .footer-container a {
    padding: 0.5rem 0;
    display: inline-block;
  }
  
  .countdown-container {
    gap: 1.5rem;
    padding: 1.5rem;
    margin: 1rem;
  }
}

@media (max-width: 480px) {
  .time-unit {
    min-width: 80px;
    max-width: 120px;
  }
  
  .number {
    font-size: clamp(3.5rem, 15vw, 7rem);
  }
  
  .countdown-container {
    gap: 1rem;
    padding: 1rem;
  }
}

.ad-container-footer {
  width: 100%;
  max-width: 728px;
  margin: 1.5rem auto 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  padding: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .ad-container-footer {
    max-width: 100%;
  }
}

.footer-container a {
  color: var(--vice-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-container a:hover {
  color: var(--vice-pink);
  text-decoration: underline;
}

.privacy-content {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  text-align: left;
}

.privacy-content h2 {
  color: var(--vice-teal);
  font-size: 1.6rem;
  margin: 1.5rem 0 1rem;
  text-transform: uppercase;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p, 
.privacy-content ul {
  color: #d8d8d8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.privacy-content ul {
  padding-left: 2rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
}

.privacy-content a {
  color: var(--vice-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-content a:hover {
  color: var(--vice-pink);
  text-decoration: underline;
}

.last-updated {
  font-style: italic;
  color: #999;
  text-align: center;
  margin-top: 2rem;
}

.header-container .logo {
  color: var(--gta-white);
  text-decoration: none;
  font-size: 2rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.header-container .logo:hover {
  color: var(--vice-pink);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin: 3rem auto 1.5rem;
  background: linear-gradient(to bottom, #6a4cff, #ff41a6, #ff9966, #ffcc33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: block;
  width: 100%;
  max-width: 900px;
  text-shadow: none;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #6a4cff, #ff41a6);
  margin: 0.5rem auto 0;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(144, 0, 255, 0.7);
}

.back-link {
  margin-bottom: 2rem;
  font-size: 1rem;
}

.back-link a {
  color: var(--vice-blue);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.back-link a:hover {
  color: var(--vice-pink);
  transform: translateX(-3px);
}

@keyframes subtle-flicker {
  0%, 22%, 36%, 75% {
    opacity: 1;
  }
  14%, 28%, 60% {        
    opacity: 0.9;
  }
}

/* SEO Helpers */
.seo-title {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: -9999 !important;
  pointer-events: none !important;
}

/* Ad Sections */
.content-with-ad {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  position: relative;
}

.ad-label {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-align: center;
}

.ad-container-content,
.ad-container-footer {
  min-height: 250px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-ad {
  margin: 2rem 0 0;
  padding: 1rem 0;
  background-color: transparent;
}

/* News Grid */
.news-grid {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.news-heading {
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--vice-pink);
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(to right, var(--vice-teal), var(--vice-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.news-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.news-item {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  border-radius: 8px;
  border-top: 3px solid var(--vice-purple);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(144, 0, 255, 0.3);
}

.news-item h3 {
  color: var(--vice-teal);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.news-item p {
  color: var(--gta-white);
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Footer Content */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .content-with-ad {
    margin: 1.5rem auto;
    padding: 0.75rem;
  }

  .ad-container-content,
  .ad-container-footer {
    min-height: 200px;
  }

  .news-items {
    grid-template-columns: 1fr;
  }

  .news-item {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .content-with-ad {
    margin: 1rem auto;
    padding: 0.5rem;
  }

  .ad-container-content,
  .ad-container-footer {
    min-height: 150px;
  }

  .news-heading {
    font-size: 1.5rem;
  }

  .news-item h3 {
    font-size: 1.1rem;
  }

  .news-item p {
    font-size: 0.85rem;
  }
}

/* Enhanced News Section */
.news-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.section-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Bebas Neue', sans-serif;
  background: linear-gradient(to bottom, #6a4cff, #ff41a6, #ff9966, #ffcc33);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
}

.news-grid-featured {
  margin-bottom: 3rem;
}

.featured-news {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  padding: 2rem;
  border-top: 4px solid var(--vice-purple);
  box-shadow: 0 0 20px rgba(144, 0, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-news:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(144, 0, 255, 0.3);
}

.news-content h3, .feature-card h3, .timeline-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  background: linear-gradient(to bottom, #6a4cff, #ff41a6, #ff9966, #ffcc33);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.feature-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gta-white);
  font-size: 1.1rem;
}

.feature-list li::before {
  content: '►';
  position: absolute;
  left: 0;
  color: var(--vice-pink);
  font-size: 0.8rem;
}

.news-meta {
  font-size: 0.9rem;
  color: #888;
  margin-top: 1rem;
  font-style: italic;
}

/* Features Section */
.features-section {
  margin: 4rem 0;
}

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

.feature-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border-top: 3px solid var(--vice-purple);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(144, 0, 255, 0.3);
}

.feature-card p {
  color: var(--gta-white);
  line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
  margin: 4rem 0;
  padding: 0 1rem;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--vice-purple), var(--vice-pink));
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
  width: 50%;
  padding-right: 2rem;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
  padding-right: 0;
  padding-left: 2rem;
}

.timeline-date {
  position: absolute;
  top: 0;
  right: calc(100% + 1rem);
  background: var(--vice-purple);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: white;
  font-size: 0.9rem;
}

.timeline-item:nth-child(even) .timeline-date {
  right: auto;
  left: calc(100% + 1rem);
}

.timeline-content {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 3px solid var(--vice-teal);
}

.timeline-content h3 {
  color: var(--vice-pink);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* Community Section */
.community-section {
  margin: 4rem 0;
  text-align: center;
  padding: 0 1rem;
}

.community-description {
  font-size: 1.2rem;
  color: var(--gta-white);
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-button {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(144, 0, 255, 0.4);
  box-shadow: 0 0 15px rgba(144, 0, 255, 0.2);
}

.social-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(144, 0, 255, 0.4);
  border-color: rgba(144, 0, 255, 0.6);
}

.social-button svg {
  margin-right: 0.5rem;
}

/* Remove newsletter section styles */
.newsletter-section,
.newsletter-form,
.newsletter-form input,
.newsletter-form button {
  display: none;
}

/* Enhanced Footer */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--vice-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--vice-pink);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    width: 100%;
    padding-left: 2rem;
    padding-right: 0;
  }

  .timeline-item:nth-child(even) {
    padding-left: 2rem;
  }

  .timeline-date {
    position: relative;
    right: auto;
    left: 0;
    margin-bottom: 1rem;
    display: inline-block;
  }

  .timeline-item:nth-child(even) .timeline-date {
    left: 0;
  }

  .footer-links {
    gap: 1rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 1.8rem;
  }

  .featured-news {
    padding: 1.5rem;
  }

  .news-content h3 {
    font-size: 1.4rem;
  }

  .feature-list li {
    font-size: 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .timeline-content {
    padding: 1rem;
  }

  .footer-links {
    gap: 1rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }
}

/* Ad Containers Enhancement */
.content-with-ad {
  max-width: 800px;
  margin: 3rem auto;
  padding: 1.5rem;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  position: relative;
  border: 1px solid rgba(144, 0, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.ad-label {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
}

.ad-container-content,
.ad-container-footer {
  min-height: 250px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.ad-container-content:hover,
.ad-container-footer:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.footer-ad {
  margin: 2rem auto;
  background-color: transparent;
  border: none;
  box-shadow: none;
}

/* Ensure ads are responsive */
@media (max-width: 768px) {
  .content-with-ad {
    margin: 2rem auto;
    padding: 1rem;
  }

  .ad-container-content,
  .ad-container-footer {
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .content-with-ad {
    margin: 1.5rem auto;
    padding: 0.8rem;
  }

  .ad-container-content,
  .ad-container-footer {
    min-height: 150px;
  }
}

