body {
  background-color: #181825;
  background-image: url("assets/hakase-anime.gif");

  color: #cdd6f4;
  font-family: Caskaydia;
}

@font-face {
    font-family: "Caskaydia";
    src: url("fonts/CaskaydiaCoveNerdFont-Regular.ttf");
}

@font-face {
    font-family: "BigBlue";
    src: url("fonts/BigBlueTerm437NerdFont-Regular.ttf");
}

a:link{
  color: #cba6f7;
  text-decoration: none;
}
a:visited{
  color: #cba6f7;
}
a:active {
    color: #cba6f7;
}
.imag {
    width: 200px;
}

.horUl{
    list-style: none;
}
.horLi {
    display: inline;
}


.noPoint {
    flex: 1;
    padding: 0px;
    margin: 0; /* Remove margins */
    list-style-type: none; /* Remove bullets */
}

.about-row {
  display: flex;
  align-items: flex-start; /* top-align text and image */
  gap: 20px;
}

.about-text {
  flex: 1;              /* takes remaining space */
  min-width: 0;         /* IMPORTANT: prevents overflow */
}


.background {
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.title{
  padding:30px;
}
.list-one {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: block;
  background-color: #181825f1;   
  padding: 0px;
  margin: 0 auto;
  text-align: center;
  font-size:540%;
  width: 100%;
  list-style: none;
  max-width: 1600px;
}


.list-two{
  list-style: none;
  width: 100%;
  white-space: nowrap;
  display: inline-flex;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%; /* Ensure the footer spans the full width of the page */
  text-align: center; /* Center content inside the footer */
}

.footer ul {
  margin: 0;
  padding: 0;
  display: inline-block; /* Use inline-block to center align the list */
}

.footer li {
  display: inline;
  list-style: none;
}

hr {
  margin: 0px;
  height: 2px;
  background: transparent;
}
.post p {
    margin: 15px 0;
}

.gradient-wrapper {
  position: relative;
  display: inline-block;
  text-align: center;
}

.line-gradient-wrapper {
  position: relative;
  display: inline-block;
}

.gradient-text {
  font-weight: bold;
  background: linear-gradient(to right, #cba6f7, #f38ba8, #eba0ac, #fab387, #f9e2af, #a6e3a1, #94e2d5, #89dceb, #74c7ec, #89b4fa, #b4befe);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.gradient-line {
      border: none;
      background: linear-gradient(to right, #cba6f7, #f38ba8, #eba0ac, #fab387, #f9e2af, #a6e3a1, #94e2d5, #89dceb, #74c7ec, #89b4fa, #b4befe);
}

.layout {
    padding-top: 20px;    /* or any value */
    display: grid;
    grid-template-columns: 216px 1fr 216px;
    gap: 20px;
    max-width: 1640px;
    margin: 0 auto;
}
.sidebar {
    background: #181825f1;
    padding: 15px;
    border-radius: 8px;

}
.content .post-box {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    background: #181825f1;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 1110px;
}
@media (max-width: 900px) {
    .layout {
        grid-template-columns: 1fr; /* one column */
    }
    .sidebar {
        order: 2; /* push below main content */
    }
}
.layout-container {
    max-width: 1600px;   /* or whatever width you're using */
    margin: 0 auto;      /* centers everything */
}

.post pre, .post code {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.gradient-border {
    position: relative;
    border-radius: 12px;
    background: #181825f1;
    z-index: 0;
}

/* the actual gradient outline */
.gradient-border::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* border thickness */
    border-radius: 10px; /* same radius as box */
    background: linear-gradient(
        to right,
        #cba6f7,
        #f38ba8,
        #eba0ac,
        #fab387,
        #f9e2af,
        #a6e3a1,
        #94e2d5,
        #89dceb,
        #74c7ec,
        #89b4fa,
        #b4befe
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    z-index: -1;
}

.box {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.playControls{
  background: transparent;
  border:none;
  color: #ffffff;
  font-size: 20px;
}

p{    
    flex: 1;
    padding: 0px;
    margin: 0; /* Remove margins */
    font-size: 20px;

}

.something-box {
    background: #181825f1;
    padding: 5px;
    border-radius: 8px;
    margin-top: 10px;
}

ul{
    margin: 0px;
}