@import url('https://fonts.googleapis.com/css2?family=Bitcount+Grid+Single:wght@100..900&family=Intel+One+Mono:ital,wght@0,300..700;1,300..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #000;
  color: #fff;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

#cookieBanner {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: top 0.4s ease;
  font-family: sans-serif;
  z-index: 1000;
}

#cookieBanner.visible {
  top: 1rem;
}

.cookie-banner .close-btn {
  position: absolute;
  top: 8px; right: 8px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.banner-content {
  display: flex;
  align-items: center;
  padding: 1rem;
}

.text-block {
  flex: 2;
}

.text-block h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.text-block p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: #333;
}

.btn-group {
  display: flex;
  gap: 0.5rem;
}

.btn {
  flex: 1;
  padding: 0.5rem;
  font-size: 0.85rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn.deny {
  background: #e0e0e0;
  color: #333;
}

.btn.accept {
  background: #0070f3;
  color: #fff;
}

.img-block {
  flex: 1;
  text-align: center;
}

.img-block img {
  max-width: 60px;
  height: auto;
}

header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: #000;
  font-weight: bold;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 20px;
}

.header-center .logo {
  height: 80px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: 60px;
}

button,
a.nav-item,
input.search {
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .15s ease;
}

button:hover,
a.nav-item:hover {
  transform: scale(1.1);
}

input.search {
  padding: 6px 10px;
  border: 1px solid #444;
  border-radius: 2px;
}

input.search::placeholder {
  color: #777;
}

.explore-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}

.explore-btn .arrow {
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform .3s ease;
}

.explore-btn.open .arrow {
  transform: rotate(-135deg);
}

a.nav-item {
  color: #fff;
  text-decoration: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 20px;
  background: #111;
  border: 1px solid #333;
  padding: 16px;
  width: 220px;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  z-index: 10;
  border-radius: 4px;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 6px 0;
}

.dropdown-menu a:hover {
  color: #ccc;
}

.featured {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.featured-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}

.featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 60px;
  box-sizing: border-box;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0.8)
  );
}

.feat-text h1 {
  font-size: 3rem;
  margin: 0 0 20px;
  line-height: 1.1;
  font-weight: bold;
}

.feat-text p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-primary {
  background: #d32f2f;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  transition: background .2s ease;
}

.btn-primary:hover {
  background: #b02828;
}

.feat-links {
  list-style: none;
  display: flex;
  gap: 60px;
  padding: 0;
  margin: 0;
  align-items: flex-end;
}

.feat-links li {
  display: flex;
  flex-direction: column;
}

.link-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
  opacity: 0.8;
}

.feat-links a {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-weight: bold;
}

.link-icon {
  display: inline-block;
  margin-left: 6px;
  background: #d32f2f;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
}



#featured_news {
  background: #000;
  padding: 40px 0;
  color: #fff;
  width: 100%;
  overflow-x: hidden;
  font-family: sans-serif;
  box-sizing: border-box;
  margin-top: 40px;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 20px 24px;
}

.news-header h1 {
  font-size: 3rem;
  margin: 0;
  color: #fff;
}

.see-all {
  font-size: 1.25rem;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.arrow-icon {
  margin-left: 8px;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: auto;
  gap: 16px;
  margin: 0 20px;
  box-sizing: border-box;
}

.card1 { grid-column: 1; grid-row: 1 / span 2; }
.card2 { grid-column: 2; grid-row: 1 / span 2; }
.card3 { grid-column: 3; grid-row: 1; }
.card4 { grid-column: 3; grid-row: 2; }

.news-grid img {
  display: block;
  width: 100%;
  height: auto;
}

/* Burger menu */
.burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
}

.burger‑line {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
}

                                                /* respnosivebi */
/* 1024px */
@media (max-width: 1024px) {
  .feat-text h1 {
    font-size: 2.4rem;
  }
}

/* 800px and below */
@media (max-width: 800px) {
  .news-grid {
    grid-template-columns: 1fr;
    margin: 0 20px;
  }
  .card1, .card2, .card3, .card4 {
    grid-column: 1;
    grid-row: auto;
  }
}

/* 768px */
@media (max-width: 768px) {
  .featured-overlay {
    padding: 20px;
  }
  .feat-text h1 {
    font-size: 2.2rem;
  }
  .feat-text p {
    font-size: 1rem;
  }
  .feat-links {
    flex-direction: column;
    gap: 20px;
  }

  .header-right {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #000;
    flex-direction: column;
    width: 200px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  }

  .burger {
    display: flex;
    margin-right: 20px;
  }

  .header-right.open {
    display: flex;
  }
}

/* 480px */
@media (max-width: 480px) {
  .featured-overlay {
    padding: 16px;
  }
  .feat-text h1 {
    font-size: 1.8rem;
  }
  .feat-text p {
    font-size: 0.95rem;
  }
  .btn-primary {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  .img-block img {
    max-width: 40px;
  }
  .news-header h1 {
    font-size: 2rem;
  }
}

/* 320px */
@media (max-width: 320px) {
  .feat-text h1 {
    font-size: 1.4rem;
  }
  .feat-text p {
    font-size: 0.85rem;
  }
  .btn-primary {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .feat-links {
    gap: 10px;
    flex-direction: column;
  }
  .see-all {
    font-size: 1rem;
  }
}





                                          /* Burger CSS */
.header-right {
  overflow: hidden;
  position: relative;
}


.header-right #myLinks {
  display: none;
}


.header-right a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.header-right a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}



.active {
  background-color: #04AA6D;
  color: white;
}