:root {
  --bg: #0b1020;
  --bg-header: #26304f;
  --text: #e3e8f3;
  --accent: #00b4d8;
  --accent-hover: #2563eb;
  --card: #141a2a;
  --muted: #7a8699;
  --leaf: #00ff9d;
  --line-box: #384059;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: var(--bg-header);
    box-shadow: 0 2px 10px var(--line-box);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line-box);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--leaf);
}

.feeds a {
    color: var(--accent);
    text-decoration: none;
}

.feeds a:hover {
    text-decoration: none;
    color: var(--accent-hover);
}

.groot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 3rem 1rem;
}

iframe {
    border: none;
    width: 250px;
    height: 250px;
}

h1 {
    margin-top: 2rem;
    color: var(--leaf);
    text-shadow: 0 0 10px #00ff9d50;
}

.feed-container {
    flex: 1;
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feed-item {
    background: var(--card);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 0.5px solid var(--accent);
}

.feed-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0,255,157,0.2);
}

.feed-item h3 {
    margin-top: 0;
    color: var(--leaf);
}

footer {
    background-color: #111;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #222;
}

/* GROOT */
.baby-groot {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.baby-groot .leaf {
  opacity: 0;
  position: absolute;
  background-color: var(--leaf);
  border-radius: 0% 100% 50% 50%/0% 50% 50% 100%;
}
.baby-groot .leaf-1 {
  top: -6px;
  left: -7px;
  width: 30px;
  height: 30px;
  border: 6px solid #592a16;
  transform: rotate(34deg);
  animation: 3s 3s move-leaf1 cubic-bezier(0, 0.6, 0.6, 1);
  animation-fill-mode: forwards;
}
.baby-groot .leaf-1:after {
  content: '';
  position: absolute;
  width: 5px;
  height: 25px;
  background-color: #592a16;
  border-radius: 3px;
  transform: rotate(-45deg);
  bottom: -12px;
  right: -2px;
  animation: 3s 3s move-leaf1-after cubic-bezier(0, 0.62, 0.63, 1);
  animation-fill-mode: forwards;
}
.baby-groot .leaf-2 {
  top: -28px;
  left: 22px;
  width: 30px;
  height: 30px;
  border: 6px solid #592a16;
  transform: rotate(92deg);
  animation: 3.5s 3.3s move-leaf2 cubic-bezier(0.24, 0.38, 0, 1.06);
  animation-fill-mode: forwards;
}
.baby-groot .leaf-2:after {
  content: '';
  position: absolute;
  width: 5px;
  height: 20px;
  background-color: #592a16;
  border-radius: 3px;
  transform: rotate(-45deg);
  bottom: -10px;
  right: -2px;
  animation: 3.5s 3.3s move-leaf2-after cubic-bezier(0.24, 0.38, 0, 1.06);
  animation-fill-mode: forwards;
}
.baby-groot .leaf-3 {
  top: -28px;
  left: -22px;
  width: 30px;
  height: 30px;
  border: 6px solid #592a16;
  transform: rotate(-8deg) scale(0.7);
  animation: 2.6s 3s move-leaf3 ease-in-out;
  animation-fill-mode: forwards;
}
.baby-groot .leaf-3:after {
  content: '';
  position: absolute;
  width: 5px;
  height: 20px;
  background-color: #592a16;
  border-radius: 3px;
  transform: rotate(-45deg);
  bottom: -10px;
  right: -2px;
}
.baby-groot .leaf-4 {
  bottom: -25px;
  left: 0;
  width: 30px;
  height: 30px;
  border: 6px solid #592a16;
  transform: rotate(-100deg) scale(0.5);
  animation: 1s 3s move-leaf4 cubic-bezier(0, 0, 0.38, 0.94);
  animation-fill-mode: forwards;
}
.baby-groot .leaf-4.alt {
  transform: scale(-0.5, -0.5);
  left: 14px;
}
.baby-groot .leaf-4:after {
  content: '';
  position: absolute;
  width: 5px;
  height: 20px;
  background-color: #592a16;
  border-radius: 3px;
  transform: rotate(-45deg);
  bottom: -10px;
  right: -2px;
}
.baby-groot .top {
  display: flex;
  justify-content: center;
  position: relative;
  flex-direction: column;
  align-items: center;
  animation: 3s 0s grow-top ease-out;
  z-index: 1;
}
.baby-groot .header {
  position: relative;
  width: 200px;
}
.baby-groot .hair {
  position: absolute;
  width: 100%;
  height: 55px;
  background-color: #0e0e0e;
  z-index: 2;
}
.baby-groot .hair-1 {
  position: absolute;
  width: 35px;
  height: 70px;
  top: 30px;
  left: -2px;
  background-color: #994e2e;
  border-top: 10px solid #592a16;
  border-left: 10px solid #592a16;
  border-top-left-radius: 30px 15px;
  transform: rotate(-5deg);
}
.baby-groot .hair-2 {
  position: absolute;
  width: 10px;
  height: 20px;
  top: 28px;
  left: 29px;
  border-top: 20px solid #592a16;
  border-radius: 4px;
  transform: rotate(-35deg);
}
.baby-groot .hair-3 {
  position: absolute;
  width: 30px;
  height: 90px;
  top: -10px;
  left: 35px;
  background-color: #994e2e;
  transform: rotate(6deg);
  transform-origin: bottom center;
  border-left: 10px solid #592a16;
  border-top: 10px solid #592a16;
  border-top-left-radius: 15px;
}
.baby-groot .hair-3:before {
  content: '';
  position: absolute;
  width: 70px;
  height: 10px;
  left: -15px;
  background-color: #994e2e;
  bottom: -10px;
}
.baby-groot .hair-3:after {
  content: '';
  position: absolute;
  width: 17px;
  height: 10px;
  left: -18px;
  background-color: #994e2e;
  bottom: -7px;
  transform: rotate(25deg);
}
.baby-groot .hair-4 {
  position: absolute;
  width: 10px;
  height: 65px;
  top: -8px;
  left: 70px;
  border-top: 10px solid #592a16;
  border-right: 10px solid #592a16;
  transform: rotate(6deg);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 5px;
}
.baby-groot .hair-4:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 65px;
  background-color: #994e2e;
  left: -10px;
}
.baby-groot .hair-5 {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 10px;
  left: 77px;
  background-color: #994e2e;
  transform-origin: bottom;
  transform: rotate(10deg);
  border-top: 10px solid #592a16;
  border-left: 10px solid #592a16;
  border-top-left-radius: 20px 10px;
  border-top-right-radius: 5px;
}
.baby-groot .hair-6 {
  position: absolute;
  width: 10px;
  height: 30px;
  top: 14px;
  left: 134px;
  background-color: #994e2e;
  transform-origin: bottom;
  transform: rotate(-15deg);
  border-top: 10px solid #592a16;
  border-right: 10px solid #592a16;
  border-top-right-radius: 5px;
}
.baby-groot .hair-6:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 20px;
  background-color: #994e2e;
  top: 10px;
  left: -10px;
}
.baby-groot .hair-7 {
  position: absolute;
  width: 35px;
  height: 34px;
  top: 1px;
  left: 165px;
  background-color: #994e2e;
  transform-origin: bottom;
  transform: rotate(-70deg);
  border-top: 10px solid #592a16;
  border-right: 10px solid #592a16;
  border-top-right-radius: 5px;
}
.baby-groot .hair-7:before {
  content: '';
  position: absolute;
  width: 14px;
  height: 20px;
  background-color: #994e2e;
  top: 0px;
  left: -14px;
}
.baby-groot .hair-7:after {
  content: '';
  position: absolute;
  width: 34px;
  height: 23px;
  background-color: #994e2e;
  top: 3px;
  left: -18px;
  transform: rotate(40deg);
}
.baby-groot .hair-8 {
  position: absolute;
  width: 30px;
  height: 30px;
  width: 30px;
  height: 35px;
  top: 25px;
  left: 150px;
  transform: rotate(-6deg);
  border-right: 12px solid #592a16;
  border-top-right-radius: 15px;
}
.baby-groot .scar {
  position: absolute;
  right: 9px;
  top: 80px;
  width: 28px;
  height: 28px;
  z-index: 2;
  border: 3px solid #592a16;
  transform: rotate(-15deg);
  border-radius: 3px;
}
.baby-groot .scar:before {
  content: '';
  position: absolute;
  width: 3px;
  height: 11px;
  background-color: #592a16;
  border-radius: 2px;
  top: -8px;
  left: 6px;
  box-shadow: 6px 0 #592a16, 0 27px #592a16, 6px 27px #592a16;
}
.baby-groot .scar:after {
  content: '';
  position: absolute;
  width: 11px;
  height: 3px;
  background-color: #592a16;
  border-radius: 2px;
  top: 4px;
  left: -8px;
  box-shadow: 0 6px #592a16, 0 12px #592a16;
}
.baby-groot .face-container {
  position: relative;
  display: flex;
  justify-content: center;
  top: 13px;
  width: 200px;
  height: 200px;
  background-color: #994e2e;
  border-radius: 100px;
  border: 10px solid #592a16;
  z-index: 1;
}
.baby-groot .face-container .eye,
.baby-groot .face-container .mouth {
  position: relative;
  top: 110px;
}
.baby-groot .face-container .mouth {
  width: 30px;
  height: 15px;
  overflow: hidden;
  transform: translateY(24px) scale(0.7);
  margin-right: 10px;
  margin-left: 10px;
}
.baby-groot .face-container .mouth:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: 0px;
  border-radius: 0 0 15px 15px;
  border: 5px solid #592a16;
  border-top-color: transparent;
}
.baby-groot .face-container .eye {
  width: 30px;
  height: 30px;
  background-color: #592a16;
  border-radius: 18px;
}
.baby-groot .face-container .eye:before,
.baby-groot .face-container .eye:after {
  width: 4px;
  height: 20px;
  content: '';
  position: absolute;
  background-color: #fff;
  border-radius: 5px;
  left: 50%;
  top: 5px;
}
.baby-groot .face-container .eye:before {
  transform: translateX(-50%) rotate(45deg);
}
.baby-groot .face-container .eye:after {
  transform: translateX(-50%) rotate(-45deg);
}
.baby-groot .middle {
  display: flex;
  justify-content: center;
  position: relative;
  animation: 3s 0s grow-mid ease-out;
}
.baby-groot .middle .chest {
  position: relative;
  width: 125px;
  height: 70px;
  overflow: hidden;
  background-color: #994e2e;
}
.baby-groot .middle .chest:before {
  content: '';
  position: absolute;
  width: 70px;
  height: 140px;
  border: 10px solid #592a16;
  background-color: #0e0e0e;
  border-radius: 50%;
  left: -53px;
  top: -30px;
}
.baby-groot .middle .chest:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 140px;
  border: 10px solid #592a16;
  background-color: #0e0e0e;
  border-radius: 50%;
  right: -53px;
  top: -30px;
}
.baby-groot .middle .arm-wrapper {
  width: 60px;
  height: 70px;
}
.baby-groot .middle .arm-left {
  position: relative;
  right: -29px;
  top: 10px;
  width: 60px;
  height: 33px;
  background-color: #994e2e;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 20px;
  border-top: 8px solid #592a16;
  border-bottom: 8px solid #592a16;
  border-left: 8px solid #592a16;
  z-index: 1;
}
.baby-groot .middle .arm-right {
  position: relative;
  left: -37px;
  top: 10px;
  width: 60px;
  height: 33px;
  background-color: #994e2e;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 40px;
  border-top: 8px solid #592a16;
  border-bottom: 8px solid #592a16;
  border-left: 8px solid #592a16;
  z-index: 1;
  transform: scaleX(-1);
}
.baby-groot .bottom {
  width: 100%;
  display: flex;
/* justify-content: center; */
  align-items: center;
  flex-direction: column;
}
.baby-groot .flowerpot-border {
  position: relative;
  width: 160px;
  background-color: transparent;
  border-top: 50px solid #592a16;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-radius: 5px;
}
.baby-groot .flowerpot-content {
  position: absolute;
  top: -45px;
  left: -17px;
  width: 145px;
  background-color: transparent;
  border-top: 45px solid #d1d2d4;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
}
.baby-groot .flowerpot-dark-shadow {
  position: absolute;
  top: -45px;
  left: -13px;
  width: 40px;
  background-color: transparent;
  border-top: 42px solid #9d9fa2;
  border-left: 12px solid transparent;
  transform: skew(13deg);
}
.baby-groot .flowerpot-light-shadow {
  position: absolute;
  top: -45px;
  left: 103px;
  width: 20px;
  background-color: transparent;
  border-top: 41px solid #fff;
  border-right: 12px solid transparent;
  transform: skew(-13deg);
}
.baby-groot .ground {
  position: relative;
  top: -5px;
  width: 100%;
  height: 6px;
  background-color: #592a16;
  border-radius: 3px;
}
.baby-groot .ground:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 6px;
  background-color: #592a16;
  left: -40px;
  border-radius: 3px;
  box-shadow: -40px 0 #592a16;
}
.baby-groot .ground:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 6px;
  background-color: #592a16;
  right: -40px;
  border-radius: 3px;
  box-shadow: 40px 0 #592a16;
}
@-moz-keyframes move-leaf1 {
  0% {
    opacity: 1;
    width: 10px;
    height: 10px;
    top: 36px;
    left: 5px;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes move-leaf1 {
  0% {
    opacity: 1;
    width: 10px;
    height: 10px;
    top: 36px;
    left: 5px;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes move-leaf1 {
  0% {
    opacity: 1;
    width: 10px;
    height: 10px;
    top: 36px;
    left: 5px;
  }
  100% {
    opacity: 1;
  }
}
@keyframes move-leaf1 {
  0% {
    opacity: 1;
    width: 10px;
    height: 10px;
    top: 36px;
    left: 5px;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes move-leaf1-after {
  0% {
    opacity: 1;
    width: 0px;
    height: 0px;
  }
  50% {
    right: -6px;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes move-leaf1-after {
  0% {
    opacity: 1;
    width: 0px;
    height: 0px;
  }
  50% {
    right: -6px;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes move-leaf1-after {
  0% {
    opacity: 1;
    width: 0px;
    height: 0px;
  }
  50% {
    right: -6px;
  }
  100% {
    opacity: 1;
  }
}
@keyframes move-leaf1-after {
  0% {
    opacity: 1;
    width: 0px;
    height: 0px;
  }
  50% {
    right: -6px;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes move-leaf2 {
  0% {
    opacity: 1;
    top: -3px;
    left: 7px;
    width: 10px;
    height: 10px;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes move-leaf2 {
  0% {
    opacity: 1;
    top: -3px;
    left: 7px;
    width: 10px;
    height: 10px;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes move-leaf2 {
  0% {
    opacity: 1;
    top: -3px;
    left: 7px;
    width: 10px;
    height: 10px;
  }
  100% {
    opacity: 1;
  }
}
@keyframes move-leaf2 {
  0% {
    opacity: 1;
    top: -3px;
    left: 7px;
    width: 10px;
    height: 10px;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes move-leaf2-after {
  0% {
    opacity: 1;
    height: 5px;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes move-leaf2-after {
  0% {
    opacity: 1;
    height: 5px;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes move-leaf2-after {
  0% {
    opacity: 1;
    height: 5px;
  }
  100% {
    opacity: 1;
  }
}
@keyframes move-leaf2-after {
  0% {
    opacity: 1;
    height: 5px;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes move-leaf3 {
  0% {
    opacity: 1;
    top: -10px;
    left: 0px;
    width: 10px;
    height: 10px;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes move-leaf3 {
  0% {
    opacity: 1;
    top: -10px;
    left: 0px;
    width: 10px;
    height: 10px;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes move-leaf3 {
  0% {
    opacity: 1;
    top: -10px;
    left: 0px;
    width: 10px;
    height: 10px;
  }
  100% {
    opacity: 1;
  }
}
@keyframes move-leaf3 {
  0% {
    opacity: 1;
    top: -10px;
    left: 0px;
    width: 10px;
    height: 10px;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes move-leaf4 {
  0% {
    opacity: 1;
    bottom: -10px;
    width: 10px;
    height: 10px;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes move-leaf4 {
  0% {
    opacity: 1;
    bottom: -10px;
    width: 10px;
    height: 10px;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes move-leaf4 {
  0% {
    opacity: 1;
    bottom: -10px;
    width: 10px;
    height: 10px;
  }
  100% {
    opacity: 1;
  }
}
@keyframes move-leaf4 {
  0% {
    opacity: 1;
    bottom: -10px;
    width: 10px;
    height: 10px;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes grow-top {
  0% {
    transform: scale(0);
    bottom: -167px;
  }
  100% {
    transform: scale(1);
    bottom: 0;
  }
}
@-webkit-keyframes grow-top {
  0% {
    transform: scale(0);
    bottom: -167px;
  }
  100% {
    transform: scale(1);
    bottom: 0;
  }
}
@-o-keyframes grow-top {
  0% {
    transform: scale(0);
    bottom: -167px;
  }
  100% {
    transform: scale(1);
    bottom: 0;
  }
}
@keyframes grow-top {
  0% {
    transform: scale(0);
    bottom: -167px;
  }
  100% {
    transform: scale(1);
    bottom: 0;
  }
}
@-moz-keyframes grow-mid {
  0% {
    transform: scale(0);
    bottom: -34px;
  }
  100% {
    transform: scale(1);
    bottom: 0;
  }
}
@-webkit-keyframes grow-mid {
  0% {
    transform: scale(0);
    bottom: -34px;
  }
  100% {
    transform: scale(1);
    bottom: 0;
  }
}
@-o-keyframes grow-mid {
  0% {
    transform: scale(0);
    bottom: -34px;
  }
  100% {
    transform: scale(1);
    bottom: 0;
  }
}
@keyframes grow-mid {
  0% {
    transform: scale(0);
    bottom: -34px;
  }
  100% {
    transform: scale(1);
    bottom: 0;
  }
}

/*FIN GROOT*/