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

    body {
      font-family: 'Nunito Sans', sans-serif;
      background: #fff;
      color: #111;
    }

    header {
      background: #FF8243;
      color: black;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

    header h1 {
      font-size: 1.7rem;
      font-weight: bold;
    }
	
	 /* Flashing & shaking “app” */
    .flash-app {
      display: inline-block;
      animation: colorFlash 4s linear infinite, shake 5s ease-in-out infinite;
    }
	
	
        /* ---------- Keyframes ---------- */
    @keyframes colorFlash {
      0%   { color: #ff80ab; }
      33%  { color: #b9f6ca; }
      66%  { color: #ffbcaf; }
      100% { color: #ff80ab; }
    }

    @keyframes shake {
      0%, 100% { transform: translate(0,0) rotate(0); }
      20%, 60% { transform: translate(-1px,1px) rotate(-1deg); }
      40%, 80% { transform: translate(1px,-1px) rotate(1deg); }
    }

    nav {
      display: flex;
      gap: 1.5rem;
    }

    nav a {
      color: black;
      text-decoration: none;
      font-weight: 600;
    }

    nav a:hover {
      text-decoration: underline;
    }

    .burger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .burger div {
      width: 25px;
      height: 3px;
      background: black;
      margin: 4px 0;
    }

    @media (max-width: 768px) {
      nav {
        position: absolute;
        top: 60px;
        right: 0;
        background: #000;
        flex-direction: column;
        align-items: flex-start;
        width: 200px;
        padding: 1rem;
        display: none;
      }

      nav.active {
        display: flex;
      }

      .burger {
        display: flex;
      }
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      padding: 40px;
	  color: white;
    }

      .card {
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  height: 250px;
  padding: 20px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

    .card h3 {
      color: #000;
      margin-bottom: 0.5rem;
    }

    .card p {
      color: #444;
      font-size: 0.95rem;
    }

    
.card .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
}

    
/* Background images per card (based on order) */
.card:nth-child(1) {
  background-image: url('/images/gaming.jpg');
}

.card:nth-child(2) {
  background-image: url('/images/news2.jpg');
}

.card:nth-child(3) {
  background-image: url('/images/loading.jpg');
}


    .hero-carousel {
       height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #000;
      color: #FF8243;
      position: relative;
      text-align: center;
      overflow: hidden;
    }

    .slide {
      display: none;
      flex-direction: column;
      gap: 1rem;
	  height: 100%;
	  
    }

    .slide h2 {
      font-size: 2.5rem;
    }

    .slide p {
      font-size: 1.1rem;
    }

    .slide.active {
      display: flex;
      animation: fadeIn 1s ease-in-out;
    }

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

    .carousel-buttons {
      position: absolute;
      bottom: 20px;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 2rem;
    }

    .carousel-buttons button {
      background: rgba(255, 215, 0, 0.2);
      border: 2px solid #FF8243;
      color: #FFD700;
      font-size: 2rem;
      padding: 0.4rem 1rem;
      cursor: pointer;
      border-radius: 6px;
      transition: background 0.3s ease;
    }

    .carousel-buttons button:hover {
      background: rgba(255, 215, 0, 0.4);
    }

    .store-banner {
      background-image: url('');
      background-size: cover;
      background-position: center;
     height: 480px; /* for 800px tall screens */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .store-content {
      background: rgba(0, 0, 0, 0.7);
      padding: 2.5rem 3.5rem;
      border-radius: 12px;
      text-align: center;
    }

    .store-content h2 {
      color: #FF8243;
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .store-btn {
      background: #FF8243;
      color: #000;
      padding: 1rem 2.5rem;
      font-size: 1rem;
      font-weight: bold;
      text-decoration: none;
      border-radius: 40px;
      transition: background 0.3s ease;
      display: inline-block;
    }

    .store-btn:hover {
      background: #e6c200;
    }

    footer {
      background: #000;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
      color: #FF8243;
    }

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffcc00;
}
