/* Overall page styling */
body {
    background-color: #f0f0f0;
    color: navy;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* Navigation bar styling */
  .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: red;
    padding: 12px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .nav-logo {
    height: 50px;
  }
  
  .nav-right-logo {
    height: 50px;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-bar a {
    color: red;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.2s;
  }
  
  .nav-bar a:hover {
    transform: scale(1.05);
    text-decoration: underline;
  }
  
  /* Main container */
  .main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  
  /* Logo showcase */
  .logo-showcase {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .heart-logo {
    height: 100px;
    margin: 0 20px;
    transition: transform 0.3s ease;
  }
  
  .heart-logo:hover {
    transform: scale(1.1);
  }
  
  /* Terminal container */
  .terminal-container {
    width: 100%;
    max-width: 800px;
    margin-bottom: 40px;
  }
  
  /* Terminal */
  .terminal {
    width: 100%;
    height: 500px;
    border: 3px solid navy;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    background-color: white;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  /* Terminal header */
  .terminal-header {
    background-color: navy;
    color: white;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .terminal-title {
    font-weight: bold;
    font-size: 14px;
  }
  
  .terminal-controls span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 8px;
    background-color: #ff5f57;
  }
  
  .terminal-controls span:nth-child(2) {
    background-color: #ffbd2e;
  }
  
  .terminal-controls span:nth-child(3) {
    background-color: #28c841;
  }
  /* Vibe out button styling */
.vibe-out {
    margin-left: 10px;
    padding: 2px 8px;
    background-color: #ff5f57;
    color: white;
    border-radius: 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    animation: pulse 2s infinite;
  }
  
  .vibe-out:hover {
    background-color: #ff7f77;
    transform: scale(1.05);
  }
  
  .vibe-out.playing {
    background-color: #28c841;
    animation: none;
  }
  
  @keyframes pulse {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.7;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* Terminal output area */
  .terminal-output {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px;
    font-size: 14px;
    color: navy;
    background-color: white;
    scroll-behavior: smooth;
  }
  
  /* ASCII art styling */
  .ascii-art {
    white-space: pre;
    font-size: 10px;
    margin-bottom: 20px;
    color: red;
    text-align: center;
    overflow: hidden;
  }
  
  /* Output line styling */
  .output-line {
    margin-bottom: 10px;
    white-space: pre-wrap;
    word-break: break-word;
  }
  
  .centered-bold {
    text-align: center;
    font-weight: bold;
    margin: 15px 0;
  }
  
  .system-message {
    color: #0066ff;
    font-style: italic;
  }
  
  .error-message {
    color: #ff3333;
  }
  
  .success-message {
    color: #00cc66;
  }

  /* Hyperlink styling - ADD THIS NEW SECTION HERE */
.terminal-output a {
    color: #ff3333;
    text-decoration: underline;
    cursor: pointer;
  }
  
  .terminal-output a:hover {
    color: #ff6666;
    text-decoration: none;
  }
  
  /* User command styling */
  .user-command {
    color: navy;
    font-weight: bold;
  }
  
  /* User command styling */
  .user-command {
    color: navy;
    font-weight: bold;
  }
  
  /* Prompt line styling */
  .prompt-line {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-top: 1px solid #e0e0e0;
    background-color: #f8f8f8;
    position: relative; 
  }
  
  .prompt {
    color: red;
    font-weight: bold;
    margin-right: 0; /* Remove right margin */
  padding-right: 0; /* Ensure no padding */
  }
  
  .input {
    background: none;
    border: none;
    color: navy;
    font-family: inherit;
    font-size: 14px;
    flex: 1;
    outline: none;
    caret-color: transparent;
    margin-left: 0; /* Remove left margin */
  padding-left: 0; /* Ensure no padding */
  }
  
  /* Blink animation for cursor */
  @keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  .cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: red;
    position: absolute;
    animation: blink 1s infinite;
    z-index: 10; /* Ensure cursor is visible over other elements */
    pointer-events: none; /* Make sure cursor doesn't interfere with clicks */
  }
  
  /* Command help menu styling */
  .command-help {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 12px;
    margin: 10px 0;
  }
  
  .command-help h3 {
    margin-top: 5px;
    margin-bottom: 10px;
    color: #ffbd2e;
  }
  
  .command-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 15px;
  }
  
  .command-name {
    font-weight: bold;
    color: #28c841;
  }

/* Order buttons styling */
.order-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap; /* For mobile responsiveness */
  }
  
  .order-button {
    background-color: red;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
    text-align: center;
  }
  
  .order-button:hover {
    background-color: #cc0000;
    transform: scale(1.05);
  }
  /* Secondary links styling */
.secondary-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 10px 0 30px 0;
    flex-wrap: wrap; /* For mobile responsiveness */
  }
  
  .secondary-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  
  .secondary-link:hover {
    color: red;
    text-decoration: underline;
  }
  /* Responsive adjustments */
@media (max-width: 480px) {
    .order-buttons {
      flex-direction: column;
      gap: 10px;
    }
    
    .order-button {
      width: 100%;
      max-width: 250px;
      margin: 0 auto;
    }
    
    .secondary-links {
      gap: 15px;
    }
  }
  
  /* Footer */
  .footer {
    background-color: navy;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 12px;
  }
  
  /* Loading animation */
  @keyframes typing {
    from { width: 0; }
    to { width: 100%; }
  }
  
  .typing-effect {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid transparent;
    animation: typing 3s steps(40, end);
  }
  
  /* Media Queries for Responsive Design */
  @media (max-width: 768px) {
    .nav-bar {
      flex-direction: column;
      padding: 10px;
    }
    
    .nav-logo {
      margin-bottom: 10px;
    }
    
    .terminal {
      height: 400px;
    }
    
    .heart-logo {
      height: 70px;
      margin: 0 10px;
    }
  }
  
  @media (max-width: 480px) {
    .nav-links {
      flex-direction: column;
      align-items: center;
    }
    
    .nav-bar a {
      margin: 5px 0;
    }
    
    .terminal {
      height: 350px;
      border-width: 2px;
    }
    
    .heart-logo {
      height: 50px;
    }
  }