* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
  background-image: url("../images/blueGrid.png");
  background-color: #f8fafc;
}

/* ===== ENHANCED NAVBAR FROM STYLE.CSS ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: linear-gradient(135deg, #1d2b91 0%, #2a3bc2 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  animation: navbarEntrance 0.8s ease-out;
}

.navbar.scrolled {
  padding: 8px 40px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #edaa00;
  background: linear-gradient(135deg, #1d2b91 0%, #1a2580 100%);
}

@keyframes navbarEntrance {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo with animation */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s ease;
  position: relative;
  padding: 5px 10px;
  border-radius: 8px;
  overflow: hidden;
}

.nav-logo::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.6s ease;
}

.nav-logo:hover::before {
  left: 100%;
}

.nav-logo:hover {
  transform: translateY(-2px);
}

.nav-logo img {
  width: 201px;
  height: 95px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.nav-logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 10px rgba(237, 170, 0, 0.3));
}

/* Enhanced Center links with indicators */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  position: relative;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.nav-links::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(45deg, #edaa00, #1d4ed8, #edaa00);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-links:hover::before {
  opacity: 1;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #edaa00, #ffc107);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a::after {
  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.6s ease;
}

.nav-links a:hover::before {
  width: 80%;
}

.nav-links a:hover::after {
  left: 100%;
}

.nav-links a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(237, 170, 0, 0.15), rgba(29, 78, 216, 0.15));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.2);
}

.nav-links a i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.nav-links a:hover i {
  transform: translateX(3px);
}

/* Active link indicator */
.nav-links a.active {
  color: #edaa00;
  background: rgba(237, 170, 0, 0.1);
}

.nav-links a.active::before {
  width: 80%;
  background: linear-gradient(90deg, #ffc107, #ff9800);
}

/* Enhanced Login button */
.nav-login {
  position: relative;
}

.nav-login .login-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #edaa00 0%, #ffc107 100%);
  color: #1d2b91;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 15px rgba(237, 170, 0, 0.3);
  letter-spacing: 0.5px;
}

.nav-login .login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.nav-login .login-btn:hover::before {
  left: 100%;
}

.nav-login .login-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(29, 78, 216, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-login .login-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.nav-login .login-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.nav-login .login-btn:hover i {
  transform: translateX(4px) rotate(10deg);
}
/* ===== END ENHANCED NAVBAR FROM STYLE.CSS ===== */

/* ===== ENHANCED MAIN CONTENT ===== */
.main-content {
  flex: 1;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Enhanced Section Styling */
.content-section {
  background: rgba(242, 242, 242, 0.955);
  border-radius: 24px;
  padding: 50px;
  margin-bottom: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #edaa00, #1d2b91, #edaa00);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.content-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* Enhanced Text Section */
.text-section h1 {
  font-size: 3rem;
  color: #1d2b91;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.text-section h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, #edaa00, #ffc107, #edaa00);
  border-radius: 3px;
  animation: underlineExpand 1.5s ease-out;
}

@keyframes underlineExpand {
  from {
    width: 0;
  }
  to {
    width: 120px;
  }
}

.text-section h2 {
  font-size: 2.2rem;
  color: #1d2b91;
  margin: 40px 0 20px;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}

.text-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, #edaa00, #1d2b91);
  border-radius: 3px;
}

.text-section p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 25px;
  font-weight: 400;
}

.highlight {
  color: #1d2b91;
  font-weight: 700;
  background: linear-gradient(
    120deg,
    rgba(237, 170, 0, 0.15) 0%,
    rgba(237, 170, 0, 0) 100%
  );
  padding: 2px 8px;
  border-radius: 4px;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: linear-gradient(90deg, #edaa00, transparent);
  border-radius: 1px;
}

.emphasis {
  font-style: italic;
  color: #edaa00;
  font-weight: 600;
  position: relative;
  padding: 0 4px;
}

.emphasis::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #edaa00, transparent);
  transform: translateY(-50%);
  opacity: 0.3;
}

/* Enhanced Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(240, 244, 255, 0.9) 100%
  );
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #1d2b91, #edaa00);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(29, 43, 145, 0.05),
    rgba(237, 170, 0, 0.05)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(29, 43, 145, 0.15);
}

.feature-icon {
  font-size: 3.5rem;
  color: #1d2b91;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  display: inline-block;
}

.feature-card:hover .feature-icon {
  color: #edaa00;
  transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
  font-size: 1.4rem;
  color: #1d2b91;
  margin-bottom: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Enhanced List Styling */
.text-section ul {
  list-style: none;
  padding-left: 0;
  margin: 25px 0;
}

.text-section ul li {
  padding: 18px 25px;
  margin: 12px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
  border-radius: 12px;
  border-left: 4px solid #1d2b91;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-weight: 500;
  color: #4b5563;
}

.text-section ul li::before {
  content: "›";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: #edaa00;
  font-size: 1.5rem;
  font-weight: bold;
  transition: left 0.3s ease;
}

.text-section ul li:hover {
  transform: translateX(15px);
  background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
  box-shadow: 0 10px 25px rgba(29, 43, 145, 0.1);
  border-left: 4px solid #edaa00;
  color: #1d2b91;
}

.text-section ul li:hover::before {
  left: 15px;
}

/* Enhanced Video Section */
.video-section h2 {
  font-size: 2.5rem;
  color: #1d2b91;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
}

.video-section h2 i {
  color: #edaa00;
  font-size: 2.2rem;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #0a1525;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  transition: all 0.4s ease;
}

.video-container:hover {
  transform: scale(1.005);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.video-container::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(45deg, #1d2b91, #edaa00, #1d2b91);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.video-container:hover::before {
  opacity: 0.6;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

.video-info {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
  border-radius: 16px;
  padding: 30px;
  border-left: 6px solid #edaa00;
  margin-top: 35px;
  transition: all 0.3s ease;
}

.video-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.video-info h3 {
  color: #1d2b91;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 700;
}

.video-info p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Enhanced Download Link */
.video-info + p {
  text-align: center;
  margin-top: 30px;
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(29, 43, 145, 0.05) 0%,
    rgba(237, 170, 0, 0.05) 100%
  );
  border-radius: 16px;
  border: 2px dashed rgba(29, 43, 145, 0.2);
}

.video-info + p a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #edaa00 0%, #ffc107 100%);
  color: #1d2b91;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(237, 170, 0, 0.3);
}

.video-info + p a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.video-info + p a:hover::before {
  left: 100%;
}

.video-info + p a:hover {
  background: linear-gradient(135deg, #1d2b91 0%, #2a3bc2 100%);
  color: white;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 32px rgba(29, 43, 145, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.video-info + p a i {
  transition: transform 0.3s ease;
}

.video-info + p a:hover i {
  transform: translateY(-3px);
}

/* ===== ENHANCED FOOTER ===== */
.simple-footer {
  background: linear-gradient(135deg, #1d2b91 0%, #0f172a 100%);
  color: #ffffff;
  padding: 60px 0 30px;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.simple-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #edaa00, #ffc107, #edaa00);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

/* Enhanced Logo Section */
.footer-logo-section {
  flex: 1;
  min-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-logo img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.1) rotate(5deg);
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 350px;
  opacity: 0.9;
}

/* Enhanced Links */
.footer-links-section {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-links-column {
  min-width: 180px;
}

.links-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 3px solid #edaa00;
  position: relative;
}

.links-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #edaa00, #ffc107);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 16px;
  position: relative;
}

.footer-links-list a {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  position: relative;
}

.footer-links-list a::before {
  content: "›";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #edaa00;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(15px);
}

.footer-links-list a:hover::before {
  opacity: 1;
  left: -15px;
}

/* Enhanced Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  position: relative;
}

.copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.copyright p {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0;
}

.copyright p::before {
  content: "❤️";
  margin-right: 8px;
  animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* ===== NAVBAR MEDIA QUERIES FROM STYLE.CSS ===== */

/* Large Tablets and Small Laptops */
@media (max-width: 1200px) {
  .navbar {
    padding: 12px 30px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .navbar {
    padding: 10px 25px;
    flex-wrap: wrap;
  }
  
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
    gap: 15px;
    padding: 8px;
  }
  
  .nav-links a {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .nav-login .login-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Large Mobile Phones */
@media (max-width: 768px) {
  .navbar {
    padding: 8px 20px;
  }
  
  .nav-logo img {
    width: 150px;
    height: auto;
  }
  
  .nav-links {
    gap: 10px;
    padding: 6px;
  }
  
  .nav-links a {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .nav-login .login-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Medium Mobile Phones */
@media (max-width: 576px) {
  .navbar {
    padding: 6px 15px;
  }
  
  .nav-logo {
    font-size: 18px;
  }
  
  .nav-logo img {
    width: 120px;
  }
  
  .nav-links {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .nav-links a {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
  .navbar {
    padding: 6px 15px;
  }
  
  .nav-logo img {
    width: 100px;
  }
  
  .nav-links {
    justify-content: space-between;
  }
  
  .nav-links li {
    flex: 1;
    text-align: center;
  }
  
  .nav-links a {
    justify-content: center;
    width: 100%;
  }
  
  .nav-login .login-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Very Small Mobile Phones */
@media (max-width: 375px) {
  .navbar {
    padding: 5px 10px;
  }
  
  .nav-logo img {
    width: 100px;
  }
  
  .nav-links {
    gap: 5px;
  }
  
  .nav-links a {
    padding: 6px 8px;
    font-size: 12px;
  }
  
  .nav-login .login-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Landscape Mode for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .navbar {
    padding: 5px 15px;
  }
  
  .nav-links {
    margin-top: 5px;
  }
}

/* ===== EXISTING RESPONSIVE DESIGN FOR OTHER ELEMENTS ===== */

/* Tablet/Laptop Medium Screens */
@media (max-width: 1200px) {
  .footer-content {
    padding: 0 30px;
  }

  .content-section {
    padding: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
  }
}

/* Tablet Portrait */
@media (max-width: 992px) {
  .main-content {
    padding: 40px 15px;
  }

  .content-section {
    padding: 40px;
  }

  .text-section h1 {
    font-size: 2.5rem;
  }

  .text-section h2 {
    font-size: 2rem;
  }

  .video-section h2 {
    font-size: 2rem;
  }

  .footer-content {
    gap: 40px;
    flex-direction: column;
  }

  .footer-links-section {
    justify-content: space-between;
    width: 100%;
  }
}

/* Mobile Landscape / Small Tablets */
@media (max-width: 768px) {
  .content-section {
    padding: 30px;
    margin-bottom: 30px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .feature-card {
    padding: 25px 15px;
  }

  .text-section h1 {
    font-size: 2rem;
    text-align: center;
  }

  .text-section h2 {
    font-size: 1.6rem;
  }

  .text-section p {
    font-size: 1rem;
  }

  .video-section h2 {
    font-size: 1.6rem;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .video-container {
    border-radius: 15px;
  }

  .footer-content {
    text-align: center;
    gap: 30px;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-links-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-links-column {
    min-width: 100%;
  }

  .footer-links-list a::before {
    display: none;
  }
}

/* Mobile Portrait */
@media (max-width: 576px) {
  .main-content {
    padding: 20px 10px;
  }

  .content-section {
    padding: 25px 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .text-section h1 {
    font-size: 1.8rem;
  }

  .text-section h2 {
    font-size: 1.5rem;
    padding-left: 15px;
  }

  .text-section ul li {
    padding: 15px 20px;
  }

  .video-section h2 {
    font-size: 1.5rem;
  }

  .video-info {
    padding: 20px;
  }

  .video-info + p a {
    width: 100%;
    justify-content: center;
  }

  .footer-logo-section {
    min-width: 100%;
  }

  .footer-tagline {
    font-size: 0.95rem;
  }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
  .hero-text {
    font-size: 1.8rem;
  }
  
  .image-placeholder {
    max-width: 250px;
    height: 433px;
  }
  
  .gameplay-loop,
  .strategy-tips {
    padding: 40px 15px;
    margin: 20px 10px;
  }
  
  .step-content {
    padding: 15px;
  }
  
  .step-details {
    padding: 15px;
  }
  
  .tip-card {
    padding: 20px;
  }
  
  .footer-logo {
    flex-direction: column;
    gap: 15px;
  }
}

/* Small Mobile Devices */
@media (max-width: 375px) {
  .text-section h1 {
    font-size: 1.6rem;
  }

  .text-section h2 {
    font-size: 1.3rem;
  }

  .feature-card {
    padding: 20px 15px;
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .video-section h2 {
    font-size: 1.3rem;
  }
}

/* ===== ADDITIONAL UTILITY CLASSES ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #edaa00, #ffc107, #edaa00);
  z-index: 9999;
  transition: width 0.1s ease;
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shadow-glow {
  box-shadow: 0 0 30px rgba(29, 43, 145, 0.15);
}

.shadow-glow:hover {
  box-shadow: 0 0 50px rgba(29, 43, 145, 0.25);
}