* {
  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 ===== */

/* Additional styles for the hero section */
.hero-container {
  width: 1588px;
  height: 764px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* background-image: url("../images/blueGrid.png"); */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Section (1124 x 764) - positioned inside container */
.hero-section {
  width: 1124px;
  height: 764px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  gap: 60px;
}

.text-column {
  flex: 0 1 500px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.image-column {
  flex: 0 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.2;
  color: white;
  margin-bottom: 30px;
  text-align: left;
}

.hero-p {
  font-family: "Poppins", sans-serif;
  color: white;
  text-align: left;
}

.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 32px;
  background-color: #edaa00;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: left;
}

.cta-button:hover {
  background-color: #1d4ed8;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Image placeholder */
.image-placeholder {
  width: 100%;
  max-width: 606px !important; 
  height: 600px !important;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Add just the shimmer animation */
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Add just the shimmer effect to image placeholder */
.image-placeholder {
  position: relative; /* Ensure this is set for absolute positioning */
  overflow: hidden; /* Keep overflow hidden */
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
  z-index: 1; /* Make sure it's above background but below image */
}

/* Ensure the image stays above the shimmer */
.image-placeholder img {
  position: relative;
  z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 1588px) {
  .hero-container {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .hero-section {
    width: 90%;
    padding: 60px 20px;
  }
}

@media (max-width: 992px) {
  .hero-text {
    font-size: 2.8rem;
  }

  .image-placeholder {
    max-width: 320px;
    height: 555px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    height: auto;
  }

  .hero-section {
    flex-direction: column;
    padding: 60px 20px;
    height: auto;
    gap: 40px;
  }

  .text-column {
    text-align: center;
  }

  .hero-text {
    font-size: 2.5rem;
  }

  .image-placeholder {
    max-width: 300px;
    height: 520px;
  }
}

@media (max-width: 480px) {
  .hero-text {
    font-size: 2rem;
  }

  .cta-button {
    padding: 12px 28px;
  }

  .image-placeholder {
    max-width: 280px;
    height: 485px;
  }
}

/* Animation for text */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-column > * {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.hero-text {
  animation-delay: 0.2s;
}

.cta-button {
  animation-delay: 0.6s;
}

.image-column {
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
  opacity: 0;
}

/*Footer*/

/* ===== SIMPLE FOOTER ===== */

.simple-footer {
  background-color: #1d2b91;
  color: #ffffff;
  padding: 40px 0 20px;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

/* Logo Section */
.footer-logo-section {
  flex: 1;
  min-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 60px;
  height: auto;
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffffff;
}

.footer-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 350px;
  opacity: 0.9;
}

/* Links Section */
.footer-links-section {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-links-column {
  min-width: 150px;
}

.links-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #edaa00;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 4px 0;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.copyright p {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-logo-section {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-tagline {
    margin: 0 auto;
    text-align: center;
  }

  .footer-links-section {
    justify-content: center;
    gap: 40px;
  }

  .links-title {
    text-align: center;
  }

  .footer-links-list {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-links-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-links-column {
    min-width: 100%;
  }
}


.core-concepts {
background-color: rgba(255, 255, 255, 0.9);
color: #1f2937;
padding: 60px 20px;
margin: 0 auto;
max-width: 1200px;
}

.concepts-container {
max-width: 800px;
margin: 0 auto;
}

.concepts-title {
font-family: "Poppins", sans-serif;
font-weight: 800;
font-size: 2.5rem;
margin-bottom: 20px;
color: #1d2b91;
}

.concepts-description {
font-family: "Poppins", sans-serif;
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 30px;
}

.concepts-list {
list-style: none;
padding: 0;
}

.concept-item {
font-family: "Poppins", sans-serif;
font-size: 1rem;
line-height: 1.6;
margin-bottom: 25px;
padding-left: 30px;
position: relative;
}

.concept-item:before {
content: "";
position: absolute;
left: 0;
top: 10px;
width: 12px;
height: 12px;
background-color: #edaa00;
border-radius: 50%;
}

.concept-sublist {
list-style: none;
padding-left: 20px;
margin-top: 10px;
}

.concept-sublist li {
position: relative;
padding-left: 20px;
}

.concept-sublist li:before {
content: "-";
position: absolute;
left: 0;
color: #edaa00;
}

/* ===== GAMEPLAY LOOP SECTION ===== */
.gameplay-loop {
    background: linear-gradient(135deg, rgba(29, 43, 145, 0.03) 0%, rgba(237, 170, 0, 0.03) 100%);
    padding: 80px 40px;
    margin: 60px auto;
    position: relative;
    overflow: hidden;
}

.gameplay-loop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50,0 L50,100 M0,50 L100,50" stroke="rgba(29, 43, 145, 0.03)" stroke-width="1"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
    z-index: 0;
}

.loop-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.loop-header {
    text-align: center;
    margin-bottom: 60px;
}

.loop-header h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.loop-header h2 i {
    color: #edaa00;
    margin-right: 15px;
    font-size: 2.5rem;
}

.loop-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1d4ed8, #edaa00);
    border-radius: 2px;
}

.loop-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    line-height: 1.6;
    color: #ffffff;
    max-width: 800px;
    margin: 30px auto 0;
    font-weight: 500;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #1d4ed8, #edaa00);
    border-radius: 2px;
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
}

.step-number {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #edaa00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.3);
    z-index: 2;
}

.step-content {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #1d4ed8;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(29, 43, 145, 0.15);
    border-left-color: #edaa00;
}

.step-content h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #1d2b91;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-content h3 i {
    color: #edaa00;
}

.step-content > p {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 25px;
}

.step-details {
    background: rgba(237, 170, 0, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.step-action {
    margin-bottom: 20px;
}

.step-action:last-child {
    margin-bottom: 0;
}

.step-action h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #1d2b91;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-action h4 i {
    color: #edaa00;
    font-size: 1.1rem;
}

.step-action p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-left: 28px;
}

.pro-tip {
    background: rgba(237, 170, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    border-left: 4px solid #edaa00;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pro-tip i {
    color: #edaa00;
    font-size: 1.3rem;
    margin-top: 3px;
}

.pro-tip p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1f2937;
    margin: 0;
}

.pro-tip strong {
    color: #1d2b91;
}

/* Minigames Grid */
.minigames-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.minigame-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 2px solid rgba(29, 78, 216, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.minigame-card:hover {
    border-color: #edaa00;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(237, 170, 0, 0.1);
}

.phase-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(90deg, #1d4ed8, #edaa00);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.minigame-card h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #1d2b91;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.minigame-card h4 i {
    color: #edaa00;
}

.minigame-desc {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 20px;
}

.minigame-detail {
    background: rgba(29, 78, 216, 0.03);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    border-left: 3px solid #1d4ed8;
}

.minigame-detail h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1d2b91;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.minigame-detail h5 i {
    color: #edaa00;
    font-size: 1rem;
}

.minigame-detail p {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

.step-visual {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(237, 170, 0, 0.1));
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin-top: 25px;
    border: 2px dashed #1d4ed8;
}

.step-visual.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(237, 170, 0, 0.1));
    border-color: #10b981;
}

.step-visual i {
    font-size: 3rem;
    color: #1d4ed8;
    margin-bottom: 15px;
}

.step-visual.success i {
    color: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.step-visual p {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #1d2b91;
    margin: 0;
}

.example-box {
    background: rgba(29, 78, 216, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    border-left: 4px solid #1d4ed8;
}

.example-box p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

.example-box strong {
    color: #1d2b91;
}

/* ===== ADVANCED STRATEGY SECTION ===== */
.strategy-tips {
    background: linear-gradient(135deg, #1d2b91 0%, #1d4ed8 100%);
    padding: 80px 40px;
    margin: 60px auto;
    position: relative;
    overflow: hidden;
}

.strategy-tips::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="120" height="120" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L120,120 M120,0 L0,120" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.strategy-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.strategy-header {
    text-align: center;
    margin-bottom: 60px;
}

.strategy-header h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.strategy-header h2 i {
    color: #edaa00;
    margin-right: 15px;
    font-size: 2.5rem;
}

.strategy-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #edaa00, #ffc107);
    border-radius: 2px;
}

.strategy-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 30px auto 0;
    font-weight: 500;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    background: white;
}

.tip-important {
    border: 3px solid #edaa00;
    box-shadow: 0 15px 40px rgba(237, 170, 0, 0.2);
}

.tip-icon {
    width: 70px;
    height: 70px;
    background: #edaa00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.tip-card:hover .tip-icon {
    transform: scale(1.1) rotate(10deg);
}

.tip-card h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #1d2b91;
    margin-bottom: 15px;
}

.tip-card > p {
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.tip-detail {
    background: rgba(237, 170, 0, 0.05);
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #edaa00;
    margin-top: 15px;
}

.tip-detail p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0 0 10px 0;
}

.tip-detail p:last-child {
    margin-bottom: 0;
}

.tip-detail strong {
    color: #1d2b91;
}

.tip-detail ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 0 0;
}

.tip-detail li {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.tip-detail li::before {
    content: "✓";
    color: #edaa00;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tip-detail li strong {
    color: #1d2b91;
}

/* Responsive adjustments for gameplay loop */
@media (max-width: 1200px) {
    .gameplay-loop,
    .strategy-tips {
        padding: 60px 30px;
        margin: 40px auto;
    }
}

@media (max-width: 768px) {
    .loop-header h2,
    .strategy-header h2 {
        font-size: 2.2rem;
    }
    
    .loop-subtitle,
    .strategy-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .step-number {
        left: -40px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .step-content {
        padding: 25px;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .minigames-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .gameplay-loop,
    .strategy-tips {
        padding: 40px 20px;
        margin: 30px 10px;
    }
    
    .loop-header h2,
    .strategy-header h2 {
        font-size: 1.8rem;
    }
    
    .loop-header h2 i,
    .strategy-header h2 i {
        font-size: 1.8rem;
    }
    
    .timeline {
        padding-left: 25px;
    }
    
    .timeline::before {
        left: 12px;
    }
    
    .step-number {
        left: -35px;
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .tip-card {
        padding: 25px;
    }
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Large Tablets and Small Laptops */
@media (max-width: 1200px) {
  .hero-container {
    width: 100%;
  }
  
  .hero-section {
    width: 90%;
    padding: 60px 20px;
  }
  
  .gameplay-loop,
  .strategy-tips {
    padding: 60px 30px;
    margin: 40px auto;
  }
  
  .navbar {
    padding: 12px 30px;
  }
  
  .footer-content {
    padding: 0 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 18px;
    font-size: 15px;
  }
  
  .nav-login .login-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  .hero-text {
    font-size: 2.8rem;
  }
  
  .image-placeholder {
    max-width: 320px;
    height: 555px;
  }
  
  .core-concepts {
    padding: 50px 20px;
  }
  
  .concepts-container {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .concepts-title {
    font-size: 2.2rem;
  }
  
  .loop-header h2,
  .strategy-header h2 {
    font-size: 2.2rem;
  }
  
  .loop-subtitle,
  .strategy-subtitle {
    font-size: 1.1rem;
  }
  
  .timeline {
    padding-left: 30px;
  }
  
  .timeline::before {
    left: 15px;
  }
  
  .step-number {
    left: -40px;
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  .step-content {
    padding: 25px;
  }
  
  .step-content h3 {
    font-size: 1.5rem;
  }
  
  .minigames-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-tagline {
    margin: 0 auto;
  }
  
  .footer-links-section {
    justify-content: center;
  }
}

/* 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: 8px 14px;
    font-size: 14px;
  }
  
  .nav-login .login-btn {
    padding: 8px 18px;
    font-size: 14px;
  }
  
  .hero-container {
    height: auto;
    padding: 40px 0;
  }
  
  .hero-section {
    flex-direction: column;
    padding: 40px 20px;
    height: auto;
    gap: 40px;
  }
  
  .text-column {
    text-align: center;
  }
  
  .hero-text {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .hero-p {
    text-align: center;
  }
  
  .cta-button {
    text-align: center;
  }
  
  .image-placeholder {
    max-width: 300px;
    height: 520px;
  }
  
  .core-concepts {
    padding: 40px 15px;
  }
  
  .concepts-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .concepts-description {
    text-align: center;
  }
  
  .concept-item {
    padding-left: 25px;
  }
  
  .gameplay-loop,
  .strategy-tips {
    padding: 50px 20px;
    margin: 30px auto;
  }
  
  .minigames-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .step-content {
    padding: 20px;
  }
  
  .tip-card {
    padding: 25px;
  }
  
  .footer-content {
    gap: 35px;
  }
  
  .footer-logo-section {
    min-width: 100%;
  }
  
  .footer-links-section {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }
  
  .footer-links-column {
    min-width: 100%;
  }
  
  .links-title {
    text-align: center;
  }
  
  .footer-links-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* 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: 6px 12px;
    font-size: 13px;
  }
  
  .nav-login .login-btn {
    padding: 6px 16px;
    font-size: 13px;
  }
  
  .hero-text {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .cta-button {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
  
  .image-placeholder {
    max-width: 280px;
    height: 485px;
  }
  
  .concepts-title {
    font-size: 1.8rem;
  }
  
  .concepts-description {
    font-size: 1rem;
  }
  
  .concept-item {
    font-size: 0.95rem;
    padding-left: 20px;
  }
  
  .concept-item:before {
    width: 10px;
    height: 10px;
    top: 8px;
  }
  
  .loop-header h2,
  .strategy-header h2 {
    font-size: 1.8rem;
  }
  
  .loop-header h2 i,
  .strategy-header h2 i {
    font-size: 1.8rem;
  }
  
  .timeline {
    padding-left: 25px;
  }
  
  .timeline::before {
    left: 12px;
  }
  
  .step-number {
    left: -35px;
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
  }
  
  .step-content h3 {
    font-size: 1.3rem;
  }
  
  .step-content > p {
    font-size: 1rem;
  }
  
  .tip-card h3 {
    font-size: 1.4rem;
  }
  
  .tip-card > p {
    font-size: 1rem;
  }
  
  .footer-logo img {
    width: 50px;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .footer-tagline {
    font-size: 0.9rem;
  }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
  .navbar {
    padding: 5px 10px;
  }
  
  .nav-logo img {
    width: 100px;
  }
  
  .nav-links {
    gap: 5px;
  }
  
  .nav-links a {
    padding: 6px 10px;
    font-size: 12px;
  }
  
  .nav-login .login-btn {
    padding: 6px 14px;
    font-size: 12px;
  }
  
  .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;
  }
}

/* Very Small Mobile Phones */
@media (max-width: 375px) {
  .navbar {
    padding: 4px 8px;
  }
  
  .nav-logo img {
    width: 90px;
  }
  
  .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: 5px 12px;
    font-size: 11px;
  }
  
  .hero-text {
    font-size: 1.6rem;
  }
  
  .cta-button {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  .image-placeholder {
    max-width: 220px;
    height: 381px;
  }
  
  .concepts-title {
    font-size: 1.6rem;
  }
  
  .concept-item {
    padding-left: 18px;
    margin-bottom: 20px;
  }
  
  .tip-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Landscape Mode for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .navbar {
    padding: 5px 15px;
  }
  
  .nav-links {
    margin-top: 5px;
  }
  
  .hero-container {
    height: auto;
    min-height: 100vh;
  }
  
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 30px 20px;
  }
  
  .hero-text {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .image-placeholder {
    max-height: 350px;
  }
  
  .gameplay-loop,
  .strategy-tips {
    padding: 30px 20px;
  }
  
  .minigames-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}