:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #ffffff;
  --heading-color: #ffffff;
  --footer-bg-color: #0d0d0d;
  --link-color: #dbf9c3;
  --header-bg-color: #ffffff1b;
  --font-family: system-ui;
  --nav-link-color: #dbf9c3;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(rgb(0 0 0 / 0%), rgb(8 21 12 / 0%)), url(/images/grass-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
  .hero-section {
 padding: 115px 0 25px 0;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}
.hero-section h1{
  position: relative;
  display: inline-block;
  padding: 18px 28px 22px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 1.15;
  color: #f1ffe4;
  background: linear-gradient(
    135deg,
    rgba(20, 35, 22, 0.65),
    rgba(10, 18, 14, 0.35)
  );
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border-radius: 26px;
  border: 1px solid rgba(185,255,106,0.25);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.65),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  text-shadow:
    0 0 18px rgba(185,255,106,0.25),
    0 12px 40px rgba(0,0,0,0.85);
  animation: heroFadeIn 1.1s ease forwards;
}
.hero-section h1::after{
  content:"";
  position:absolute;
  left: 10%;
  bottom: 6px;
  width: 80%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(185,255,106,0),
    rgba(185,255,106,0.95),
    rgba(73,255,204,0.8),
    rgba(185,255,106,0)
  );
  border-radius: 999px;
  filter: blur(0.3px) drop-shadow(0 0 14px rgba(185,255,106,0.55));
  animation: underlineGlow 3.5s ease-in-out infinite;
}
.hero-section h1::before{
  content:"⚽";
  position:absolute;
  top: -14px;
  right: -18px;
  font-size: 22px;
  filter: drop-shadow(0 0 10px rgba(185,255,106,0.6));
  animation: ballFloat 4s ease-in-out infinite;
}
@keyframes heroFadeIn{
  from{
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes underlineGlow{
  0%,100%{
    opacity: .75;
    transform: scaleX(1);
  }
  50%{
    opacity: 1;
    transform: scaleX(1.05);
  }
}
@keyframes ballFloat{
  0%,100%{
    transform: translateY(0) rotate(0deg);
  }
  50%{
    transform: translateY(-6px) rotate(12deg);
  }
}
@media (max-width: 768px){
  .hero-section h1{
    padding: 16px 20px 20px;
    border-radius: 20px;
  }
  .hero-section h1::before{
    display:none;
  }
}
  .hero-section.with-bg {
  background-image: url('/images/footballer-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(0 0 0 / 0%));
  opacity: 0.5;
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}
  section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}
h2, h3 {
  color: var(--heading-color) !important;
}
.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}
.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
      .sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}
.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}
.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}
.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}
.sidebar-page-list li a:hover {
  padding-left: 11px;
}
      .twitter-tweet {
  width: 279px !important;
}
.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}
.footer {
  background: var(--footer-bg-color);
  color: var(--footer-text-color);
  border-top: 1px solid var(--link-color);
}
.footer a {
  text-decoration: none;
  color: var(--footer-text-color) !important;
}
.footer-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  position: relative;
  color: var(--footer-text-color) !important;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  padding-left: 6px;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  border: 0;
  outline: 0;
  background: color-mix(in srgb, var(--footer-bg-color) 80%, white 20%);
  color: var(--footer-text-color);
}
.newsletter-form input::placeholder {
  color: var(--footer-text-color);
}
.newsletter-form button {
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  border: 0;
  font-weight: 600;
  background: var(--link-color);
  color: var(--footer-text-color);
  transition: all 0.3s ease;
}
.newsletter-form button:hover {
  background: color-mix(in srgb, var(--link-color) 80%, white 20%);
}
.footer-divider {
  margin: 1.5rem 0;
  border-color: var(--link-color);
}
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 17px;
}
.social-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--footer-text-color);
  background-color: color-mix(in srgb, var(--footer-bg-color), white 20%);
  font-size: 1.2rem;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}
.social-icons span:hover {
  background: linear-gradient(
    135deg,
    var(--link-color),
    var(--footer-text-color)
  );
  transform: translateY(-2px);
} 
 .navbar {
  background-color: var(--header-bg-color) !important;
}
  .navbar-light .navbar-nav .nav-link {
    color: var(--nav-link-color, #141414) !important;
  }
  .navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--header-bg-color) 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-nav .nav-item {
    margin: 7px 0;
  }
  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }
  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }
  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}
.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}
.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}
.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}
.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}
  .dropdown.open .dropdown-menu {
  display: block;
}
@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }
  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}
.floating-rounded-navbar {
  background-color: #00000054!important;
  position: absolute !important;
  top: 15px !important;
  left: 7px !important;
  right: 7px !important;
  width: calc(100% - 11px) !important;
  z-index: 2000;
  border-radius: 21px;
  transition: all 0.3s ease;
}
@media (max-width: 1199.98px) {
  .floating-rounded-navbar .navbar-collapse {
    top: 85px !important;
  }
}
.navbar-brand {
  margin-right: 0 !important;
}
.contact-email {
  color: var(--link-color);
  font-weight: 600;
  text-decoration: none;
}
.contact-email:hover {
  text-decoration: underline;
}
.contact-form-card,
.contact-info-card {
  background: var(--header-bg-color);
  color: var(--nav-link-color);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.contact-info-card h2 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--nav-link-color) !important;
}
.contact-info-item {
  margin-top: 18px;
}
.contact-info-item .label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 4px;
}
.contact-form-card .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--nav-link-colo);
}
.contact-form-card .form-control {
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  padding: 0.55rem 0.75rem;
  background-color: #fff;
}
.contact-form-card .form-control::placeholder {
  color: #9ca3af;
}
.contact-form-card .form-control:focus {
  border-color: var(--hero-gradient1);
  box-shadow: 0 0 0 0.15rem rgba(22, 130, 149, 0.2);
}
.contact-submit-btn {
  background: linear-gradient(
    135deg,
    var(--hero-gradient1),
    var(--hero-gradient2)
  );
  border: 0;
  color: #fff !important;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
:root{
  --glass-bg: rgba(10, 14, 12, 0.45);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-highlight: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.90);
  --muted: rgba(255, 255, 255, 0.72);
  --accent: #b9ff6a;
  --accent2: #49ffcc;
  --shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.custom-section{
  position: relative;
  isolation: isolate;
  margin: 56px auto;
  padding: clamp(22px, 4vw, 42px);
  background: linear-gradient(135deg, var(--glass-bg), rgba(10, 14, 12, 0.18));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  color: var(--text);
  overflow: hidden;
  animation: sectionIn 900ms ease-out both;
}
.custom-section::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(900px 280px at 20% 0%,
      rgba(255,255,255,0.20),
      transparent 60%),
    radial-gradient(600px 260px at 85% 15%,
      rgba(185,255,106,0.14),
      transparent 65%),
    linear-gradient(180deg,
      rgba(255,255,255,0.06),
      transparent 35%);
  z-index:-1;
  animation: sheen 6.5s ease-in-out infinite;
}
.custom-section::after{
  content:"";
  position:absolute;
  inset:-40%;
  z-index:-2;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.06) 0px,
      rgba(255,255,255,0.06) 1px,
      transparent 1px,
      transparent 11px
    );
  transform: rotate(6deg);
  opacity: 0.35;
  filter: blur(0.2px);
  animation: drift 14s linear infinite;
}
.custom-section .grain{
  pointer-events:none;
  position:absolute;
  inset:0;
  z-index: 0;
  opacity: .09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.custom-section > *{
  position: relative;
  z-index: 1;
}
.custom-section p{
  margin: 12px 0 16px;
  line-height: 1.75;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.custom-section a{
  color: rgba(255,255,255,0.94);
  padding: 0 .25em;
  border-radius: 8px;
  background: linear-gradient(90deg,
    rgba(185,255,106,0.16),
    rgba(73,255,204,0.12));
  border: 1px solid rgba(255,255,255,0.10);
}
.custom-section h2,
.custom-section h3{
  position: relative;
  margin: 0 0 12px;
  color: rgba(255,255,255,0.95);
  letter-spacing: .3px;
  text-shadow: 0 10px 28px rgba(0,0,0,0.55);
}
.custom-section h2{
  font-size: clamp(26px, 3.3vw, 40px);
  font-weight: 800;
  padding: 6px 0 18px;
  margin-bottom: 18px;
}
.custom-section h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:6px;
  width: min(420px, 85%);
  height: 2px;
  background: linear-gradient(90deg,
    rgba(185,255,106,0.00),
    rgba(194, 211, 175, 0.9),
    rgba(176, 212, 202, 0.75),
    rgba(185,255,106,0.00)
  );
  border-radius: 999px;
  filter: drop-shadow(0 0 14px rgba(185,255,106,0.35));
  animation: underlinePulse 2.6s ease-in-out infinite;
}
.custom-section h2::before{
  content:"✦";
  position:absolute;
  left: 6px;
  bottom: -2px;
  font-size: 18px;
  color: #DBF9C3;
  text-shadow: 0 0 18px rgba(185,255,106,0.45);
  transform-origin: center;
  animation: starTwinkle 3.4s ease-in-out infinite;
}
.custom-section h3{
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 750;
  margin-top: 26px;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.custom-section h3::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%,
    rgba(255,255,255,0.85),
    rgba(219, 233, 204, 0.95),
    rgba(189, 219, 211, 0.55)
  );
  box-shadow:
    0 0 0 3px rgba(185,255,106,0.14),
    0 0 20px rgba(185,255,106,0.32);
  animation: dotBeat 2.2s ease-in-out infinite;
}
.custom-section:hover{
  transform: translateY(-2px);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  box-shadow: 0 18px 56px rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.18);
}
.custom-section:hover::before{
  opacity: 0.98;
}
.custom-section .inner-ring{
  position:absolute;
  inset: 10px;
  border-radius: 18px;
  pointer-events:none;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(185,255,106,0.06);
  z-index: 0;
}
@media (max-width: 680px){
  .custom-section{
    border-radius: 18px;
  }
  .custom-section h3{
    width: 100%;
  }
}
@keyframes sectionIn{
  from{ opacity: 0; transform: translateY(14px) scale(.99); }
  to  { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes sheen{
  0%,100% { transform: translate3d(0,0,0); opacity: .92; }
  50%     { transform: translate3d(0,-6px,0); opacity: 1; }
}
@keyframes drift{
  from{ transform: translate3d(-2%, -2%, 0) rotate(6deg); }
  to  { transform: translate3d(2%, 2%, 0) rotate(6deg); }
}
@keyframes underlinePulse{
  0%,100% { transform: scaleX(1); opacity: .9; }
  50%     { transform: scaleX(1.03); opacity: 1; }
}
@keyframes starTwinkle{
  0%,100% { transform: translateY(0) rotate(0deg); opacity: .85; }
  50%     { transform: translateY(-2px) rotate(18deg); opacity: 1; }
}
@keyframes dotBeat{
  0%,100% { transform: scale(1); filter: saturate(1.0); }
  50%     { transform: scale(1.25); filter: saturate(1.2); }
}
.teamwork-section {
  margin: 40px 0;
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(
    135deg,
    rgba(15, 25, 18, 0.55),
    rgba(10, 15, 12, 0.35)
  );
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border: 1px solid rgba(185, 255, 106, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  animation: sectionFadeIn 1s ease forwards;
}
.teamwork-section::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 10%, rgba(185,255,106,0.18), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(73,255,204,0.12), transparent 45%);
  animation: floatGlow 10s ease-in-out infinite;
  z-index: 0;
}
.teamwork-section > * {
  position: relative;
  z-index: 1;
}
.section-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: #eaffd6;
  text-shadow: 0 0 25px rgba(185,255,106,0.25);
}
.section-intro {
  max-width: 900px;
  margin-inline: auto;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}
.box-one {
  position: relative;
  height: 100%;
  padding: 40px 18px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  transition: transform .35s ease, box-shadow .35s ease;
}
.box-one:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.65);
}
.box-icon {
  position: absolute;
  top: -26px;
  left: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at top left, #ccdab7, #c0e4d2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(185,255,106,0.55);
  animation: iconPulse 3s ease-in-out infinite;
}
.box-icon i {
  font-size: 24px;
  color: #0c140f;
}
.box-one h3 {
  margin-top: 10px;
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 700;
  color: #eaffd6;
}
.box-one p {
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 14px;
}
@keyframes sectionFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatGlow {
  0%,100% { transform: translateY(0); opacity: .8; }
  50%     { transform: translateY(-30px); opacity: 1; }
}
@keyframes iconPulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.12); }
}
.sidebar-linking{
  position: relative;
  padding: 28px 24px 30px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(20, 30, 22, 0.55),
    rgba(10, 15, 12, 0.35)
  );
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  border: 1px solid rgba(185,255,106,0.18);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.sidebar-linking > *{
  position: relative;
  z-index: 1;
}
.sidebar-linking h3{
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700;
  color: #eaffd6;
  text-shadow: 0 0 18px rgba(185,255,106,0.25);
}
.page-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.page-list li{
  position: relative;
  padding: 14px 18px 14px 54px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.03)
  );
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: transform .3s ease, box-shadow .3s ease;
}
.page-list li:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.55);
}
.page-list li::before{
  content: "⚽";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  filter: drop-shadow(0 0 6px rgba(185,255,106,0.6));
  animation: ballPulse 3s ease-in-out infinite;
}
.page-list a{
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 600;
  display: block;
}
.page-list a:hover{
  color: #deecce;
}
@keyframes sidebarGlow{
  0%,100%{ opacity:.8; transform: translateY(0); }
  50%{ opacity:1; transform: translateY(-20px); }
}
@keyframes ballPulse{
  0%,100%{ transform: translateY(-50%) scale(1); }
  50%{ transform: translateY(-50%) scale(1.2); }
}
.styled-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.styled-list li{
  position: relative;
  padding: 14px 18px 14px 52px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(20,35,22,0.60),
    rgba(10,18,14,0.35)
  );
  backdrop-filter: blur(12px) saturate(125%);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  border: 1px solid rgba(185,255,106,0.20);
  box-shadow:
    0 12px 32px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  font-weight: 500;
  transition: transform .3s ease, box-shadow .3s ease;
}
.styled-list li:hover{
  transform: translateY(-3px);
  box-shadow:
    0 20px 46px rgba(0,0,0,0.65),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}
.styled-list li::before{
  content: "⚽";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  filter: drop-shadow(0 0 8px rgba(185,255,106,0.6));
  animation: listBallPulse 3s ease-in-out infinite;
}
.styled-list a{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}
.styled-list a:hover{
  color: #b9ff6a;
}
@keyframes listBallPulse{
  0%,100%{
    transform: translateY(-50%) scale(1);
  }
  50%{
    transform: translateY(-50%) scale(1.2);
  }
}
.fancy-section{
  position: relative;
  padding: 80px 40px;
  margin: 80px auto;
  max-width: 1100px;
  background:
    linear-gradient(180deg, #0e1a13, #0a120d),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 14px
    );
  border-radius: 0;
  border-left: 6px solid #9fdc6a;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.9);
}
.fancy-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(159,220,106,0.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(120,180,150,0.10), transparent 45%);
  opacity: 0.8;
  pointer-events:none;
}
.fancy-section h2{
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f4ffe9;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(159,220,106,0.45);
}
.fancy-section > p{
  line-height: 1.9;
  max-width: 820px;
  margin-bottom: 50px;
  color: rgba(255,255,255,0.82);
}
.fancy-section h3{
  position: relative;
  margin: 60px 0 18px;
  padding-left: 26px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #dfffc1;
}
.fancy-section h3::before{
  content:"";
  position:absolute;
  left:0;
  top: 4px;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    180deg,
    #9fdc6a,
    rgba(159,220,106,0.2)
  );
}
.fancy-section h3 + p,
.fancy-section h3 + p + p{
  max-width: 780px;
  line-height: 1.85;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.78);
}
.fancy-section a{
  font-weight: 700;
  color: #eaffc9;
  border-bottom: 2px solid rgba(159,220,106,0.5);
}
@media (max-width: 768px){
  .fancy-section{
    padding: 60px 20px;
    border-left-width: 4px;
  }
  .fancy-section h2{
    font-size: 32px;
  }
}
  .tw-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .twitter-tweet {
    max-width: 100%;
    margin: 0 auto;
  }
  