/* Clean, finance-leaning strip (no comic fonts) */
body {
    margin: 0;
    background: #0d0d0d;
    color: #fff;
    font-family: 'Saira', sans-serif !important;

  }
  
  /* Full-width ticker bar */
  .price-bar {
    width: 100%;
    background: linear-gradient(90deg, #1e1e2f, #141414);
    border-bottom: 2px solid #86efaa;
    padding: 4px 0;           /* slight breathing room around the ticker */
    box-shadow: 0 2px 10px rgba(18, 206, 235, 0.2);
  }
  
  /* Optional: keep it always visible at top */
  /* .price-bar { position: sticky; top: 0; z-index: 1030; } */

  




  /* Custom Ticker Bar */
.custom-ticker {
    position: relative;
    overflow: hidden;
    background: #86efaa;
    border-bottom: 2px solid #86efaa;
    height: 45px;
    display: flex;
    align-items: center;
  }
  
  /* The moving track */
  .ticker-track {
    display: flex;
    width: max-content;
    animation: tickerMove 25s linear infinite; /* adjust 25s for speed */
  }
  
  /* Each text item */
  .ticker-item {
    flex: 0 0 auto;
    margin-right: 60px;
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    white-space: nowrap;
  }
  
  @keyframes tickerMove {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }




  
  .brand-logo {
    width: 32px;
    height: 32px;
  }
  
  .brand-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #86efaa;
  }

  @media (max-width:768px){
    .brand-name{
      font-size: 10px !important;
    }
  }
  
  .brand-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: #000;
    border-bottom: 4px solid #86efaa;
  }
  
  /* Left section */
  .brand-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  /* Center buttons */
  .brand-center {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex: 1; /* take available space */
  }
  
  /* Right button */
  .brand-right {
    display: flex;
    align-items: center;
  }
  
   /* Latest News button */
   .latest-news-btn {
    background: #86efab;
    border: 3px solid #ffffff;
    
    color: #000000;
    font-size: 0.95rem;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .latest-news-btn:hover {
    background: #000000;
    transform: scale(1.05);
  }
 
  
  .latest-news-btn {
    
   

    font-size: 1rem;
    padding: 12px 22px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 4px 4px 0 #000;
    
    /* Angled corner effect */
    border-radius: 0;
    clip-path: polygon(
      8% 0%,   /* angled top-left */
      100% 0%, 
      100% 85%, 
      92% 100%, /* angled bottom-right */
      0% 100%, 
      0% 15%
    );
  
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s ease;
  }
  
  /* Hover effect */
  .latest-news-btn:hover {
    background: #000;
    color: #86efaa;
    box-shadow: 6px 6px 0 #86efaa;
    transform: translateY(-3px);
  }
  
  


  /* News + Search Bar */
.news-search-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #121212;
    border-top: 2px solid #86efaa;
    border-bottom: 2px solid #86efaa;
    padding: 8px 15px;
  }
  
  
  /* Search box */
  .search-box {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .search-box input {
    padding: 6px 12px;
    border: 1px solid #86efaa;
    border-radius: 6px;
    background: #1e1e2f;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
  }
  
  .search-box input::placeholder {
    color: #aaa;
  }
  
  .search-btn {
    background: #86efaa;
    border: none;
    color: #000;
    font-weight: 600;
    padding: 7px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .search-btn:hover {
    background: #0fa09b;
    color: #fff;
  }
  




/* Section Wrapper */
.tdjcp-section {
  margin: 50px auto;
  padding: 25px;
  max-width: 1200px;
  background: #000; /* solid black bg */
  border-radius: 16px;
  border: 4px solid #86efaa; /* thick comic border */
  box-shadow: 8px 8px 0 #86efaa; /* offset shadow */
  color: #fff;
  overflow-x: auto;
  font-family: "Saira", sans-serif;
}

@media (max-width:768px){
  .tdjcp-section{
    max-width: 500px !important;
  }
}

/* Heading */
.tdjcp-heading {
  margin-bottom: 25px;
  font-size: 28px;
  text-align: center;
  font-weight: 900;
  color: #86efaa;
  text-transform: uppercase;
  
}
.tdjcp-heading a {
  color: inherit;
  text-decoration: none;
}

/* Header Row */
.token-header {
  display: grid;
  grid-template-columns: 0.4fr 0.8fr 1fr 2fr 3fr 1fr;
  font-weight: 700;
  padding: 14px 18px;
  background: #86efaa;
  color: #000;
  border-radius: 8px 8px 0 0;
  align-items: center;
  font-size: 15px;
  min-width: 800px;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
}

/* Token Row */
.token-row {
  display: grid;
  grid-template-columns: 0.4fr 0.8fr 1fr 2fr 3fr 1fr;
  padding: 14px 18px;
  background: #111;
  border-radius: 10px;
  min-width: 800px;
  border: 3px solid #86efaa;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.2s ease, background 0.3s ease;
  cursor: pointer;
}
.token-row:nth-child(even) {
  background: #141414;
}
.token-row:hover {
  background: #0a0a0a;
  transform: translateY(-2px);
}

/* Inside Cells */
.token-symbol {
  font-weight: 700;
  text-transform: uppercase;
  color: #86efaa;
}
.token-name {
  font-weight: 500;
  color: #eee;
}

/* Contract */
.token-contract {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #ccc;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contract-text {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Buttons */
.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #86efaa;
  font-size: 14px;
  transition: transform 0.2s ease;
  
}
.copy-btn:hover {
  transform: scale(1.2);
  color: #fff;
}
.buy-btn {
  background: #000;
  color: #86efaa;
  border: 3px solid #86efaa;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 #000;
  transition: all 0.2s ease;
  
}
.buy-btn:hover {
  background: #86efaa;
  color: #000;
  box-shadow: 4px 4px 0 #86efaa;
}

@media (max-width: 768px) {
  .token-header {
    display: none; /* hide table header */
  }

  .token-row {
    grid-template-columns: 1fr;
    padding: 12px;
    font-size: 14px;
    margin-bottom: 12px;
    position: relative;

    /* comic-card style */
    border: 3px solid #86efaa;
    box-shadow: 6px 6px 0 #000;

    /* ✅ not full width */
    width: 100px !important; /* you can tweak (e.g., 85% or fixed px) */
    margin: 0 auto;   /* centers the card */
    border-radius: 12px;
  }

  /* Collapsed rows: only symbol + logo show */
  .token-row .token-details {
    display: none;
    margin-top: 10px;
    font-size: 13px;
    color: #ddd;
  }
  .token-row.active .token-details {
    display: block;
  }

  .token-row .token-symbol {
    font-size: 18px;
    font-weight: 900;
  }

  .token-row .buy-btn {
    width: 40%;  /* slightly bigger for thumb tap */
    margin-top: 10px;
  }
}

/* Token Row general fix */
.token-row {
  display: grid;
  grid-template-columns: 0.4fr 0.8fr 1fr 2fr 3fr 1fr;
  padding: 14px 18px;
  background: #111;
  border-radius: 10px;
  min-width: 800px;
  border: 3px solid #86efaa;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.2s ease, background 0.3s ease;
  cursor: pointer;
  align-items: center;   /* ✅ forces ALL cells (logo, text, buttons) to be vertically centered */
  margin-top: 14px;      /* ✅ spacing between rows */
}

/* Logo */
.token-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  margin: 0 auto; /* centers logo horizontally in its grid cell */
  margin-left: 0px !important;
}

/* Symbol + Name: vertically center text */
.token-symbol, 
.token-name {
  display: flex;
  align-items: center;  /* ✅ keeps them centered vertically like contract */
}

/* Contract column */
.token-contract {
  display: grid;
  grid-template-columns: 1fr auto; /* contract text + copy button */
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

/* Contract text truncated */
.contract-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Copy button fixed at far right */
.copy-btn {
  justify-self: end;     /* ✅ always at right edge of cell */
  background: none;
  border: none;
  cursor: pointer;
  color: #86efaa;
  font-size: 14px;
  transition: transform 0.2s ease;
  margin-right: 50px !important;
}
.copy-btn:hover {
  transform: scale(1.2);
  color: #fff;
}





 /* Offers Section */
.offers-section {
  background: #000;
  color: #fff;
  padding: 3rem 2rem;
  border-radius: 16px;
  border: 4px solid #86efaa; /* comic-thick border */
  margin: 3rem auto;
  max-width: 1200px;
  text-align: center;
  box-shadow: 8px 8px 0 #86efaa; /* comic offset shadow */
  font-family: "Saira", sans-serif;
}


/* Heading Comic Style */
.offers-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #86efaa;
  margin-bottom: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  /* text-shadow: 3px 3px 0 #000, -2px -2px 0 #86efaa; outlined text */
}

/* Offers List */
.offers-list {
  text-align: left;
  list-style-type: square;
  padding-left: 2rem;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.offers-list li {
  margin-bottom: 0.8rem;
  font-weight: 600;
  /* border-left: 4px solid #86efaa; */
  padding-left: 0.8rem;
}

/* Community Section */
.community-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #86efaa;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 2px 2px #000;
}

.community-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.community-icons a {
  color: #fff;
  font-size: 2.2rem;
  border: 3px solid #86efaa;
  padding: 0.5rem;
  border-radius: 10px;
  box-shadow: 4px 4px 0 #86efaa;
  transition: all 0.2s ease;
}

.community-icons a:hover {
  color: #000;
  background: #86efaa;
  transform: scale(1.1);
}

/* Download Section */
.download-section p {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: bold;
  color: #86efaa;
}

.playstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  background: #86efaa;
  color: #000;
  font-weight: bold;
  border: 3px solid #000;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 5px 5px 0 #000;
  text-transform: uppercase;
}

.playstore-btn:hover {
  background: #000;
  color: #86efaa;
  box-shadow: 5px 5px 0 #86efaa;
}

/* Caution Box - Comic Danger Style */
.caution-box {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 4px solid #ff4d4d;
  border-radius: 12px;
  background: #111;
  box-shadow: 8px 8px 0 #ff4d4d;
  text-align: center;
}

.caution-box h3 {
  font-size: 1.5rem;
  color: #ff4d4d;
  margin-bottom: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #000, -1px -1px 0 #ff4d4d;
}

.caution-box p {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.6;
  font-weight: 600;
}

/* Layout */
.offers-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  /* Gradient comic-finance vibe */
  background: linear-gradient(135deg, #86efaa, #1e293b, #86efaa);
  padding: 2rem;
  border-radius: 16px;
  border: 4px solid #000; /* bold comic outline */
  box-shadow: 8px 8px 0 #000; /* comic offset shadow */
}


.offers-text {
  flex: 1;
}

.offers-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.offers-image img {
  max-width: 100%;
  height: auto;

}


/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .offers-container {
    flex-direction: column; /* Stack image and text */
    text-align: center;
    padding: 1.5rem;
  }

  .offers-text {
    margin-bottom: 1.5rem;
  }

  .offers-image img {
    max-width: 80%;
  }

  .offers-heading {
    font-size: 2rem;
  }
}

/* Mobiles (max-width: 600px) */
@media (max-width: 600px) {
  .offers-section {
    padding: 2rem 1rem;
  }

  .offers-heading {
    font-size: 1.8rem;
    text-shadow: 2px 2px 0 #000, -1px -1px 0 #86efaa;
  }

  .offers-list {
    font-size: 1rem;
    padding-left: 1rem;
  }

  .community-icons {
    gap: 1rem;
  }

  .community-icons a {
    font-size: 1.6rem;
    padding: 0.3rem;
    border-width: 2px;
  }

  .download-section p {
    font-size: 1.1rem;
  }

  .playstore-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  .caution-box {
    padding: 1rem;
    box-shadow: 5px 5px 0 #ff4d4d;
  }

  .caution-box h3 {
    font-size: 1.2rem;
  }

  .caution-box p {
    font-size: 0.95rem;
  }
}









  .disclaimer-box {
    width: 100%;
    background: linear-gradient(120deg, #86efaa, #a7f3d0, #6ee7b7);



    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    padding: 30px 20px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
  }
  
  .disclaimer-content p {
    margin: 10px 0;
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    font-weight: 500;
  }
  
  .disclaimer-content hr {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    margin: 15px auto;
    width: 80%;
  }
  
  .disclaimer-content .copyright {
    font-size: 14px;
    opacity: 0.9;
  }
  



  .news-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 1200px;
  }
  
  .news-heading {
    text-align: center;
    font-size: 2rem;
    font-family: "Saira", sans-serif;
    margin-bottom: 1.5rem;
  }
  
  .news-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
    background: #ffffff;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .category-btn {
    padding: 0.6rem 1rem;
    border: 1px solid #86efaa;
    border-radius: 8px;
    background: linear-gradient(135deg, #86efaa, #34d399);
    color: #000;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .category-btn:hover,
  .category-btn.active {
    background: linear-gradient(135deg, #34d399, #059669);
    color: #fff;
  }
  
  .news-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }
  
  .news-card:hover {
    transform: translateY(-5px);
  }
  
  .news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .news-card h3 {
    font-size: 1.1rem;
    margin: 0.8rem;
    font-family: "Saira", sans-serif;
  }
  
  .news-card p {
    font-size: 0.9rem;
    margin: 0 0.8rem 1rem;
    color: #555;
  }
  
  .news-card a {
    display: block;
    margin: 0.5rem 0.8rem 1rem;
    color: #059669;
    font-weight: bold;
    text-decoration: none;
  }
  .news-card a:hover {
    text-decoration: underline;
  }
  





  .token-logo{
    width: 30px;
    height: 30px;
  }














/* Mobile Section */
.tdjcp-section-mobile {
  margin: 50px auto;
  padding: 25px;
  max-width: 500px;
  background: #000; /* solid black bg */
  border-radius: 16px;
  border: 4px solid #86efaa; /* thick comic border */
  box-shadow: 8px 8px 0 #86efaa; /* offset shadow */
  color: #fff;
  font-family: "Saira", sans-serif;
}

/* Mobile Heading */
.tdjcp-heading-mobile {
  margin-bottom: 25px;
  font-size: 24px;
  text-align: center;
  font-weight: 900;
  color: #86efaa;
  text-transform: uppercase;
}

.tdjcp-heading-mobile a {
  color: inherit;
  text-decoration: none;
}

/* Mobile Token List */
.token-list-mobile {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Mobile Accordion */
.token-accordion-mobile {
  background: #111;
  border: 3px solid #86efaa;
  border-radius: 12px;
  box-shadow: 6px 6px 0 #000;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.token-accordion-mobile:nth-child(even) {
  background: #141414;
}

.token-accordion-mobile:hover {
  transform: translateY(-2px);
}

/* Mobile Accordion Header */
.accordion-header-mobile {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: #86efaa;
  color: #000;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.accordion-header-mobile:hover {
  background: #9ff2b8;
}

/* Mobile Token Elements in Header */
.token-number-mobile {
  font-weight: 900;
  margin-right: 12px;
  color: #000;
  min-width: 25px;
}

.token-logo-mobile {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 12px;
  border-radius: 4px;
}

.token-symbol-mobile {
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
}

/* Mobile Accordion Content */
.accordion-content-mobile {
  display: none;
  padding: 16px;
  background: inherit;
  border-top: 2px solid #86efaa;
}

.accordion-content-mobile p {
  margin: 0 0 12px 0;
}

/* Mobile Token Name */
.token-name-mobile {
  font-weight: 600;
  color: #eee;
  font-size: 15px;
  margin-bottom: 12px;
}

/* Mobile Contract Section */
.token-contract-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0a0a0a;
  padding: 10px 12px;
  border-radius: 8px;
  border: 2px solid #86efaa;
  margin-bottom: 12px;
  font-size: 13px;
  gap: 8px;
}

.contract-text-mobile {
  color: #ccc;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  font-family: monospace;
}

.copy-btn-mobile {
  background: none;
  border: none;
  cursor: pointer;
  color: #86efaa !important;
  font-size: 14px;
  transition: all 0.2s ease;
  padding: 4px;
  border-radius: 4px;
}

.copy-btn-mobile:hover {
  color: #fff;
  background: #86efaa;
  transform: scale(1.1);
}

/* Mobile Buy Button */
.buy-btn-mobile {
  width: 100%;
  padding: 12px 16px;
  background: #000;
  color: #86efaa;
  border: 3px solid #86efaa;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  box-shadow: 4px 4px 0 #000;
  transition: all 0.2s ease;
  font-family: "Saira", sans-serif;
}

.buy-btn-mobile:hover {
  background: #86efaa;
  color: #000;
  box-shadow: 4px 4px 0 #86efaa;
  transform: translateY(-1px);
}

.buy-btn-mobile:active {
  transform: translateY(0);
  box-shadow: 2px 2px 0 #86efaa;
}

/* Mobile Responsive Adjustments */
@media (max-width: 480px) {
  .tdjcp-section-mobile {
    margin: 20px auto;
    padding: 15px;
    max-width: 95%;
  }
  
  .tdjcp-heading-mobile {
    font-size: 20px;
  }
  
  .accordion-header-mobile {
    padding: 12px;
    font-size: 14px;
  }
  
  .token-logo-mobile {
    width: 28px;
    height: 28px;
  }
  
  .token-contract-mobile {
    font-size: 12px;
  }
}

/* Animation for accordion content */
.accordion-content-mobile {
  transition: all 0.3s ease;
}

.accordion-content-mobile.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}












/* Mobile styles - add this to your existing CSS */

/* Tablet styles */
@media screen and (max-width: 1024px) {
  .brand-bar {
    padding: 8px 15px;
  }
  
  .brand-center {
    gap: 0.8rem;
  }
  
  .latest-news-btn {
    font-size: 0.85rem !important;
    padding: 10px 16px !important;
    box-shadow: 3px 3px 0 #000;
  }
  
  .latest-news-btn:hover {
    box-shadow: 4px 4px 0 #86efaa;
  }
 }
 
 /* Mobile styles */
 @media screen and (max-width: 768px) {
  .brand-bar {
    padding: 6px 8px;
  }
  
  .brand-left {
    gap: 6px;
  }
  
  .brand-logo {
    width: 24px !important;
    height: 24px !important;
  }
  
  
  
  .brand-center {
    gap: 0.4rem;
  }
  
  .latest-news-btn {
    font-size: 0.6rem !important;
    padding: 6px 8px !important;
    gap: 3px;
    box-shadow: 2px 2px 0 #000;
    white-space: nowrap;
  }
  
  .latest-news-btn:hover {
    box-shadow: 3px 3px 0 #86efaa;
    transform: translateY(-2px);
  }
  
  .add-pump-btn .brand-logo {
    width: 10px !important;
    height: 10px !important;
  }
 }
 
 /* Small mobile styles */
 @media screen and (max-width: 480px) {
  .brand-bar {
    padding: 4px 6px;
  }
  
  .brand-left {
    gap: 4px;
  }
  
  .brand-logo {
    width: 20px !important;
    height: 20px !important;
  }
  
 
  .brand-center {
    gap: 0.3rem;
  }
  
  .latest-news-btn {
    font-size: 0.5rem !important;
    padding: 4px 6px !important;
    gap: 2px;
    box-shadow: 1px 1px 0 #000;
    white-space: nowrap;
  }
  
  .latest-news-btn:hover {
    box-shadow: 2px 2px 0 #86efaa;
    transform: translateY(-1px);
  }
  
  .add-pump-btn .brand-logo {
    width: 10px !important;
    height: 10px !important;
  }
 }
 
 /* Extra small mobile styles */
 @media screen and (max-width: 360px) {
  .brand-bar {
    padding: 3px 4px;
  }
  
 
  
  .brand-center {
    gap: 0.2rem;
  }
  
  .latest-news-btn {
    font-size: 0.45rem !important;
    padding: 3px 4px !important;
    white-space: nowrap;
  }
  
  .add-pump-btn .brand-logo {
    width: 10px !important;
    height: 10px !important;
  }
 }









 .highlight-note {
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background: #86efaa;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 3px 3px 0 #000;
  font-size: 1.1rem;
}














.project-description {
  max-width: 800px;
  margin: 0 auto 20px auto; /* center + spacing */
  padding: 0px 20px;
  padding-top: 12px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  background: linear-gradient(135deg, #86efac, #4ade80); /* blue → green gradient */
  border: 2px solid #ffffff;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #000;
  color: #000000;
}


























:root{
  --bg:#071024;
  --card:#0f1724;
  --accent:#10b981;
  --muted:#94a3b8;
  --glass: rgba(255,255,255,0.03);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, #020617 0%, var(--bg) 100%);
  color:#e6eef6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  min-height:100vh;
}

/* Container */
.container{
  max-width:1200px;
  margin:40px auto;
  padding:24px;
}

/* Header */
.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.header h1{
  margin:0;
  font-size:1.6rem;
  color:var(--accent);
  letter-spacing:0.2px;
}
.header p{ margin:0; color:var(--muted); font-size:0.95rem; }

/* Grid */
.grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap:16px;
}

/* Card */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:12px;
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(2,6,23,0.6);
  transition: transform .16s ease, box-shadow .16s ease;
  border:1px solid rgba(255,255,255,0.03);
  display:flex;
  flex-direction:column;
  min-height:260px;
}
.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(2,6,23,0.8);
}
.thumb{
  width:100%;
  height:150px;
  background:#061025;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.thumb img{ width:100%; height:100%; object-fit:cover; display:block;}

/* Card body */
.card-body{ padding:12px; display:flex; flex-direction:column; gap:8px; flex:1; }
.game-title{ font-size:1rem; margin:0; color:#dff7ee; font-weight:600; }
.game-meta{ color:var(--muted); font-size:0.85rem; margin-top:auto; display:flex; justify-content:space-between; align-items:center; }
.play-btn{
  background:linear-gradient(90deg,var(--accent), #059669);
  border:none;
  padding:8px 12px;
  color:#001109;
  border-radius:8px;
  cursor:pointer;
  font-weight:700;
  text-decoration:none;
  display:inline-flex;
  gap:8px;
  align-items:center;
}
.play-btn:hover{ transform:translateY(-2px); filter:brightness(.98); }

/* Footer note */
.note{ margin-top:18px; color:var(--muted); font-size:0.9rem; text-align:center; }

/* Play page iframe */
.play-wrap{
  height:calc(100vh - 140px);
  width:100%;
  background:#000;
  border-radius:12px;
  overflow:hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
  border:1px solid rgba(255,255,255,0.03);
}
.game-iframe{ width:100%; height:100%; border:0; display:block; background:#000; }

/* Back link */
.back{
  display:inline-block;
  margin-bottom:12px;
  color:var(--muted);
  text-decoration:none;
  border:1px solid rgba(255,255,255,0.03);
  padding:8px 12px;
  border-radius:8px;
  background:var(--glass);
}
.back:hover{ color:var(--accent); }

/* Responsive tweaks */
@media (max-width:520px){
  .thumb{ height:130px; }
  .container{ padding:16px; margin:20px auto; }
}
