@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/inter-v18-latin-regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  src: url("./fonts/inter-v18-latin-italic.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/inter-v18-latin-700.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/orbitron-v31-latin-700.woff2") format("woff2");
}

body {
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  background-color: #2c2c2c;
  color: #eaeaea;
  margin: 0;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f05454;
}

.page-container {
  width: 100%;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  min-height: 100vh;
}

p {
  font-size: 18px;
  margin: 0;
  width: 90%;
  overflow-x: hidden;
  text-align: left;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: #61efff;
}

a:hover {
  text-decoration: none;
  color: #daa520;
  cursor: pointer;
}

/* ========== FULL WIDTH SECTION ==========*/
.full-width-section {
  width: 100%;
  position: relative;
  padding: 40px 20px;
  gap: 20px;
  padding-bottom: 20px;
  background-color: #1e1e1e;
  color: #eaeaea;
}

.full-width-section.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  overflow: hidden;
  background: none;
  animation: move-grid 15s linear infinite, pulse-header-shadow 5s infinite;
}

.full-width-section.hero picture,
.full-width-section.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: 1; 
}

.full-width-section h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.site-name {
  display: block;
  font-size: 1.1rem;
  color: #61efff;
  margin-top: 10px;
  text-transform: none;
  letter-spacing: normal;
}

.full-width-section p,
.full-width-section-header p {
  font-size: 1.2rem;
  font-weight: bold;
}

.full-width-section.hero h1 {
  font-size: 4rem;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #61efff;
}

.full-width-section.hero h2 {
  font-size: 1.8rem;
  margin: 10px 0;
}

.full-width-section.hero h1,
.full-width-section.hero h2,
.full-width-section.hero h3,
.full-width-section.hero p,
.full-width-section.hero a {
  color: #eaeaea;
  z-index: 2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 5px;
}

.full-width-section.hero a.circular-glow {
  display: inline-block;
  padding: 6px 10px;
  font-size: 1.5em;
  font-weight: 700;
  margin: 10px;
  border-radius: 30px;
  background-color: rgba(91, 192, 190, 0.18);
  color: #eaeaea;
  z-index: 2;
  border: 2px solid #61efff;
  transition: all 0.4s ease;
}

.full-width-section.hero a.circular-glow:hover {
  background-color: rgba(91, 192, 190, 0.18);
  color: #eaeaea;
  border: 2px solid #f05454;
  box-shadow: 0 0 20px rgba(112, 247, 245, 0.8);
}

:root {
  --glow-color: #61EFFF;
}

#random-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.glowing-btn {
  background-color: var(--glow-color);
  color: #000; /* dark text */
  border: none;
  border-radius: 0.45em;
  padding: 10px 24px;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 900;
  letter-spacing: 0.2em;
  cursor: pointer;
  box-shadow: none;
  transition: all 150ms ease-in-out;
  text-shadow: none;
}

.glowing-btn .glowing-txt {
  display: inline-block;
  margin-right: -0.1em;
}

.glowing-btn:hover {
  box-shadow: 0 0 1em 0.2em var(--glow-color),
              inset 0 0 0.3em var(--glow-color);
  color: #000;
}

.glowing-btn:focus-visible {
  outline: 2px solid var(--glow-color);
  outline-offset: 4px;
}


.modern-marquee-wrapper {
    width: 100%;
    background: #1e1e1e;
    overflow: hidden;
    border-top: 2px solid #61efff;
    border-bottom: 2px solid #61efff;
    box-shadow: 0 2px 8px rgba(97,239,255,0.10);
    position: relative;
    z-index: 10;
    margin: 20px;
}

.modern-marquee {
    display: flex;
    align-items: center;
    width: fit-content;
    min-width: 100%;
    gap: 24px;
    font-family: "Orbitron", Arial, sans-serif;
    font-size: 1.15rem;
    color: #61efff;
    letter-spacing: 0.03em;
    white-space: nowrap;
    padding: 12px 0;
    animation: marqueeScroll 50s linear infinite;
    user-select: none;
    transition: filter 0.2s;
}

.modern-marquee.paused {
    animation-play-state: paused;
    filter: brightness(1.15);
}

.modern-marquee a {
    color: #61efff;
    text-shadow: 0 0 8px #61efff55, 0 0 1px #fff;
    margin: 0 8px;
    transition: color 0.2s, text-shadow 0.2s;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    z-index: 2;
}
.modern-marquee a:hover {
    color: #daa520;
    text-shadow: 0 0 16px #f05454;
}

.dot-divider {
    color: #f05454;
    font-size: 1.4em;
    margin: 0 14px;
    opacity: 0.7;
    vertical-align: middle;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .modern-marquee {
        font-size: 1rem;
        gap: 14px;
    }
    .dot-divider {
        margin: 0 7px;
    }
}

@media only screen and (max-width: 600px) {
  .glowing-btn{
    font-size: 1.5em;
  }
}
i, em, *[style*="italic"] {
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 400;
}

b, strong {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #181818f7;
  color: #eaeaea;
  padding: 15px;
  text-align: center;
  z-index: 1000;
  font-size: 1rem;
  border-top: 4px solid #3a3a3a;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent-banner button {
  background-color: #61efff;
  color: #181818;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-consent-banner button:hover {
  background-color: rgb(112, 247, 245);
}

blockquote {
    border-left: 5px solid #61efff;
    border-right: 5px solid #61efff;
    background: linear-gradient(135deg, #232323, #292929);
    color: #61efff;
    padding: 15px 20px; 
    margin: 20px 0;
    font-style: italic;
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6); 
    max-width: 800px;
}

#footer {
  background-color: #1e1e1e;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #3a3a3a;
}

.copyright {
  width: 100%;
  font-size: 16px;
  color: #eaeaea;
  justify-content: center;
  align-items: center;
  padding: 10px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.copyright a {
  color: #61efff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: #f05454;
  text-decoration: underline;
}

a.url {
  display: inline-flex;
}

.recommend-link {
  display: inline-flex; 
  color: #ff9900;
  text-decoration: underline dashed;
}

.wrapper {
  width: 100%;
  position: relative;
  margin: 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.heading {
  width: 100%;
  color: #f05454;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 15px 5px;
  margin-top: 15px;
  margin-bottom: 15px;
  text-shadow: none;
  position: relative;
  align-items: center;
}

.heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #ffffff, transparent);
}

/*--Blog Post Body--*/
.content-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  text-align: center;
  background: #1c1c1c;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.9);
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.content-item {
  width: 90%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
    background: linear-gradient(
    235deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(105, 103, 103, 0.489) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  border: 1px solid rgba(97, 239, 255, 0.4);
  box-shadow: -5px 5px 5px rgba(97, 239, 255, 0.4);
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 15px;
  max-height: 1000px;
  opacity: 1;
  transition: max-height 1s ease-in, opacity 1s ease-in;
}

.content-item h2 {
  width: 100%;
  text-align: center;
  color: #f05454;
  margin: 0;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.content-item h2 a {
  color: #61efff;
}

.content-item h2 a:hover {
  color: #f05454;
}

.content-block h2,
.content-block h3 {
  color: #f05454;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.content-title,
.content-text {
  width: 90%;
  text-align: center;
}

.content-row {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 10px;
  width: 100%;
}

.content-text,
.content-date {
  justify-content: space-evenly;
  font-size: 16px;
  margin: 20px 0;
}

.posts-wrapper {
  display: flex;
  justify-content: center;
  width: 90%;
  align-items: stretch;
  text-align: center;
  background: #1c1c1c;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.post-content {
    background: linear-gradient(
    235deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(105, 103, 103, 0.489) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  width: 320px;
  border-radius: 10px;
  border: 1px solid rgba(97, 239, 255, 0.4);
  box-shadow: -5px 5px 5px rgba(97, 239, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  margin: 10px;
  position: relative;
  overflow: hidden;
}

.post-content:hover {
  transform: perspective(600px) rotateX(3deg) rotateY(-3deg);
  box-shadow:
    0 0 12px rgba(97, 239, 255, 0.6),
    0 0 24px rgba(97, 239, 255, 0.3);
  border-color: rgba(97, 239, 255, 0.9);
}


.post-content h2 {
  font-size: 1.4rem;
  margin: 10px 0;
  text-align: center;
  padding: 10px;
}

.post-content p {
  font-size: 1rem;
  color: #f1f1f1;
  text-align: center;
  padding: 10px;
}

.date-meta {
  color: #f1f1f1;
  padding: 5px;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 5px;
}

p.date-meta {
  font-size: 0.9rem;
  margin-top: 10px;
}

.content {
  width: 100%;
  border-radius: 5px;
  text-decoration: none;
}

/* Initially hidden with no height */
.hide-load-more {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 3s ease-out, opacity 3s ease-out;
}

/*--Pages--*/
.large-content-item {
  width: 90%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  background: #1a1a1a;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 1);
  padding: 15px;
  align-items: center;
}

.mce-accordion {
  background-color: #282828;
  border: 1px solid #333;
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #ccc;
}

.mce-accordion summary {
  background-color: #181818;
  padding: 10px 15px;
  font-weight: bold;
  cursor: pointer;
  border-bottom: 1px solid #333;
  color: #fff;
}

.mce-accordion[open] summary {
  background-color: #282828;
}

.mce-accordion summary:hover {
  background-color: #303030;
}

.mce-accordion p {
  margin: 0;
  padding: 10px 15px;
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  background-color: #181818;
}

/* Unordered List */
ul {
  list-style-type: none;
  padding: 5px;
  width: 80%;
  align-content: center;
}

li {
  text-align: left;
  margin: 5px;
  padding: 10px;
  border-radius: 4px;
}

ul li:nth-child(odd) {
  background-color: #2a2a2a;
  color: #eaeaea;
}

ul li:nth-child(even) {
  background-color: #333333;
  color: #eaeaea;
}

/* Table Styling */
.tables {
  width: 100%;
  overflow-x: auto;
  border-spacing: 0;
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

td,
th {
  padding: 10px;
  color: #eaeaea;
  text-align: left;
  border-bottom: 1px solid #333333;
}

td {
  background-color: #2a2a2a;
}

th {
  background-color: #3a3a3a;
  font-weight: bold;
}

.odd {
  background-color: #2a2a2a;
}

.even {
  background-color: #333333;
}

pre {
  text-align: left;
  background-color: #000;
  color: rgb(39, 188, 69);
  padding: 15px;
  border-radius: 6px;
  max-width: 90%;
  overflow-x: auto;
  font-family: "Courier New", Courier, monospace;
  font-size: 16px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Code styling */
code {
  border-radius: 4px;
  font-family: "Courier New", Courier, monospace;
  font-size: 90%;
  background-color: #000;
  color: rgb(39, 188, 69);
  white-space: pre;
  overflow: auto;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  pre {
    font-size: 14px;
  }
}

.social_buttons {
  display: flex;
  flex-direction: row;
  margin: 5px;
}

.error-block {
  width: 100%;
  text-align: center;
  background: linear-gradient(to top, #f65757, #9f2929, #600d0d);
  margin: 0;
  color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px #000000;
  margin-bottom: 10px;
}

.disclaimer {
  font-size: 16px !important;
  color: white;
  justify-content: center;
  align-items: center;
  padding: 20px !important;
}

/* Form Buttons */
form .delete-button,
.delete-button {
  color: #eaeaea;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 5px;
  background-color: #ff4d4d;
  transition: background-color 0.3s ease;
}

form .delete-button:hover,
.delete-button:hover {
  background-color: #e60000;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="file"],
button,
.button {
  margin: 10px 0;
  font-size: 18px;
  padding: 10px 20px;
  color: #eaeaea;
  background-color: #ff4d4d;
  border: 1px solid #a29e9e6b;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  cursor: pointer;
  -webkit-appearance: button;
  transition: background-color 0.3s ease, color 0.3s ease;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="file"]:hover,
button:hover,
.button:hover {
  background-color: #61efff;
  color: #181818;
  -webkit-appearance: button;
}

/* Form Styling */
form {
  width: 80%;
}

.form-container {
  width: 80%;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  margin: 20px;
  align-content: center;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  border: 2px solid #181818;
  background-color: #414141;
}

.form-label {
  font-weight: bold;
  margin-bottom: 10px;
  color: #eaeaea;
}

.form-input,
.form-textarea {
  width: 90%;
  padding: 12px;
  font-size: 18px;
  margin-bottom: 20px;
  background-color: #2a2a2a;
  color: #eaeaea;
  border: 2px solid #606060;
  border-radius: 8px;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #61efff;
  outline: none;
}

/* Checkbox Styling */
input[type="checkbox"] {
  accent-color: #61efff;
  width: 24px;
  height: 24px;
  cursor: pointer;
  border-radius: 4px;
  margin: 10px 0;
}

.related-post-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.related-post {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  flex: 1 1 30%;
  margin: 10px;
  min-width: 250px;
  transition: transform 0.3s ease;
}

.related-post h4 {
  font-size: 1rem;
  word-wrap: break-word;
  margin: 10px 0;
  max-width: 100%;
}

/* Container for Read More */
.read-more {
  width: 100%;
  margin: 10px 0;
  justify-content: center;
  display: flex;
}

/* Read More Button */
.read-more-button {
  display: inline-block;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #eaeaea;
  background-color: #a29e9eba;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}

.read-more-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #61efff;
  transition: left 0.4s ease;
  z-index: 0;
  border-radius: 8px;
}

.read-more-button:hover::before {
  left: 0;
}

.read-more-button:hover {
  color: #181818;
}

.read-more-button span {
  position: relative;
  z-index: 1;
}

/* Next and Previous Buttons */
.next-previous {
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  width: 90%;
  justify-content: space-between;
  text-decoration: none;
}

.next-previous a {
  padding: 10px 20px;
  margin: 0 5px;
  border: 1px solid #4fd3b9;
  border-radius: 8px;
  background-color: #61efff;
  color: #181818;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.next-previous a:hover {
  background-color: #ff4d4d;
  color: #181818;
}

.next-previous a.active {
  background-color: #ff4d4d;
  color: #181818;
  border-color: #61efff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  color: #61efff;
  padding-left: 10px;
  margin: 15px;
  background: none;
}

.breadcrumbs a {
  color: #61efff;
}

.breadcrumbs a:hover {
  color: #f05454;
  text-decoration: underline;
}

.main-content {
  flex: 3;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 10px;
}

hr {
  border: none;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(235, 234, 234, 0.856),
    transparent
  );
  margin: 20px 0;
}

/* Full Width Sections */
.full-width-section-card {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
}

.full-width-section-header {
  font-family: "Orbitron", sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #61efff;
  text-shadow: -7px 7px 1px #000000;
  background-color: #1e1e1e;
    background-image: 
    linear-gradient(#000000 1px, transparent 1px),
    linear-gradient(90deg, #000000 1px, transparent 1px);
  background-size: 6px 6px;
  width: 100%;
  text-align: center;
  padding: 5px 0;
  margin-top: 30px;
  box-shadow: 0 0 10px rgba(97, 239, 255, 0.8);
  background-position: 0 0;
}

.full-width-section-header p {
  text-align: center;
  width: 100%;
}

.full-width-section-header a {
  color: #61efff;
}

.full-width-section-header a:hover {
  color: #f05454;
  transition: color 0.3s ease;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 10px;
  width: 100%;
}

.full-width-section.light .date-meta,
.full-width-section.dark .date-meta {
  background-color: #61efff;
  color: #181818;
  padding: 5px;
  border-radius: 5px;
  font-size: 16px;
  width: 50%;
  text-align: center;
}

.full-width-section.dark {
  background-color: #181818;
  color: #eaeaea;
}

.full-width-section img {
  margin-bottom: 10px;
  border-radius: 0px !important;
}

.full-width-section h2 {
  font-size: 1.8rem;
  margin: 0;
}

.full-width-section.light a,
.full-width-section.dark a {
  color: #61efff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.full-width-section a:hover {
  color: #f05454;
}

.full-width-section.light {
  background-color: #181818;
  color: #eaeaea;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.9);
  margin: 10px;
  padding: 15px;
}

/* Search Page */
.search-container {
  padding: 10px;
  margin: 10px auto;
  width: 100%;
  max-width: 400px;
  display: flex;
  box-sizing: border-box;
  z-index: 5;
}

.search-container .form-input {
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  box-sizing: border-box;
  font-size: 1rem;
  font-family: "Rajdhani", sans-serif;
  color: rgb(237, 237, 237);
  background-color: #181818;
  outline: none;
}

.search-container input[type="submit"] {
  background-color: #61efff;
  color: #181818;
  padding: 10px 20px;
  border: 2px solid #ccc;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  box-sizing: border-box;
  outline: none;
  transition: background-color 0.3s ease;
}

.search-container input[type="submit"]:hover {
  background-color: #f05454;
}

.search-group {
  display: flex;
  width: 100%;
}

.search-container .form-input,
.search-container input[type="submit"] {
  height: 100%;
  padding: 10px;
  margin: 0;
  border: 2px solid #61efff;
  box-sizing: border-box;
}

/* Add media queries for responsiveness */
@media screen and (max-width: 768px) {
  .search-container {
    flex-direction: column;
  }

  .search-group {
    flex-direction: column;
    width: 95%;
  }

  .search-container .form-input,
  .search-container input[type="submit"] {
    border-radius: 10px;
    width: 100%;
    margin-bottom: 10px;
  }

  .search-container input[type="submit"] {
    border-left: none;
  }
}

.highlighted-term {
  background-color: #6dc0f4;
  padding: 2px 4px;
  border-radius: 4px;
  color: #000;
}

/*-----Images-------*/
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}

.fit {
  max-width: 95%;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}

.card-image {
  width: 100%;
  border-radius: 10px 10px 0 0;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
  display: block;
}

.content-img {
    width: 75%;
}

.image-item {
  position: relative;
  flex: 0 0 auto;
  margin: 20px 10px;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.image-item:hover,
.related-post:hover {
  transform: scale(1.1);
}

.related-post img {
  width: 100%;
  height: auto;
  max-width: 300px;
  object-fit: cover;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

input:-webkit-autofill,
textarea:-webkit-autofill {
  background-color: #181818 !important;
  color: #eaeaea !important;
  -webkit-text-fill-color: #eaeaea !important;
  transition: background-color 5000s ease-in-out 0s;
}

.form-login {
  padding: 20px;
  border-radius: 5px;
  display: block;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  height: 100%;
}

.password-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.form-input {
  width: 100%;
  padding-right: 30px;
  box-sizing: border-box;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.fa-solid,
.fas {
  color: #cdcdcd;
}

.homepage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.homepage .full-width-section {
  width: 100%;
}

.homepage-heading {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #f05454;
  text-decoration: none;
}

.homepage-heading a:hover {
  color: #f9f9f9;
  text-decoration: none;
}

.content-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
}

@media (min-width: 1200px) {
  .content-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1000px) {
  .posts-wrapper {
    display: flex;
    flex-direction: column;
  }
}

/* Animations */
.full-width-section.hero .slide-left {
  animation: slideInLeft 2s ease-out;
}

.full-width-section.hero .drop-down {
  animation: dropDown 2s ease-out;
}

.full-width-section.hero .slide-right {
  animation: slideInRight 2s ease-out;
}

.text-grow {
  display: inline-block;
  animation: growAndShrink 1s ease-out 2s;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes dropDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes PullUp {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  100% {
    transform: translateY(-100%);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes growAndShrink {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes pulse-header-shadow {
  0% {
    box-shadow: 0 1px 20px rgba(97, 239, 255, 1);
  }
  50% {
    box-shadow: 0 1px 10px rgba(97, 239, 255, 1);
  }
  100% {
    box-shadow: 0 1px 20px rgba(97, 239, 255, 1);
  }
}

@keyframes pulse-shadow {
  0% {
    box-shadow: 0 15px 20px rgba(97, 239, 255, 1);
  }
  50% {
    box-shadow: 0 10px 10px rgba(97, 239, 255, 1);
  }
  100% {
    box-shadow: 0 15px 20px rgba(97, 239, 255, 1);
  }
}

@keyframes move-grid {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}

/*--------------LARGE SCREENS-----------------------------------------------------------------------*/
@media (min-width: 769px) {
  .content-container {
    grid-template-columns: repeat(3, 1fr);
  }

  div {
    align-content: space-around;
  }

  img.thumb {
    max-width: 321px;
  }

  .content-date {
    width: 48%;
  }

  .content-row {
  flex-direction: row;
}
}

/*----------------------------------------SMALL SCREENS-------------------------------------*/
@media (max-width: 768px) {
  .content-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .full-width-section.hero h1 {
    font-size: 2.5rem;
  }
  .full-width-section.hero {
      align-items: center;
  }
  .full-width-section.hero p {
      text-align: center;
  }
  textarea {
    background: #ffffff;
    color: #000;
    width: 95%;
    height: auto;
    min-height: 80px;
  }

  .content-text {
    width: 100%;
  }
  .content-row {
  flex-direction: column;
  }

  .fit {
    max-width: 85%;
    height: auto;
    border-radius: 10px;
    transition: opacity 0.3s ease;
  }
    .homepage-heading {
    justify-content: flex-start;
  }
}

