/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0d1117; /* Gaming vibe dark */
    color: #ffffff;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  header {
    background: #161b22;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
  }
  
  .logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00d8ff;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
  }
  
  .nav-links a:hover {
    color: #ff6f61;
  }
  
  /* Rent Header */
  .rent-header {
    text-align: center;
    padding: 2rem;
    background: #00d8ff;
    color: #161b22;
  }
  
  .rent-header h2 {
    font-size: 2.5rem;
  }
  
  .rent-header p {
    font-size: 1.2rem;
  }
  
  .search-bar {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .search-bar input {
    padding: 0.8rem;
    width: 300px;
    border-radius: 5px;
    border: none;
    margin-right: 0.5rem;
  }
  
  .search-bar button {
    padding: 0.8rem;
    border: none;
    background: #ff6f61;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .search-bar button:hover {
    background: #161b22;
  }
  
  /* Rent Grid */
  .rent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .rent-item {
    background: #161b22;
    border-radius: 10px;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
  }
  
  .rent-item:hover {
    transform: scale(1.05);
  }
  
  .rent-item img {
    width: 100%;
    border-radius: 10px;
  }
  
  .rent-item h3 {
    color: #00d8ff;
    margin: 1rem 0;
  }
  
  .rent-item p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .rent-now {
    padding: 0.5rem 1.5rem;
    background: #ff6f61;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .rent-now:hover {
    background: #00d8ff;
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 1rem;
    background: #161b22;
    color: #ffffff;
    border-top: 1px solid #333;
  }
  