/*
Theme Name: My Child Theme
Template: restaurant-zone
Version: 1.0
*/


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;
}
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    background: url("/img/anime-bg.jpg") no-repeat center center fixed;
    background-size: cover;
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.404); 
    z-index: -1;
}
ul.styled-list{
  list-style: none;
  margin: 18px 0;
  padding: 18px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg,
    rgba(0,0,0,.62),
    rgba(0,0,0,.38)
  );
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 18px 45px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  animation: glassPulse 6s ease-in-out infinite;
}
ul.styled-list::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  background:
    radial-gradient(1200px 240px at 20% 0%,
      rgba(255,255,255,.12),
      transparent 55%
    ),
    linear-gradient(115deg,
      transparent 0%,
      rgba(255,255,255,.10) 14%,
      transparent 28%,
      transparent 55%,
      rgba(227, 32, 32, .18) 70%,
      transparent 86%,
      transparent 100%
    );
  transform: translateX(-35%);
  animation: shimmerSweep 3.8s linear infinite;
  pointer-events:none;
  mix-blend-mode: screen;
}
ul.styled-list::after{
  content:"";
  position:absolute;
  inset: -18px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%,
    rgba(227,32,32,.20),
    transparent 55%
  );
  filter: blur(18px);
  opacity: .55;
  animation: emberGlow 5.5s ease-in-out infinite;
  pointer-events:none;
}
ul.styled-list li{
  position: relative;
  padding: 10px 12px 10px 44px;
  margin: 8px 0;
  border-radius: 12px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 1px rgba(0,0,0,.6);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
ul.styled-list li::before{
  content:"";
  position:absolute;
  left: 16px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(255,255,255,.95) 0%,
    rgba(255,70,70,.95) 35%,
    rgba(227,32,32,.25) 70%,
    transparent 75%
  );
  box-shadow:
    0 0 0 3px rgba(227,32,32,.12),
    0 0 18px rgba(227,32,32,.55);
  animation: bulletTwinkle 2.8s ease-in-out infinite;
}
ul.styled-list li:hover{
  transform: translateX(6px);
  background: rgba(255,255,255,.07);
  border-color: rgba(227,32,32,.22);
  box-shadow: 0 10px 25px rgba(0,0,0,.35), 0 0 0 1px rgba(227,32,32,.12);
}
ul.styled-list li:hover::before{
  animation-duration: 1.3s;
}
@keyframes shimmerSweep{
  0%   { transform: translateX(-45%) rotate(0.001deg); opacity: .55; }
  45%  { opacity: .85; }
  100% { transform: translateX(45%) rotate(0.001deg); opacity: .55; }
}
@keyframes glassPulse{
  0%,100% { box-shadow: 0 18px 45px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.10); }
  50%     { box-shadow: 0 22px 60px rgba(0,0,0,.62), inset 0 1px 0 rgba(255,255,255,.14); }
}
@keyframes emberGlow{
  0%,100% { opacity: .40; transform: scale(1); }
  50%     { opacity: .70; transform: scale(1.03); }
}
@keyframes bulletTwinkle{
  0%,100% { transform: translateY(-50%) scale(1); filter: brightness(1); }
  50%     { transform: translateY(-50%) scale(1.12); filter: brightness(1.25); }
}
.styled-section{
  position: relative;
  margin: 22px 0;
  padding: 22px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0,0,0,.68), rgba(0,0,0,.40));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.60), inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}
.styled-section::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  background:
    radial-gradient(1200px 280px at 15% 0%,
      rgba(255,255,255,.10),
      transparent 55%
    ),
    radial-gradient(900px 420px at 95% 35%,
      rgba(227,32,32,.20),
      transparent 60%
    ),
    linear-gradient(115deg,
      transparent 0%,
      rgba(255,255,255,.10) 12%,
      transparent 26%,
      transparent 54%,
      rgba(227,32,32,.16) 70%,
      transparent 86%
    );
  opacity: .75;
  transform: translateX(-35%);
  animation: sectionShimmer 5.2s linear infinite;
  pointer-events:none;
  mix-blend-mode: screen;
}
.styled-section::after{
  content:"";
  position:absolute;
  inset:-24px;
  border-radius: inherit;
  background: radial-gradient(circle at 22% 30%,
    rgba(227,32,32,.22),
    transparent 60%
  );
  filter: blur(20px);
  opacity: .55;
  animation: sectionGlow 6.5s ease-in-out infinite;
  pointer-events:none;
}
.styled-section h1,
.styled-section h2,
.styled-section h3{
  color: #ff2a2a; 
  margin: 0 0 12px;
  letter-spacing: .3px;
  text-shadow:
    0 2px 12px rgba(227,32,32,.35),
    0 1px 0 rgba(0,0,0,.8);
  position: relative;
}
.styled-section h1::after,
.styled-section h2::after,
.styled-section h3::after{
  content:"";
  display:block;
  width: 86px;
  height: 2px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(227,32,32,.95),
    rgba(255,255,255,.18),
    rgba(227,32,32,.55)
  );
  box-shadow: 0 0 18px rgba(227,32,32,.35);
  animation: underlineFlicker 2.4s ease-in-out infinite;
}
.styled-section p,
.styled-section span,
.styled-section li{
  color: rgba(255,255,255,.90);
  text-shadow: 0 1px 1px rgba(0,0,0,.65);
}
.styled-section ul{
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.styled-section ul li{
  position: relative;
  padding: 12px 14px 12px 52px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow:
    0 10px 26px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.10);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.styled-section ul li::before{
  content:"";
  position:absolute;
  left: 16px;
  top: 12px;
  bottom: 12px;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg,
    rgba(255,70,70,1),
    rgba(227,32,32,.35),
    rgba(255,255,255,.10)
  );
  box-shadow: 0 0 18px rgba(227,32,32,.45);
  animation: barPulse 2.8s ease-in-out infinite;
}
.styled-section ul li::after{
  content:"";
  position:absolute;
  left: 29px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(255,255,255,.95),
    rgba(227,32,32,.85) 45%,
    rgba(227,32,32,.18) 75%,
    transparent 78%
  );
  box-shadow:
    0 0 0 3px rgba(227,32,32,.12),
    0 0 16px rgba(227,32,32,.55);
  animation: sparkTwinkle 2.2s ease-in-out infinite;
}
.styled-section ul li:hover{
  transform: translateY(-2px);
  border-color: rgba(227,32,32,.25);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow:
    0 16px 40px rgba(0,0,0,.45),
    0 0 0 1px rgba(227,32,32,.12),
    inset 0 1px 0 rgba(255,255,255,.12);
}
@keyframes sectionShimmer{
  0%   { transform: translateX(-40%); opacity: .65; }
  45%  { opacity: .90; }
  100% { transform: translateX(40%); opacity: .65; }
}
@keyframes sectionGlow{
  0%,100% { opacity: .45; transform: scale(1); }
  50%     { opacity: .75; transform: scale(1.03); }
}
@keyframes underlineFlicker{
  0%,100% { opacity: .85; filter: brightness(1); }
  50%     { opacity: 1;   filter: brightness(1.25); }
}
@keyframes barPulse{
  0%,100% { filter: brightness(1);   opacity: .85; }
  50%     { filter: brightness(1.25); opacity: 1; }
}
@keyframes sparkTwinkle{
  0%,100% { transform: translateY(-50%) scale(1);   filter: brightness(1); }
  50%     { transform: translateY(-50%) scale(1.18); filter: brightness(1.35); }
}
.custom-section{
  position: relative;
  margin: 28px 0;
  padding: 28px 24px;
  border-radius: 20px;
  background:
    radial-gradient(900px 260px at 20% 0%,
      rgba(255,60,60,.10),
      transparent 55%
    ),
    radial-gradient(700px 260px at 95% 85%,
      rgba(255,255,255,.07),
      transparent 60%
    ),
    linear-gradient(180deg,
      rgba(8,8,10,.88),
      rgba(16,16,22,.62)
    );
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 26px 70px rgba(0,0,0,.72),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  isolation: isolate; 
}
.custom-section::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from 0deg,
    rgba(255,255,255,.10),
    rgba(255,60,60,.55),
    rgba(255,255,255,.08),
    rgba(255,60,60,.45),
    rgba(255,255,255,.10)
  );
  animation: frameSpin 7.5s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .85;
  pointer-events:none;
  z-index: 0;
}
.custom-section::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background:
    radial-gradient(500px 220px at 10% 30%,
      rgba(255,60,60,.18),
      transparent 60%
    ),
    radial-gradient(520px 260px at 90% 60%,
      rgba(255,255,255,.10),
      transparent 62%
    ),
    radial-gradient(420px 220px at 55% 110%,
      rgba(255,60,60,.12),
      transparent 65%
    );
  filter: blur(14px);
  opacity: .55;
  animation: inkDrift 6.2s ease-in-out infinite alternate;
  mix-blend-mode: screen;
  pointer-events:none;
  z-index: 0;
}
.custom-section > *{
  position: relative;
  z-index: 1;
}
.custom-section h2{
  margin: 0 0 14px;
  display: inline-block;
  padding: 10px 14px;
  color: #ff2a2a;
  letter-spacing: .6px;
  font-weight: 700;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,60,60,.22);
  border-radius: 12px;
  box-shadow:
    0 10px 26px rgba(0,0,0,.45),
    0 0 22px rgba(255,60,60,.18),
    inset 0 1px 0 rgba(255,255,255,.10);
  text-shadow:
    0 0 12px rgba(255,60,60,.35),
    0 1px 0 rgba(0,0,0,.85);
  animation: titleBreath 3.4s ease-in-out infinite;
}
.custom-section h3{
  margin: 18px 0 10px;
  color: rgba(255,255,255,.92);
  font-weight: 600;
  letter-spacing: .35px;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  position: relative;
}
.custom-section h3::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-1px;
  height: 2px;
  width: 70px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,60,60,.95),
    rgba(255,255,255,.25),
    transparent
  );
  filter: drop-shadow(0 0 10px rgba(255,60,60,.35));
  animation: scanDot 2.6s ease-in-out infinite;
}
.custom-section p{
  color: rgba(235,235,245,.88);
  line-height: 1.65;
  text-shadow: 0 1px 1px rgba(0,0,0,.65);
}
@keyframes frameSpin{
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes inkDrift{
  0%   { transform: translate3d(-10px,-6px,0) scale(1);   opacity: .45; }
  50%  { transform: translate3d(10px, 6px,0) scale(1.02); opacity: .65; }
  100% { transform: translate3d(-6px,10px,0) scale(1.01); opacity: .55; }
}
@keyframes titleBreath{
  0%,100% { filter: brightness(1);   transform: translateY(0); }
  50%     { filter: brightness(1.25); transform: translateY(-1px); }
}
@keyframes scanDot{
  0%   { transform: translateX(0);     opacity: .55; }
  50%  { transform: translateX(55%);   opacity: 1; }
  100% { transform: translateX(0);     opacity: .55; }
}
.sidebar-linking{
  margin: 18px 0;
  padding: 18px 16px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(700px 260px at 15% 0%,
      rgba(233,29,38,.10),
      transparent 55%
    ),
    radial-gradient(520px 260px at 95% 85%,
      rgba(235,232,242,.07),
      transparent 60%
    ),
    linear-gradient(180deg,
      rgba(22,16,25,.92),
      rgba(53,51,70,.58)
    );
  border: 1px solid rgba(235,232,242,.10);
  box-shadow:
    0 18px 55px rgba(0,0,0,.70),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.sidebar-linking::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  padding: 2px;
  pointer-events:none;
  z-index: 0;
  background: conic-gradient(from 0deg,
    rgba(235,232,242,.10),
    rgba(233,29,38,.55),
    rgba(235,232,242,.08),
    rgba(233,29,38,.45),
    rgba(235,232,242,.10)
  );
  animation: sidebarFrameSpin 9s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .75;
}
.sidebar-linking h3{
  margin: 0 0 12px;
  padding: 10px 12px;
  display: inline-block;
  color: rgba(255,255,255,.94);
  font-weight: 700;
  letter-spacing: .35px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(233,29,38,.22);
  border-radius: 12px;
  box-shadow:
    0 10px 26px rgba(0,0,0,.45),
    0 0 18px rgba(233,29,38,.16),
    inset 0 1px 0 rgba(255,255,255,.08);
  text-shadow:
    0 0 10px rgba(233,29,38,.22),
    0 1px 0 rgba(0,0,0,.85);
  position: relative;
  z-index: 1;
}
.sidebar-linking ul{
  list-style: none;
  margin: 10px 0;
  padding: 0;
}
.sidebar-linking a{
  position: relative;
  display: block;
  padding: 10px 12px 10px 8px; 
  border-radius: 12px;
  color: rgba(235,235,245,.92);
  text-decoration: none;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 10px 24px rgba(0,0,0,.35);
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.sidebar-linking a::before{
  content: "𒅒"; 
  margin-right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1;
  text-shadow: 0 0 6px rgba(255,255,255,.25);
  opacity: .9;
}
.sidebar-linking a:hover{
  background: rgba(233,29,38,.12);
  border-color: rgba(233,29,38,.30);
  box-shadow:
    0 14px 34px rgba(0,0,0,.50),
    0 0 16px rgba(233,29,38,.18);
}
.sidebar-linking a:hover,
.sidebar-linking a:focus-visible{
  transform: translateY(-1px);
  background: rgba(233,29,38,.12);
  border-color: rgba(233,29,38,.32);
  box-shadow:
    0 14px 34px rgba(0,0,0,.50),
    0 0 18px rgba(233,29,38,.18),
    inset 0 1px 0 rgba(255,255,255,.08);
  outline: none;
}
.sidebar-linking a:hover::before,
.sidebar-linking a:focus-visible::before{
  transform: translateY(-50%) scale(1);
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(233,29,38,.55));
}
.sidebar-linking a.active{
  background: rgba(233,29,38,.16);
  border-color: rgba(233,29,38,.38);
}
@media (max-width: 480px){
  .sidebar-linking{
    padding: 16px 14px;
  }
  .sidebar-linking a{
    padding-left: 10px;
  }
  .sidebar-linking a::before{
    transform: translateY(-50%) scale(.75);
  }
}
@keyframes sidebarFrameSpin{
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}





.articles{
  margin:28px 0;
  padding:28px 24px;
  border-radius:20px;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  background:
    radial-gradient(900px 260px at 20% 0%,rgba(233,29,38,.10),transparent 55%),
    radial-gradient(700px 260px at 95% 85%,rgba(235,232,242,.07),transparent 60%),
    linear-gradient(180deg,rgba(22,16,25,.92),rgba(53,51,70,.60));
  border:1px solid rgba(235,232,242,.10);
  box-shadow:0 26px 70px rgba(0,0,0,.72),inset 0 1px 0 rgba(255,255,255,.08);
}

.articles h2{
  margin:0 0 18px;
  padding:12px 16px;
  display:inline-block;
  color:#ff2a2a;
  font-weight:700;
  letter-spacing:.6px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(233,29,38,.28);
  border-radius:14px;
  box-shadow:0 10px 26px rgba(0,0,0,.45),0 0 22px rgba(233,29,38,.18),inset 0 1px 0 rgba(255,255,255,.10);
  text-shadow:0 0 12px rgba(233,29,38,.35),0 1px 0 rgba(0,0,0,.85);
}

.articles h3{
  margin:26px 0 10px;
  padding:0 0 8px 26px;
  color:rgba(255,255,255,.94);
  font-weight:600;
  letter-spacing:.35px;
  position:relative;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.articles h3::before{
  content:"𒅒";
  position:absolute;
  left:0;
  top:2px;
  color:rgba(255,255,255,.85);
  font-size:15px;
  text-shadow:0 0 6px rgba(255,255,255,.25);
}

.articles h3::after{
  content:"";
  position:absolute;
  left:26px;
  bottom:-1px;
  height:2px;
  width:70px;
  border-radius:999px;
  background:linear-gradient(90deg,transparent,rgba(233,29,38,.95),rgba(235,232,242,.25),transparent);
  filter:drop-shadow(0 0 10px rgba(233,29,38,.35));
}

.articles p{
  margin:0 0 16px;
  color:rgba(235,235,245,.88);
  line-height:1.65;
  text-shadow:0 1px 1px rgba(0,0,0,.65);
}

.articles p a{
  color:rgba(233,29,38,.95);
  text-decoration:none;
  border-bottom:1px solid rgba(233,29,38,.35);
  transition:color .18s ease,border-color .18s ease;
}

.articles p a:hover{
  color:#fff;
  border-color:rgba(255,255,255,.45);
}

.articles{
  margin:28px 0;
  padding:28px 24px;
  border-radius:20px;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  background:
    radial-gradient(900px 260px at 20% 0%,rgba(233,29,38,.10),transparent 55%),
    radial-gradient(700px 260px at 95% 85%,rgba(235,232,242,.07),transparent 60%),
    linear-gradient(180deg,rgba(22,16,25,.92),rgba(53,51,70,.60));
  border:1px solid rgba(235,232,242,.10);
  box-shadow:0 26px 70px rgba(0,0,0,.72),inset 0 1px 0 rgba(255,255,255,.08);
}

.articles h2{
  margin:0 0 18px;
  padding:12px 16px;
  display:inline-block;
  color:#ff2a2a;
  font-weight:700;
  letter-spacing:.6px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(233,29,38,.28);
  border-radius:14px;
  box-shadow:0 10px 26px rgba(0,0,0,.45),0 0 22px rgba(233,29,38,.18),inset 0 1px 0 rgba(255,255,255,.10);
  text-shadow:0 0 12px rgba(233,29,38,.35),0 1px 0 rgba(0,0,0,.85);
}

.articles h3{
  margin:26px 0 10px;
  padding:0 0 8px 26px;
  color:rgba(255,255,255,.94);
  font-weight:600;
  letter-spacing:.35px;
  position:relative;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.articles h3::before{
  content:"𒅒";
  position:absolute;
  left:0;
  top:2px;
  color:rgba(255,255,255,.85);
  font-size:15px;
  text-shadow:0 0 6px rgba(255,255,255,.25);
}

.articles h3::after{
  content:"";
  position:absolute;
  left:26px;
  bottom:-1px;
  height:2px;
  width:70px;
  border-radius:999px;
  background:linear-gradient(90deg,transparent,rgba(233,29,38,.95),rgba(235,232,242,.25),transparent);
  filter:drop-shadow(0 0 10px rgba(233,29,38,.35));
}

.articles p{
  margin:0 0 16px;
  color:rgba(235,235,245,.88);
  line-height:1.65;
  text-shadow:0 1px 1px rgba(0,0,0,.65);
}

.articles p a{
  color:rgba(233,29,38,.95);
  text-decoration:none;
  border-bottom:1px solid rgba(233,29,38,.35);
  transition:color .18s ease,border-color .18s ease;
}

.articles p a:hover{
  color:#fff;
  border-color:rgba(255,255,255,.45);
}

@media (max-width:600px){
  .articles{
    padding:22px 18px;
  }
  .articles h3{
    padding-left:22px;
  }
  .articles h3::before{
    font-size:14px;
  }
}





.section-two{
  margin:28px 0;
  padding:15px 24px;
  border-radius:20px;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  background:
    radial-gradient(900px 260px at 20% 0%,rgba(233,29,38,.10),transparent 55%),
    radial-gradient(700px 260px at 95% 85%,rgba(235,232,242,.07),transparent 60%),
    linear-gradient(180deg,rgba(22,16,25,.92),rgba(53,51,70,.60));
  border:1px solid rgba(235,232,242,.10);
  box-shadow:0 26px 70px rgba(0,0,0,.72),inset 0 1px 0 rgba(255,255,255,.08);
}

.section-two::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:inherit;
  padding:2px;
  pointer-events:none;
  z-index:0;
  background:conic-gradient(from 0deg,rgba(235,232,242,.10),rgba(233,29,38,.55),rgba(235,232,242,.08),rgba(233,29,38,.45),rgba(235,232,242,.10));
  animation:secTwoFrameSpin 10s linear infinite;
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  opacity:.70;
}

.section-two > *{
  position:relative;
  z-index:1;
}

.section-two .card{
  border-radius:18px;
  overflow:hidden;
  background:rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.09);
  box-shadow:0 18px 45px rgba(0,0,0,.60),inset 0 1px 0 rgba(255,255,255,.06);
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease;
}

.section-two .card:hover{
  transform:translateY(-3px);
  border-color:rgba(233,29,38,.28);
  background:rgba(0,0,0,.34);
  box-shadow:0 26px 62px rgba(0,0,0,.70),0 0 22px rgba(233,29,38,.14),inset 0 1px 0 rgba(255,255,255,.07);
}

.section-two .card img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.05);
  transition:transform .35s ease,filter .35s ease;
}

.section-two .card:hover img{
  transform:scale(1.03);
  filter:saturate(1.12) contrast(1.10);
}

.section-two .card-body{
  padding:14px 14px 16px;
  background:
    radial-gradient(600px 180px at 20% 0%,rgba(233,29,38,.10),transparent 55%),
    linear-gradient(180deg,rgba(0,0,0,.06),rgba(0,0,0,.22));
}

.section-two .card-title{
  margin:0 0 8px;
  font-weight:700;
  letter-spacing:.35px;
  line-height:1.25;
}

.section-two .card-title a{
  color:rgba(255,255,255,.94);
  text-decoration:none;
  text-shadow:0 1px 0 rgba(0,0,0,.75);
  transition:color .18s ease,text-shadow .18s ease;
}

.section-two .card-title a:hover{
  color:rgba(233,29,38,.95);
  text-shadow:0 0 14px rgba(233,29,38,.22);
}

.section-two .card-text{
  margin:0;
  color:rgba(235,235,245,.86);
  line-height:1.55;
  text-shadow:0 1px 1px rgba(0,0,0,.65);
}

@keyframes secTwoFrameSpin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
