

button:focus,
a:focus {
    outline: 3px solid color-mix(in srgb, var(--accent) 16%, transparent);
    outline-offset: 3px
}

.intro h1 {
    margin-top: 0;
    text-align: center;
}

#authDialog {
    position: absolute;
    top: 50%;
    z-index: 999;
    left: 50%;
    margin: 0;
    width: 50vw;
    transform: translate(-50%, -50%);
    height: 70vh;
    display: none;
    gap: 1rem;
    align-items: center;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 2px 3px 10px 0px var(--accent);
    ;
    background-color: var(--bg);
    color: var(--nav-text);
}

#authDialog form {
    width: 100%;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-direction: column;
}

#authDialog form div {
    width: 100%;
    align-items: center;
}

#authDialog form div label {
    text-align: center;
}


#authDialog input {
    width: 80%;
    padding: 0.75rem 1rem;
    border: 2px solid color-mix(in srgb, var(--text) 10%, transparent);
    border-radius: 8px;
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#authDialog input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
}

#authDialog label {
    display: block;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

#passwordMessage {
    font-size: 1.3rem;
    color: #ff0000;
}

dialog button {
    background: linear-gradient(
        180deg,
        #22c1b1 0%,
        #1fb6a6 100%
    );
    color: #101010;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 0.65rem 1.4rem;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;

    box-shadow:
        0 4px 12px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform 160ms ease, box-shadow 160ms ease;
}
dialog button:hover {
    transform: translateY(-1px);
    box-shadow:
        0 6px 18px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.3);
}
dialog button:active {
    transform: translateY(0);
    box-shadow:
        0 3px 8px rgba(0,0,0,0.5),
        inset 0 2px 4px rgba(0,0,0,0.4);
}

#or {
    width: 100%;
    display: flex;
    align-items: center;
}
#or span {
    width: 100%;
    height: 4px;
    background-color: aliceblue;
}
#or h1 {
    width: 100%;
    text-align: center;
}

dialog h3 {
    cursor: pointer;
    margin: auto ;

    font-size: 1.1rem;           
    font-weight: 500;
    color: var(--text);

    text-align: center;
    text-decoration: none;
    position: relative;

    padding: 0.75rem 0;          
    width: fit-content;

    transition: color 140ms ease;
}
dialog h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);

    width: 40%;
    height: 2px;
    border-radius: 2px;
    background: #1fb6a6;
    opacity: 0.6;

    transition: width 140ms ease;
}

dialog h3:hover {
    color: #e6eef8; 
}

dialog h3:hover::after {
    width: 60%;
}
#dialogBG {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
    backdrop-filter: blur(4px);
}




.page{
  background:
    radial-gradient(1200px 600px at 15% 10%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 55%),
    radial-gradient(900px 520px at 85% 20%, color-mix(in srgb, #7c5cff 18%, transparent), transparent 55%),
    var(--bg);
}

.container{
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
    padding: 42px;
    border-radius: 5px;
}

.section--muted{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.section--cta{
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

/* HERO */
.hero{
  padding: 76px 0 46px;
  border-bottom: 1px solid var(--line);
}

.hero__inner{
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 7%, transparent);
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  color: var(--muted);
  width: fit-content;
  font-size: 0.95rem;
}

.hero__content h1{
  margin: 14px 0 6px;
  font-size: clamp(2rem, 2.2vw + 1rem, 2.85rem);
  letter-spacing: -0.02em;
}

.subtitle{
  margin: 0 0 14px;
  color: color-mix(in srgb, var(--text) 78%, transparent);
  font-weight: 700;
  font-size: 1.12rem;
}

.lead{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 62ch;
}

.trustline{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}

.trustchip{
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  color: color-mix(in srgb, var(--text) 85%, transparent);
  font-weight: 700;
  font-size: 0.95rem;
}

.actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.micro{
  margin-top: 14px;
  color: color-mix(in srgb, var(--text) 60%, transparent);
  font-size: 0.95rem;
}

.micro--center{
  text-align:center;
}

/* HERO CARD */
.hero__card{
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--text) 9%, transparent),
    color-mix(in srgb, var(--text) 4%, transparent)
  );
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero__card h3{
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.benefits{
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.benefits li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  padding: 8px 0;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 99px;
  margin-top: 8px;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}

.card__cta{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed color-mix(in srgb, var(--text) 18%, transparent);
}

.smallmuted{
  margin: 0 0 10px;
  color: color-mix(in srgb, var(--text) 60%, transparent);
  font-weight: 700;
  font-size: 0.95rem;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 0.75rem 1.35rem;
  border-radius: 10px;
  text-decoration:none;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  cursor:pointer;
}

.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn--primary{
  background: linear-gradient(180deg, #22c1b1 0%, #1fb6a6 100%);
  color: #101010;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn--ghost{
  background: color-mix(in srgb, var(--text) 6%, transparent);
  color: var(--text);
  border: 1px solid color-mix(in srgb, var(--text) 16%, transparent);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.btn--full{
  width: 100%;
}

/* SECTION TITLES */
.sectionTitle{
  margin: 0 0 18px;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

/* CARDS 3 */
.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card{
  background: var(--card);
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.card h3{
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.card p{
  margin: 0;
  color: var(--muted);
}

.card--soft{
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
}

/* STEPS */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.step{
  background: var(--stepBG);
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-radius: var(--radius);
  padding: 18px;
}

.step__num{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight: 900;
  color: #101010;
  background: var(--accent);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent) 22%, transparent);
  margin-bottom: 12px;
}

.step h3{
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.step p{
  margin: 0;
  color: var(--muted);
}

.noteCenter{
  margin: 18px 0 0;
  text-align: center;
  color: color-mix(in srgb, var(--text) 65%, transparent);
}

/* SPLIT */
.split{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.panel{
  background: var(--card);
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.panel--glow{
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--accent) 11%, transparent),
    color-mix(in srgb, var(--text) 4%, transparent)
  );
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}

.text{
  margin: 0 0 12px;
  color: var(--muted);
}

.bullets{
  margin: 0;
  padding: 0 18px 0 0;
  color: var(--muted);
}

.bullets li{ margin: 8px 0; }

/* CTA BOX */
.ctaBox{
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--text) 7%, transparent),
    color-mix(in srgb, var(--text) 3%, transparent)
  );
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.ctaBox h2{
  margin: 0 0 6px;
  font-size: 1.6rem;
}

.ctaBox p{
  margin: 0;
  color: var(--muted);
}

.ctaActions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* FOOTER */
.footer{
  padding: 22px 0;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.12);
}

.footer__inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 14px;
  color: color-mix(in srgb, var(--text) 60%, transparent);
}

.toplink{
  color: color-mix(in srgb, var(--text) 80%, transparent);
  text-decoration: none;
  border-bottom: 1px dashed color-mix(in srgb, var(--text) 30%, transparent);
}

.toplink:hover{
  filter: brightness(1.06);
}


/* SECTION */
#MorePodcasts {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text);
    gap: 24px;
    width:100%;
    padding: 32px 16px;
}

.PodcastsList {
    width: min(1200px, 100%);
    display: grid;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
}

/* ====== DESKTOP: 3 in a row ====== */
@media (min-width: 1100px) {
    .PodcastsList {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .element {
        max-width: none; /* allow full grid width */
    }
}

/* ====== TABLET / MEDIUM: 2 + 1 centered bigger ====== */
@media (min-width: 700px) and (max-width: 1099px) {
    .PodcastsList {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        /* make the 3rd card go to next row, centered, and wider */
        .PodcastsList > .element:nth-child(3) {
            grid-column: 1 / -1; /* span both columns */
            justify-self: center; /* center it */
            width: min(520px, 100%); /* make it bigger */
        }
}

/* ====== MOBILE: 1 column ====== */
@media (max-width: 699px) {
    .PodcastsList {
        grid-template-columns: 1fr;
    }

        .PodcastsList > .element:nth-child(3) {
            width: 100%; /* reset */
        }
}


/* card never grows beyond 360px */
.element {
    width: 100%;
    max-width: 360px;
}


.element {
    background: var(--card, rgba(255,255,255,0.06));
    border: 1px solid var(--cardBorder, rgba(255,255,255,0.10));
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .element:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.26);
        border-color: rgba(255,255,255,0.18);
    }

    .element h2:first-of-type {
        margin: 0;
        font-size: 0.95rem;
        font-weight: 700;
        opacity: .9;
        text-align: center;
        letter-spacing: .2px;
    }

    .element img {
        width: 100%;
        aspect-ratio: 16 / 10; 
        object-fit: cover;
        border-radius: 12px;
        display: block;
        background: rgba(255,255,255,0.04);
    }

    .element h2:last-of-type {
        margin: 0;
        font-size: 1.05rem;
        line-height: 1.35;
        text-align: center;
    }

    .element a {
        color: var(--text);
        text-decoration: none;
        display: block;
        padding: 6px 8px;
        border-radius: 10px;
        transition: background .15s ease, transform .15s ease, text-decoration-color .15s ease;
    }

        .element a:hover {
            background: rgba(255,255,255,0.06);
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .element a:focus-visible {
            outline: 2px solid rgba(255,255,255,0.55);
            outline-offset: 3px;
        }
.thumbLink {
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

    .thumbLink img {
        width: 100%;
        display: block;
    }

#MorePodcasts > h1 {
    margin: 0;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    text-align: center;
}

#MorePodcasts, .element {
    direction: rtl;
}
.ytFrame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
}

.ytIframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.ytOpen {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .9rem;
    background: rgba(0,0,0,0.55);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.14);
    text-decoration: none;
}

    .ytOpen:hover {
        text-decoration: underline;
    }
.cardClickable {
    cursor: pointer;
}/* RESPONSIVE */
    @media (max-width: 960px) {
        .hero__inner {
            grid-template-columns: 1fr;
        }

        .cards3 {
            grid-template-columns: 1fr;
        }

        .steps {
            grid-template-columns: 1fr;
        }

        .split {
            grid-template-columns: 1fr;
        }

        .footer__inner {
            flex-direction: column;
        }

        .PodcastsList {
            flex-direction: column;
        }
    }
