/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  
  body {
    background-color: #FFFFFF; /* Changed from the Reddit gray to pure white */
    background-image: url('assets/background.png');
    background-repeat: no-repeat;
    background-position: left 506px top 250px;
    background-size: 30% 40%;
  }

  body.no-bg {
    background-image: none;
  }

  body.sitemap-bg {
    background-image: url('assets/tabletop.png');
    background-repeat: no-repeat;
    background-position: left 1100px top -70px;
    background-size: 35% auto;
  }
  
  /* ... keep your header css exactly the same ... */
  
  .coming-soon-text {
    font-family: 'EB Garamond', Georgia, serif;
    color: #1C1C1C; 
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: left; 
    text-transform: uppercase;
    /* Removed the text-shadow since the background is now white */
  }
  
  /* Reddit Header Layout */
  .reddit-header {
    background-color: #FFFFFF;
    height: 56px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid #EDEFF1;
    position: sticky;
    top: 0;
  }
  
  /* Left: Search Bar */
  .header-left {
    display: flex;
    align-items: center;
    flex-grow: 1;
    max-width: 300px;
  }

  .search-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
  }
  
  .search-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    fill: #878A8C;
    pointer-events: none;
  }
  
  .search-input {
    width: 100%;
    height: 40px;
    border-radius: 20px; 
    background-color: #FFFFFF;
    border: 1px solid #EDEFF1;
    padding: 0 16px 0 44px;
    font-size: 14px;
    color: #1C1C1C;
    outline: none;
    text-align: left;
    transition: all 0.2s ease-in-out;
  }
  
  .search-input::placeholder {
    color: #878A8C;
  }
  
  .search-input:hover {
    border: 1px solid #878A8C; /* Gives a clear interaction on hover */
  }
  
  .search-input:focus {
    background-color: #FFFFFF;
    border: 1px solid #FF5001; /* Your custom red */
    box-shadow: 0 0 8px 2px rgba(255, 215, 0, 0.6); /* Your custom gold glow */
  }
  
  /* Right: Logo (Scrooge icon left-aligned next to text) */
  .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    width: 250px;
  }

  .logo-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    order: -1;
  }

  .logo-text {
    color: #FF4500;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
  }

  /* Main Body Content */
  .main-content {
    display: block; /* Removed flex centering */
    min-height: calc(100vh - 56px); 
    padding-top: 20px;  /* 20px from the top nav */
    padding-left: 40px; /* 40px from the left border */
    padding-right: 20px;
  }
  
  .coming-soon-text {
    font-family: 'EB Garamond', Georgia, serif;
    color: #1C1C1C; 
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: left; /* Changed from center to left */
    text-transform: uppercase;
    text-shadow: 1px 1px 0px #FFFFFF; 
  }

  .sitemap-list {
    list-style: none;
    margin-top: 24px;
    padding: 0;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 18px;
  }

  .sitemap-list li {
    margin-bottom: 12px;
  }

  .sitemap-list a {
    color: #FF4500;
    text-decoration: none;
    font-weight: 600;
  }

  .sitemap-list a:hover {
    text-decoration: underline;
  }