

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Press Start 2P", cursive;
}

html {
  font-size: 16px;
}

body {
  background-color: #e6f7ff; /* calm aqua */
  color: #04364A;
  scroll-behavior: smooth;
}


/* Blue text stays clean (no outline) */
p, li {
  color: #04364A;
  text-shadow: none;
}

/* ==== NAVBAR ==== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: #045b73;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 1000;
  box-shadow: 0 0 0 4px black; /* pixel outline */
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

/* ==== MENU ICON ==== */
.menu-icon {
  font-size: 2rem;
  cursor: pointer;
}

/* ==== SIDE MENU ==== */
.nav-menu {
  position: fixed;
  top: 0;
  right: -300px;
  height: 100%;
  width: 300px;
  background-color: #045b73;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding-top: 100px;
  transition: right 0.4s ease-in-out;
  z-index: 999;
  box-shadow: 0 0 0 4px black; /* pixel outline */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.nav-menu.active {
  right: 0;
}

.nav-menu a {
  text-decoration: none;
  width: 85%;
  padding: 1rem 0;
  text-align: center;
  margin: 0.5rem 0;
  border-radius: 4px;
  transition: background-color 0.3s ease-in-out;
  font-size: 1rem;
  color: white;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
  box-shadow: 0 0 0 2px black;
}

.nav-menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ==== MAIN CONTENT ==== */
.main-content {
  padding-top: 100px;
  text-align: center;
}

.main-content h1 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
}

.main-content p, .main-content ul {
  font-size: 1rem;
  color: #04364A;
  line-height: 1.8;
  margin: 0.5rem 0;
}

/* ==== HERO SECTION ==== */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?auto=format&fit=crop&w=1400&q=60') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
  box-shadow: 0 0 0 4px black;
}

.hero h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1rem;
}

/* ==== PRODUCTS ==== */
ul {
  list-style: none;
  margin-top: 1.5rem;
}

ul li {
  margin: 0.7rem 0;
  padding: 0.6rem 1rem;
  background-color: white;
  display: inline-block;
  border-radius: 4px;
  color: #04364A;
  box-shadow: 0 0 0 3px black; /* pixel outline box */
  font-size: 1rem;
}

/* ==== PAGE LOADER ==== */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e6f7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.5s ease;
  box-shadow: 0 0 0 4px black;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-bar {
  width: 80%;
  height: 10px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
  image-rendering: pixelated;
  box-shadow: 0 0 0 3px black;
}

.loader-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00aaff, #0066cc);
  animation: loading 2.5s steps(8, end) forwards;
  border-radius: 2px;
}

@keyframes loading {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* === PRODUCTS PAGE === */
.products-hero {
  height: 80vh;
  background: url('assets/sushihero.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 0 0 4px black;
}

.products-hero img.logo {
  width: 40%;
  image-rendering: pixelated;
  max-width: 500px;
}

.products-hero h2 {
  color: white;
  font-size: 1rem;
  margin-top: 1rem;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
}

/* Divider */
.divider {
  position: relative;
  width: 90%;
  height: 60px;
  margin: 2.5rem auto 2rem;
  border: 4px solid black;
  border-radius: 4px;
  background: transparent;
  box-shadow: inset 0 0 0 4px #045b73;
  image-rendering: pixelated;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider h1 {
  background: #045b73;
  color: white;
  padding: 0.6rem 1rem;
  border: 3px solid black;
  border-radius: 4px;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
  font-size: 1rem;
  image-rendering: pixelated;
}

/* Product Section */
.product-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.product-card {
  width: 80%;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.95);
  border: 4px solid black;
  box-shadow: 0 0 0 6px #045b73 inset;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: scale(1.02);
}

.inner-card {
  border: 3px solid black;
  border-radius: 4px;
  background: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  image-rendering: pixelated;
}

.product-card img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  image-rendering: pixelated;
  flex-shrink: 0;
}

.product-info {
  flex: 1;
}

.product-info h2 {
  color: #045b73;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.85rem;
  color: #04364A;
  line-height: 1.5;
  text-align: justify;
}

/* Buttons */
.pixel-button {
  display: inline-block;
  border: 3px solid black;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.8rem;
  text-shadow: none;
  box-shadow: 0 0 0 3px black;
  transition: transform 0.2s ease, background 0.2s ease;
}

.pixel-button:hover { transform: scale(1.05); }

.download-btn { background: #045b73; color: white; margin-right: 0.5rem; }
.order-btn { background: #00aaff; color: white; }
.button-row { margin-top: 1rem; }

@media (max-width: 700px) {
  .inner-card {
    flex-direction: column;
    text-align: center;
  }
  .product-card img {
    width: 140px;
    height: 140px;
  }
  .product-info p {
    text-align: center;
  }
}

/* === CONTACT PAGE === */
.contact-hero {
  height: 70vh;
  background: url('assets/sushihero.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 0 0 4px black;
}

.contact-hero img.logo {
  width: 40%;
  image-rendering: pixelated;
  max-width: 500px;
}

.contact-hero h2 {
  color: white;
  font-size: 1rem;
  margin-top: 1rem;
  text-shadow: none;
}

/* Divider */
.divider {
  position: relative;
  width: 90%;
  height: 60px;
  margin: 2.5rem auto 2rem;
  border: 4px solid black;
  border-radius: 4px;
  background: transparent;
  box-shadow: inset 0 0 0 4px #045b73;
  image-rendering: pixelated;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider h1 {
  background: #045b73;
  color: white;
  padding: 0.6rem 1rem;
  border: 3px solid black;
  border-radius: 4px;
  font-size: 1rem;
  text-shadow: none;
  image-rendering: pixelated;
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.contact-box {
  width: 80%;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.95);
  border: 4px solid black;
  border-radius: 6px;
  box-shadow: 0 0 0 6px #045b73 inset;
}

.contact-box .inner-box {
  background: white;
  border: 3px solid black;
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
}

.contact-box h2 {
  color: #045b73;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  text-shadow: none;
}

.contact-box p,
.contact-box a {
  color: #04364A;
  font-size: 0.85rem;
  text-decoration: none;
  text-shadow: none;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

.contact-form input,
.contact-form textarea {
  width: 80%;
  max-width: 600px;
  padding: 0.6rem;
  border: 3px solid black;
  border-radius: 4px;
  background: #fefefe;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.65rem;
  color: #04364A;
  outline: none;
  image-rendering: pixelated;
}

.contact-form button {
  background: #045b73;
  color: white;
  border: 3px solid black;
  padding: 0.7rem 2rem;
  cursor: pointer;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.7rem;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.1s ease;
}

.contact-form button:hover {
  background: #067b9d;
  transform: scale(1.05);
}

@media (max-width: 700px) {
  .contact-box {
    width: 90%;
  }
  .contact-form input,
  .contact-form textarea {
    width: 90%;
  }
}

/* === ABOUT PAGE === */
.about-hero {
  height: 100vh;
  background: url('assets/sushihero.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 0 0 4px black;
}

.about-hero img.logo {
  width: 50%;
  image-rendering: pixelated;
  max-width: 600px;
}

.about-hero h2 {
  color: white;
  font-size: 1rem;
  margin-top: 1rem;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
}

/* Mascot animation */
.mascot {
  position: absolute;
  bottom: 20px;
  right: 5%;
  width: 180px;
  image-rendering: pixelated;
  animation: floaty 3s ease-in-out infinite alternate;
}

@keyframes floaty {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

/* Divider */
.divider {
  position: relative;
  width: 90%;
  height: 60px;
  margin: 2.5rem auto 2rem;
  border: 4px solid black;
  border-radius: 4px;
  background: transparent;
  box-shadow: inset 0 0 0 4px #045b73;
  image-rendering: pixelated;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider h1 {
  background: #045b73;
  color: white;
  padding: 0.6rem 1rem;
  border: 3px solid black;
  border-radius: 4px;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
  font-size: 1rem;
  image-rendering: pixelated;
}

/* About Boxes */
.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  padding: 1rem 2rem 3rem;
}

.about-box {
  flex: 1 1 30%;
  background: rgba(255, 255, 255, 0.95);
  border: 4px solid black;
  border-radius: 6px;
  padding: 0.8rem;
  box-shadow: 0 0 0 6px #045b73 inset;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 250px;
  max-width: 320px;
  text-align: justify;
}

.about-box .inner-box {
  background: white;
  border: 3px solid black;
  border-radius: 4px;
  padding: 1rem;
  height: 100%;
}

.about-box h2 {
  color: #045b73;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: none;
  font-size: 0.9rem;
}

.about-box p {
  color: #04364A;
  line-height: 1.6;
  font-size: 0.8rem;
}

/* === LOADER FISH === */
.page-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-bar {
  width: 80%;
  height: 16px;
  border: 3px solid black;
  background: #cceeff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 0 3px #045b73;
}

.loader-fill {
  background: linear-gradient(90deg, #00aaff, #0066cc);
  border-radius: 2px;
  width: 0%;
  height: 100%;
  position: relative;
  animation: loading 2.5s steps(8, end) forwards;
}

.loader-fill::after {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  width: 64px;
  height: 64px;
  background: url('assets/Fishload.png') center/contain no-repeat;
  image-rendering: pixelated;
  animation: fishmove 2.5s linear forwards;
}

@keyframes fishmove {
  0% { left: 0%; }
  100% { left: calc(100% - 64px); }
}

/* Responsive */
@media (max-width: 900px) {
  .about-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .about-box {
    max-width: 90%;
  }
}

/* === ORDER POPUP === */
.popup-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #ffffff;
  border: 4px solid black;
  box-shadow: 0 0 0 6px #045b73 inset;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  width: 90%;
  max-width: 400px;
  animation: pop-in 0.2s ease;
}

@keyframes pop-in {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-box h2 {
  color: #045b73;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.popup-box input {
  width: 90%;
  padding: 0.5rem;
  border: 3px solid black;
  border-radius: 4px;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.7rem;
  margin-bottom: 0.8rem;
  color: #04364A;
}

.popup-buttons {
  display: flex;
  justify-content: space-around;
}

.popup-buttons button {
  background: #045b73;
  color: white;
  border: 3px solid black;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.65rem;
}

.popup-buttons button:hover {
  transform: scale(1.05);
}


/* About Us Section Styling */
.about-content {
    padding: 2rem 0;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff6b6b;
}

.card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.card ul {
    list-style: none;
    padding: 0;
}

.card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.card li:before {
    content: "🍣";
    position: absolute;
    left: 0;
}

.tagline-card {
    border-left-color: #4ecdc4;
}

.tagline {
    font-size: 1.3rem;
    font-weight: bold;
    color: #4ecdc4;
    text-align: center;
    font-style: italic;
}

/* Game Demo Styling */
.game-demo {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    text-align: center;
}

.game-demo h3 {
    color: #333;
    margin-bottom: 1rem;
}

.game-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .game-container iframe {
        width: 100%;
        height: 200px;
    }
}

/* Game Demo Styling */
.game-demo {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    text-align: center;
    border: 2px dashed #ff6b6b;
}

.game-demo h3 {
    color: #333;
    margin-bottom: 1rem;
}

.game-teaser {
    background: #fff9e6;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #ffd166;
}

.fun-message {
    font-size: 1.1rem;
    color: #e85d04;
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 500;
}

.play-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
}

.play-button:hover {
    background: linear-gradient(135deg, #e85d04, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 107, 107, 0.4);
}

.game-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
}

.game-preview small {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-demo {
        padding: 1.5rem;
    }
    
    .game-teaser {
        padding: 1rem;
    }
    
    .play-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


/* Music Controls Styling */
.music-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none; /* Hidden by default, shown if autoplay fails */
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.music-btn {
    background: rgba(255, 107, 107, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.music-btn:hover {
    background: rgba(255, 107, 107, 1);
    transform: scale(1.1);
}

/* Audio element hidden but functional */
#backgroundMusic {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Music controls label */
.music-controls::before {
    content: "Music:";
    font-size: 0.8rem;
    color: #666;
    margin-right: 5px;
    font-weight: bold;
}

/* === BUSINESS OBJECTIVES === */
.business-objectives {
    padding: 2rem;
}

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

.objective-card {
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid black;
    border-radius: 6px;
    box-shadow: 0 0 0 6px #045b73 inset;
}

.objective-card .inner-box {
    background: white;
    border: 3px solid black;
    border-radius: 4px;
    padding: 1.5rem;
    text-align: center;
}

.objective-card h3 {
    color: #045b73;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.objective-card p {
    color: #04364A;
    font-size: 0.8rem;
    line-height: 1.5;
}

/* === PESTLE ANALYSIS === */
.pestle-section {
    padding: 2rem;
}

.pestle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pestle-card {
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid black;
    border-radius: 6px;
    box-shadow: 0 0 0 6px #045b73 inset;
}

.pestle-card .inner-box {
    background: white;
    border: 3px solid black;
    border-radius: 4px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
}

.pestle-card h3 {
    color: #045b73;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.pestle-card p {
    color: #04364A;
    font-size: 0.75rem;
    line-height: 1.5;
}

/* === FINANCIAL SECTION === */
.finance-section {
    padding: 2rem;
}

.finance-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.finance-card {
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid black;
    border-radius: 6px;
    box-shadow: 0 0 0 6px #045b73 inset;
}

.finance-card .inner-box {
    background: white;
    border: 3px solid black;
    border-radius: 4px;
    padding: 1.5rem;
    text-align: center;
}

.finance-card h3 {
    color: #045b73;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.finance-card .amount {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00aaff;
    margin-bottom: 0.5rem;
}

.finance-card p {
    color: #04364A;
    font-size: 0.75rem;
}

/* === PRICING TABLE === */
.pricing-table {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid black;
    border-radius: 6px;
    box-shadow: 0 0 0 6px #045b73 inset;
}

.pricing-table .inner-box {
    background: white;
    border: 3px solid black;
    border-radius: 4px;
    padding: 1.5rem;
}

.pricing-table h3 {
    color: #045b73;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.7rem;
}

.pricing-table th {
    background: #045b73;
    color: white;
    padding: 0.8rem;
    border: 2px solid black;
    text-shadow: none;
}

.pricing-table td {
    padding: 0.6rem;
    border: 2px solid black;
    text-align: center;
    background: white;
}

.pricing-table tr:nth-child(even) {
    background: #f0f8ff;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .objectives-grid,
    .pestle-grid {
        grid-template-columns: 1fr;
    }
    
    .finance-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-table {
        width: 95%;
        overflow-x: auto;
    }
    
    .pricing-table table {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .finance-cards {
        grid-template-columns: 1fr;
    }
}

/* === BUSINESS PLAN - ENHANCED SECTIONING === */
.business-plan-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Plan Sections */
.plan-section {
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.95);
  border: 4px solid black;
  border-radius: 8px;
  box-shadow: 0 0 0 6px #045b73 inset;
  overflow: hidden;
}

.section-header {
  background: linear-gradient(135deg, #045b73, #067b9d);
  padding: 1.5rem 2rem;
  border-bottom: 4px solid black;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-header .section-icon {
  font-size: 2rem;
}

.section-header h2 {
  color: white;
  margin: 0;
  font-size: 1.2rem;
  text-shadow: 
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
}

.section-content {
  padding: 2rem;
}

/* Executive Summary */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.summary-card {
  background: #f8f9fa;
  border: 3px solid black;
  border-radius: 6px;
}

.summary-card .inner-box {
  padding: 1.5rem;
  background: white;
}

.summary-card h3 {
  color: #045b73;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.summary-card p {
  color: #04364A;
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Company Overview */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.overview-card {
  background: #f8f9fa;
  border: 3px solid black;
  border-radius: 6px;
}

.overview-card .inner-box {
  padding: 1.5rem;
  background: white;
  text-align: center;
}

.overview-card h3 {
  color: #045b73;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.overview-card p {
  color: #04364A;
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Market Analysis */
.analysis-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.target-market, .value-proposition {
  background: #f8f9fa;
  border: 3px solid black;
  border-radius: 6px;
}

.target-market .inner-box, .value-proposition .inner-box {
  padding: 1.5rem;
  background: white;
}

.target-market h3, .value-proposition h3 {
  color: #045b73;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.market-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.market-segment h4 {
  color: #067b9d;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.market-segment p {
  color: #04364A;
  font-size: 0.7rem;
  line-height: 1.4;
}

.value-proposition ul {
  list-style: none;
  padding: 0;
}

.value-proposition li {
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.75rem;
  color: #04364A;
}

.value-proposition li:before {
  content: "✅";
  position: absolute;
  left: 0;
}

/* PESTLE Analysis */
.pestle-section {
  margin-top: 2rem;
}

.subsection-title {
  text-align: center;
  color: #045b73;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.pestle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.pestle-card {
  background: #f8f9fa;
  border: 3px solid black;
  border-radius: 6px;
}

.pestle-card .inner-box {
  padding: 1rem;
  background: white;
  text-align: center;
  height: 100%;
}

.pestle-card h4 {
  color: #045b73;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.pestle-card p {
  color: #04364A;
  font-size: 0.7rem;
  line-height: 1.3;
}

/* Operations Plan */
.operations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.operation-card {
  background: #f8f9fa;
  border: 3px solid black;
  border-radius: 6px;
}

.operation-card .inner-box {
  padding: 1.5rem;
  background: white;
  text-align: center;
  height: 100%;
}

.operation-card h3 {
  color: #045b73;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.operation-card p {
  color: #04364A;
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Financial Plan */
.financial-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.finance-card {
  background: #f8f9fa;
  border: 3px solid black;
  border-radius: 6px;
}

.finance-card .inner-box {
  padding: 1.5rem;
  background: white;
  text-align: center;
}

.finance-card h3 {
  color: #045b73;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.finance-card .amount {
  font-size: 1.3rem;
  font-weight: bold;
  color: #00aaff;
  margin-bottom: 0.5rem;
}

.finance-card p {
  color: #04364A;
  font-size: 0.75rem;
}

/* Pricing Section */
.pricing-section {
  background: #f8f9fa;
  border: 3px solid black;
  border-radius: 6px;
}

.pricing-section .inner-box {
  padding: 2rem;
  background: white;
}

.pricing-section h3 {
  color: #045b73;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.pricing-table th {
  background: #045b73;
  color: white;
  padding: 0.8rem;
  border: 2px solid black;
  text-shadow: none;
}

.pricing-table td {
  padding: 0.6rem;
  border: 2px solid black;
  text-align: center;
  background: white;
}

.pricing-table tr:nth-child(even) {
  background: #f0f8ff;
}

.profit-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: center;
  margin-top: 1rem;
}

.profit-summary p {
  background: #e6f7ff;
  padding: 0.8rem;
  border: 2px solid black;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #04364A;
}

/* SWOT Analysis */
.swot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.swot-card {
  border: 3px solid black;
  border-radius: 6px;
}

.swot-card .inner-box {
  padding: 1.5rem;
  background: white;
  height: 100%;
}

.swot-card h3 {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.swot-card ul {
  list-style: none;
  padding: 0;
}

.swot-card li {
  padding: 0.4rem 0;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.75rem;
  color: #04364A;
  line-height: 1.3;
}

.swot-card li:before {
  position: absolute;
  left: 0;
}

/* SWOT Color Coding */
.strengths {
  box-shadow: 0 0 0 6px #4CAF50 inset;
}
.strengths h3 { color: #4CAF50; }
.strengths li:before { content: "✅"; }

.weaknesses {
  box-shadow: 0 0 0 6px #FF9800 inset;
}
.weaknesses h3 { color: #FF9800; }
.weaknesses li:before { content: "⚠️"; }

.opportunities {
  box-shadow: 0 0 0 6px #2196F3 inset;
}
.opportunities h3 { color: #2196F3; }
.opportunities li:before { content: "🚀"; }

.threats {
  box-shadow: 0 0 0 6px #F44336 inset;
}
.threats h3 { color: #F44336; }
.threats li:before { content: "🌪️"; }

/* Responsive Design */
@media (max-width: 768px) {
  .business-plan-container {
    padding: 1rem 0.5rem;
  }
  
  .section-content {
    padding: 1rem;
  }
  
  .summary-grid,
  .overview-grid,
  .analysis-main,
  .operations-grid,
  .financial-highlights,
  .swot-grid {
    grid-template-columns: 1fr;
  }
  
  .market-details,
  .profit-summary {
    grid-template-columns: 1fr;
  }
  
  .pestle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .section-header {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .pestle-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-table {
    font-size: 0.6rem;
  }
}

/* === VIDEO SECTION === */
.video-section {
  padding: 2rem;
  text-align: center;
}

.video-container {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.95);
  border: 4px solid black;
  border-radius: 8px;
  box-shadow: 0 0 0 6px #045b73 inset;
  overflow: hidden;
}

.about-video {
  width: 100%;
  height: auto;
  display: block;
  border: 3px solid black;
  border-radius: 4px;
  image-rendering: pixelated;
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(4, 91, 115, 0.9);
  color: white;
  padding: 1rem 2rem;
  border: 3px solid black;
  border-radius: 6px;
  text-align: center;
  backdrop-filter: blur(5px);
}

.video-overlay p {
  margin: 0;
  font-size: 0.9rem;
  text-shadow: 
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

/* === MISSION & VISION UPDATES === */
.about-content {
  padding: 2rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.mission-card {
  background: rgba(255, 255, 255, 0.95);
  border: 4px solid black;
  border-radius: 6px;
  box-shadow: 0 0 0 6px #045b73 inset;
}

.mission-card .inner-box {
  background: white;
  border: 3px solid black;
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

.mission-card h3 {
  color: #045b73;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.mission-card p {
  color: #04364A;
  font-size: 0.8rem;
  line-height: 1.5;
}

.mission-card ul {
  list-style: none;
  padding: 0;
}

.mission-card li {
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.75rem;
  color: #04364A;
  text-align: left;
}

.mission-card li:before {
  content: "🍣";
  position: absolute;
  left: 0;
}

.tagline-card {
  box-shadow: 0 0 0 6px #4ecdc4 inset !important;
}

.tagline {
  font-size: 1.1rem;
  font-weight: bold;
  color: #4ecdc4;
  text-align: center;
  font-style: italic;
  margin: 0;
}

/* === BUSINESS OBJECTIVES === */
.business-objectives {
  padding: 2rem;
}

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

.objective-card {
  background: rgba(255, 255, 255, 0.95);
  border: 4px solid black;
  border-radius: 6px;
  box-shadow: 0 0 0 6px #045b73 inset;
}

.objective-card .inner-box {
  background: white;
  border: 3px solid black;
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
}

.objective-card h3 {
  color: #045b73;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.objective-card p {
  color: #04364A;
  font-size: 0.8rem;
  line-height: 1.5;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .video-section {
    padding: 1rem;
  }
  
  .video-container {
    width: 95%;
  }
  
  .video-overlay {
    padding: 0.8rem 1.5rem;
  }
  
  .video-overlay p {
    font-size: 0.8rem;
  }
  
  .mission-vision,
  .objectives-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content,
  .business-objectives {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .video-overlay {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 1rem;
  }
  
  .mission-card .inner-box,
  .objective-card .inner-box {
    padding: 1rem;
  }
}

/* === CONTACT PAGE ENHANCEMENTS === */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Contact Info Section */
.contact-info-section {
  margin-bottom: 3rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 4px solid black;
  border-radius: 8px;
  box-shadow: 0 0 0 6px #045b73 inset;
}

.contact-header h2 {
  color: #045b73;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-header p {
  color: #04364A;
  font-size: 0.8rem;
  line-height: 1.5;
}

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

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border: 4px solid black;
  border-radius: 8px;
  box-shadow: 0 0 0 6px #045b73 inset;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-details h3 {
  color: #045b73;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.contact-details p {
  color: #04364A;
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}

.contact-note {
  color: #666 !important;
  font-size: 0.7rem !important;
  font-style: italic;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.social-link {
  color: #045b73;
  text-decoration: none;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border: 2px solid #045b73;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: #045b73;
  color: white;
}

/* Contact Form Section */
.contact-form-section {
  background: rgba(255, 255, 255, 0.95);
  border: 4px solid black;
  border-radius: 8px;
  box-shadow: 0 0 0 6px #045b73 inset;
  padding: 2rem;
  margin-bottom: 3rem;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  color: #045b73;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.form-header p {
  color: #04364A;
  font-size: 0.8rem;
  line-height: 1.5;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #045b73;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 3px solid black;
  border-radius: 6px;
  background: white;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.7rem;
  color: #04364A;
  outline: none;
  image-rendering: pixelated;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00aaff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  transform: scale(1.2);
}

.checkbox-group label {
  margin: 0;
  font-weight: normal;
  font-size: 0.7rem;
}

.submit-btn {
  background: linear-gradient(135deg, #045b73, #067b9d);
  color: white;
  border: 3px solid black;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #067b9d, #045b73);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 91, 115, 0.3);
}

.btn-icon {
  font-size: 1rem;
}

/* Map Section */
.map-section {
  margin-bottom: 2rem;
}

.map-container {
  background: rgba(255, 255, 255, 0.95);
  border: 4px solid black;
  border-radius: 8px;
  box-shadow: 0 0 0 6px #045b73 inset;
  overflow: hidden;
}

.map-placeholder {
  position: relative;
  height: 300px;
  background: #e6f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(4, 91, 115, 0.9);
  color: white;
  padding: 1.5rem;
  border: 3px solid black;
  border-radius: 6px;
  text-align: center;
  z-index: 2;
  backdrop-filter: blur(5px);
}

.map-overlay h3 {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  text-shadow: 
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.map-overlay p {
  margin: 0.3rem 0;
  font-size: 0.7rem;
  text-shadow: 
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.map-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #cceeff, #99ddff);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    padding: 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    padding: 1rem;
  }
  
  .contact-form-section {
    padding: 1.5rem;
  }
  
  .social-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .map-overlay {
    padding: 1rem;
  }
  
  .map-overlay h3 {
    font-size: 0.8rem;
  }
  
  .map-overlay p {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin-bottom: 0.5rem;
  }
  
  .checkbox-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.7rem;
  }
}

/* === ENHANCED PRODUCTS PAGE === */
.products-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Product Sections */
.product-section {
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.95);
  border: 4px solid black;
  border-radius: 8px;
  box-shadow: 0 0 0 6px #045b73 inset;
  overflow: hidden;
}

.section-header {
  background: linear-gradient(135deg, #045b73, #067b9d);
  padding: 1.5rem 2rem;
  border-bottom: 4px solid black;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-header .section-icon {
  font-size: 2rem;
}

.section-header h2 {
  color: white;
  margin: 0;
  font-size: 1.2rem;
  text-shadow: 
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
}

/* Sushi Grid */
.sushi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.sushi-card {
  background: #f8f9fa;
  border: 3px solid black;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.sushi-card:hover {
  transform: translateY(-2px);
}

.sushi-image {
  height: 200px;
  overflow: hidden;
}

.sushi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}

.sushi-info {
  padding: 1.5rem;
}

.sushi-info h3 {
  color: #045b73;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.sushi-description {
  color: #04364A;
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.sushi-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.price {
  color: #00aaff;
  font-weight: bold;
  font-size: 0.9rem;
}

.rating {
  font-size: 0.7rem;
}

.order-sushi-btn {
  width: 100%;
  background: #045b73;
  color: white;
  border: 2px solid black;
  padding: 0.8rem;
  border-radius: 4px;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.7rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.order-sushi-btn:hover {
  background: #067b9d;
}

/* Enhanced Game Demo */
.demo-content {
  padding: 2rem;
  text-align: center;
}

.demo-content h3 {
  color: #045b73;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.demo-content p {
  color: #04364A;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.game-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.feature-icon {
  font-size: 1.5rem;
}

.feature-text {
  color: #04364A;
  font-size: 0.7rem;
  font-weight: bold;
}

/* Order Section */
.order-section {
  padding: 2rem;
}

.order-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.order-info h3 {
  color: #045b73;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.order-info p {
  color: #04364A;
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.order-options {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.option-icon {
  font-size: 1.2rem;
}

.option-text {
  color: #04364A;
  font-size: 0.7rem;
  text-align: center;
}

.order-buttons {
  display: flex;
  gap: 1rem;
}

.order-image img {
  width: 100%;
  max-width: 200px;
  border: 3px solid black;
  border-radius: 8px;
  image-rendering: pixelated;
}

/* Updated Pixel Buttons */
.pixel-button {
  display: inline-block;
  border: 3px solid black;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.7rem;
  text-shadow: none;
  box-shadow: 0 0 0 3px black;
  transition: transform 0.2s ease, background 0.2s ease;
  text-align: center;
  cursor: pointer;
}

.pixel-button:hover {
  transform: scale(1.05);
}

.download-btn {
  background: #045b73;
  color: white;
}

.order-btn {
  background: #00aaff;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .products-container {
    padding: 1rem;
  }
  
  .sushi-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  
  .order-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .order-options {
    justify-content: center;
  }
  
  .order-buttons {
    flex-direction: column;
  }
  
  .game-features {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .section-header {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .sushi-info {
    padding: 1rem;
  }
  
  .demo-content {
    padding: 1.5rem;
  }
} 

.nav-buttons {
  display: flex;
  gap: 20px;
}

.nav-buttons a {
  text-decoration: none;
  padding: 8px 15px;
  background-color: #0474a0;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.nav-buttons a:hover {
  background-color: #20b6d1;
}
