* { 
    margin: 0; padding: 0; box-sizing: border-box; 
}

html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    margin: 0;
    color: rgb(255, 255, 255);
    background: linear-gradient(to bottom, #77ED9F, #226436);
    background-attachment: scroll;
    min-height: 100vh;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo img {
    padding-top: 10px;
    padding-left: 3px;
    width: 225px;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
}

/*Social Icon Style*/
    .social-icon {
        font-size: 30px;
        padding: 5px;
    }

    .social-icon-footer {
        font-size: 50px;
        padding: 5px;
    }

    .social-icon svg, .social-icon-footer svg {
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
    }

    .social-icon a, .social-icon-footer a {
        color: white;
        transition: color 0.3s;
    }

    .social-icon a:hover, .social-icon-footer a:hover {
        color: rgb(164, 164, 164); 
    }

    .social ul{
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        padding: 0px;
    }

    .social {
    margin-left: auto;
    padding-right: 8px;
    }
/*Social Icon Style End*/

/*Site Navigation Style*/
    .site-nav {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #226436;
    background: linear-gradient(to bottom, #77ED9F, #226436);
    padding-bottom: 5px;
    position: sticky;
    z-index: 100;
    top: 0;
    }

    .nav-link {
        font-family: Fredoka;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 20px;
        text-align: center;
        letter-spacing: 1px;
        overflow: hidden;
    }

    .nav-link a {
        text-decoration: none;
    }

    .nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    align-items: center;
    }

    .nav ul li a {
        position: relative;
        z-index: 0;
        color: rgb(255, 255, 255);
        white-space: nowrap;
    }

    .nav ul li a::before { /*On Hover*/
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, #FFEB56, #DA9167);
        opacity: 0;
        transition: opacity 0.3s;
        z-index: -1;
        border-radius: 5px;
    }

    .nav ul li:hover a::before { /*After Hover*/
        opacity: 1;
    }

    .nav-link a {
        height: 100%;
        display: block;
        border-radius: 5px;
        padding: 15px;
    }

    .hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    margin-left: auto;
    }

    .nav-link.active a {
        text-decoration: underline;
        font-weight: bold;
        background: linear-gradient(to bottom, rgba(255, 235, 86, 0.50), rgba(218, 145, 103, 0.50));
    }

/*Small Screen/Mobile View*/
    @media (max-width: 1050px) {
    /*.hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        bottom: 20px;
        right: 20px;
        z-index: 999;
        background: #226436;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        color: white;
        font-size: 22px;
        cursor: pointer;
        border: none;
        right: 15px;
        position: fixed;
        top: 15px;
        transition: transform 0.3s ease;
    } */

    /*Hamburger & Animation*/

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            padding: 10px;
            position: fixed;
            top: 15px;
            right: 15px;
            z-index: 999;
            background: #226436;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

    /*Hamburger & Animation End*/

    .nav-link {
        font-size: 25px;
    }

    .social {
        display: none;
        margin-left: 0; /* 👈 remove the auto margin on mobile */
    }

    .social-icon {
        font-size: 50px !important;
        padding: 0px 15px;
    }

    .social.open {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 10px 0;
    }

    .social-icon svg {
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
    }

    .nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
    }

    .nav.open {
        max-height: 500px;
    }

    .nav ul {
        flex-direction: column;
        padding: 10px 0;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .logo img {
        width: 150px;
    }

    .footer-text {
    font-size: 50% !important;
    }

    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    }

@media (max-width: 800px) {
    .poster {
        width: 150px !important;
    }
}
/*Small Screen/Mobile View End*/
/*Site Navigation Style End*/
/* ===== EDEN POSTERS ===== */
    .page-posters {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        pointer-events: none;
        z-index: -1;
    }

    .poster {
        position: absolute;
        width: 300px;
        opacity: 0.4;
        filter: drop-shadow(3px 4px 8px rgba(0,0,0,0.4)) blur(0.8px);
    }

    /* Left side */
    .poster-l1 { left: 30px;  top: 500px;   transform: rotate(-3deg); }
    .poster-l2 { left: 25px; top: 1300px;   transform: rotate(2deg); }
    .poster-l3 { left: 32px;  top: 2300px;  transform: rotate(-1.5deg); }
    .poster-l4 { left: 26px;  top: 3200px;  transform: rotate(2deg); }

    .poster-l1, .poster-l2, .poster-l3, .poster-l4 {
        /*animation: float 6s ease-in-out infinite;*/
    }

    /* Right side */
    .poster-r1 { right: 24px; top: 900px;   transform: rotate(3.5deg); }
    .poster-r2 { right: 20px;  top: 1800px;  transform: rotate(-2deg); }
    .poster-r3 { right: 26px; top: 2700px;  transform: rotate(1.5deg); }

    .poster-r1, .poster-r2, .poster-r3 {
        /*animation: float 5s ease-in-out infinite;*/
    }
/* ===== EDEN POSTERS END ===== */
/*Home Page Style*/
body {
    font-family: 'Noto Sans', sans-serif;
    background: linear-gradient(to bottom, #77ED9F, #226436);
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    min-height: 100vh;
  }

  /* ===== HERO ===== */
  .hero {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.05));
    position: relative;
    overflow: hidden;
  }

  .hero-badge {
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFEB56;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.1s forwards;
  }

  .hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.6);
    color: white;
    padding: 0;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.25s forwards;
  }

  .hero h1 span {
    color: #FFEB56;
    display: block;
  }

  .hero-sub {
    font-size: clamp(14px, 2vw, 17px);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    opacity: 0;
    animation: fadeUp 0.6s ease 0.4s forwards;
  }

  .hero-cta {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.55s forwards;
  }

  .btn-primary {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 34px;
    background: linear-gradient(to bottom, #FFEB56, #DA9167);
    color: #226436;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    text-shadow: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }

  .btn-secondary {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 34px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }

  /* floating leaf decorations */
  .leaf {
    position: absolute;
    font-size: 40px;
    opacity: 0.12;
    animation: float 6s ease-in-out infinite;
  }
  .leaf:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
  .leaf:nth-child(2) { top: 60%; left: 8%; animation-delay: 1.5s; font-size: 28px; }
  .leaf:nth-child(3) { top: 20%; right: 6%; animation-delay: 0.8s; font-size: 50px; }
  .leaf:nth-child(4) { top: 70%; right: 5%; animation-delay: 2.2s; font-size: 32px; }

  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-18px) rotate(10deg); }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===== SECTION BASE ===== */
  .section {
    padding: 60px 24px;
    max-width: 960px;
    margin: 0 auto;
  }

  .section-eyebrow {
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFEB56;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    text-align: center;
    margin-bottom: 10px;
  }

  .section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    margin-bottom: 12px;
  }

  .section-desc {
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
    max-width: 580px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.88);
  }

  .divider {
    width: 90%;
    border: none;
    border-top: 2px solid rgba(34,100,54,0.6);
    border-radius: 1em;
    max-width: 900px;
    margin: 0 auto;
  }

  /* ===== GAMEPLAY PILLARS ===== */
    .pillar-card, .weapon-card, .devlog-card, .narrative-box {
        backdrop-filter: blur(4px);
        background: rgba(0,0,0,0.3); /* slightly darker than before */
    }

  .pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .pillar-card {
    background: rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    padding: 28px 22px;
    transition: transform 0.2s, border-color 0.2s;
  }
  .pillar-card:hover { transform: translateY(-4px); border-color: rgba(255,235,86,0.6); }

  .pillar-icon {
    font-size: 36px;
    margin-bottom: 14px;
    display: block;
    filter: drop-shadow(1px 2px 4px rgba(0,0,0,0.4));
  }

  .pillar-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFEB56;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  }

  .pillar-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.88);
  }

  /* ===== ARSENAL ===== */
  .weapons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
  }

  .weapon-card {
    border-radius: 10px;
    padding: 22px 18px;
    border: 2px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
  }
  .weapon-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

  .weapon-card.yellow { background: rgba(255,235,86,0.15); border-color: rgba(255,235,86,0.5); }
  .weapon-card.red    { background: rgba(218,60,60,0.15);  border-color: rgba(218,60,60,0.5); }
  .weapon-card.blue   { background: rgba(71, 114, 193, 0.15);  border-color: rgba(24, 79, 181, 0.5); }
  .weapon-card.purple { background: rgba(130,80,220,0.15); border-color: rgba(130,80,220,0.5); }
  .weapon-card.orange { background: rgba(255,140,0,0.15);  border-color: rgba(255,140,0,0.5); }
  

  .weapon-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-bottom: 12px;
  }
  .yellow .weapon-dot { background: #FFEB56; box-shadow: 0 0 8px #FFEB56; }
  .red    .weapon-dot { background: #E05050; box-shadow: 0 0 8px #E05050; }
  .blue   .weapon-dot { background: #3374ed; box-shadow: 0 0 8px #3374ed; }
  .purple .weapon-dot { background: #A060E0; box-shadow: 0 0 8px #A060E0; }
  .orange .weapon-dot { background: #FF8C00; box-shadow: 0 0 8px #FF8C00; }

  .weapon-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
  }
  .yellow .weapon-name { color: #FFEB56; }
  .red    .weapon-name { color: #FF8080; }
  .purple .weapon-name { color: #C090FF; }
  .orange .weapon-name { color: #FFA840; }

  .weapon-quote {
    font-size: 13px;
    font-style: italic;
    color: rgba(255,255,255,0.82);
    line-height: 1.6;
  }

  /* ===== NARRATIVE ===== */
  .narrative-box {
    background: rgba(0,0,0,0.25);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 36px 32px;
    margin-bottom: 40px;
  }

  .narrative-box h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 14px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  }

  .narrative-box p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.9);
  }

  /* Character cards */
  .characters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }

  .char-card {
    background: rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 24px 18px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
  }
  .char-card:hover { border-color: rgba(255,235,86,0.5); transform: translateY(-3px); }

  .char-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin: 0 auto 14px;
    text-shadow: none;
    border: 3px solid rgba(255,255,255,0.4);
  }
  .char-avatar.ken    { background: linear-gradient(135deg, #226436, #4CAF50); color: #FFEB56; }
  .char-avatar.kasey  { background: linear-gradient(135deg, #8B4B8B, #C060C0); color: white; }
  .char-avatar.henry  { background: linear-gradient(135deg, #8B6914, #DAA520); color: white; }

  .char-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #FFEB56;
  }

  .char-vibe {
    font-size: 13px;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    line-height: 1.55;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  /* ===== DEVLOG ===== */
  .devlog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
  }

  .devlog-card {
    background: rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 24px 20px;
    transition: border-color 0.2s, transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .devlog-card:hover { border-color: rgba(255,235,86,0.5); transform: translateY(-3px); }

  .devlog-tag {
    font-family: 'Fredoka', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFEB56;
    margin-bottom: 10px;
    display: block;
  }

  .devlog-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 8px;
    color: white;
  }

  .devlog-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
  }

  .devlog-arrow {
    margin-top: 14px;
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
    color: rgba(255,235,86,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .devlog-discipline {
    display: inline-block;
    font-family: 'Fredoka', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-shadow: none;
}   

  /* ===== VIDEO PLACEHOLDER ===== */
  .video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: rgba(0,0,0,0.3);
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.5);
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    text-shadow: none;
    gap: 10px;
  }
  .video-placeholder .play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255,235,86,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
  }
/*Home Page Style End*/
/*The Team Grid*/

    .team-social ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    padding: 0px;
    justify-content: center;
    }

    .social-icon-team {
        font-size: 30px;
        padding: 5px;
    }

    .social-icon-team svg {
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5)) !important;
        transition: fill 0.3s;
    }

    .social-icon-team a {
        color: white;
        transition: color 0.3s;
    }

    .social-icon-team a:hover {
    color: rgb(164, 164, 164) !important; 
    }

    .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 40px;
    }



    /* ===== TEAM PAGE UPGRADES ===== */

/* Header Section */
    .team-header {
        padding: 60px 24px 20px;
        text-align: center;
    }

    .team-header .section-eyebrow {
        font-family: 'Fredoka', sans-serif;
        font-size: 13px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #FFEB56;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
        margin-bottom: 10px;
        display: block;
    }

    .team-header h1 {
        font-family: 'Fredoka', sans-serif;
        font-size: clamp(36px, 6vw, 64px);
        font-weight: 700;
        padding: 0;
        margin-bottom: 12px;
    }

    .team-header p {
        font-size: 15px;
        line-height: 1.7;
        color: rgba(255,255,255,0.88);
        max-width: 540px;
        margin: 0 auto;
    }

    /* Avatar Circles */
    .team-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Fredoka', sans-serif;
        font-size: 28px;
        font-weight: 700;
        margin: 0 auto 12px;
        text-shadow: none;
        border: 3px solid rgba(255,255,255,0.3);
        transition: transform 0.2s;
        flex-shrink: 0;
    }

    /* Discipline color coding — avatar + border */
    .discipline-code   { background: linear-gradient(135deg, #1a5c8a, #3374ed); color: #a8d4ff; border-color: rgba(51,116,237,0.5); }
    .discipline-anim    { background: linear-gradient(135deg, #6b2fa0, #c060c0); color: #e8b4ff; border-color: rgba(192,96,192,0.5); }
    .discipline-design { background: linear-gradient(135deg, #8B6914, #DAA520); color: #fff0a0; border-color: rgba(218,165,32,0.5); }
    .discipline-art { background: linear-gradient(135deg, #005f7f, #0ae2e2); color: #a0ffff; border-color: rgba(10,226,226,0.5); }
    .discipline-audio  { background: linear-gradient(135deg, #8B0000, #e03030); color: #ffd0b0; border-color: rgba(224,48,48,0.5); }
    .discipline-misc   { background: linear-gradient(135deg, #226436, #4CAF50); color: #FFEB56;  border-color: rgba(76,175,80,0.5); }
    .discipline-fun    { background: linear-gradient(135deg, #FFEB56, #DA9167); color: #226436; border-color: rgba(255,235,86,0.5); }
    .discipline-unknown { background: linear-gradient(135deg, #555555, #777777); color: #ddd; border-color: rgba(119,119,119,0.5); }
    .discipline-mgmt { background: linear-gradient(135deg, #2c3e6b, #5b7fa6); color: #c8dff5; border-color: rgba(91,127,166,0.5); }
    .discipline-techart { background: linear-gradient(135deg, #1a6b4a, #20c080); color: #a0ffd0; border-color: rgba(32,192,128,0.5); }
    .discipline-media { background: linear-gradient(135deg, #7a1a6b, #e040b0); color: #ffb0e8; border-color: rgba(224,64,176,0.5); }

    /* Team member card upgrades */
    .team-member {
        transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
        cursor: default;
    }

    .team-member:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 235, 86, 0.7);
        box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    }

    .team-member:hover .team-avatar {
        transform: scale(1.08);
    }

    /* Color-coded left border per discipline */
    .team-member.is-code   { border-color: rgba(51,116,237,0.5); }
    .team-member.is-anim    { border-color: rgba(192,96,192,0.5); }
    .team-member.is-design { border-color: rgba(218,165,32,0.5); }
    .team-member.is-art   { border-color: rgba(10,226,226,0.5); }
    .team-member.is-audio  { border-color: rgba(224,48,48,0.5); }
    .team-member.is-misc   { border-color: rgba(76,175,80,0.5); }
    .team-member.is-fun    { border-color: rgba(255,235,86,0.5); }
    .team-member.is-unknown { border-color: rgba(119,119,119,0.5); }
    .team-member.is-mgmt { border-color: rgba(91,127,166,0.5); }
    .team-member.is-techart { border-color: rgba(32,192,128,0.5); }
    .team-member.is-media { border-color: rgba(224,64,176,0.5); }

    /* Role badges */
    .role-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        margin: 6px 0 10px;
    }

    .badge {
        font-family: 'Fredoka', sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 3px 10px;
        border-radius: 20px;
        text-shadow: none;
        white-space: nowrap;
    }

    .badge-code   { background: rgba(51,116,237,0.2);  color: #a8d4ff; border: 1px solid rgba(51,116,237,0.4); }
    .badge-anim    { background: rgba(192,96,192,0.2);  color: #e8b4ff; border: 1px solid rgba(192,96,192,0.4); }
    .badge-design { background: rgba(218,165,32,0.2);  color: #fff0a0; border: 1px solid rgba(218,165,32,0.4); }
    .badge-art   { background: rgba(10,226,226,0.2);   color: #a0ffff; border: 1px solid rgba(10,226,226,0.4); }
    .badge-audio  { background: rgba(224,48,48,0.2);   color: #ffd0b0; border: 1px solid rgba(224,48,48,0.4); }
    .badge-misc   { background: rgba(76,175,80,0.2);   color: #b6ffca; border: 1px solid rgba(76,175,80,0.4); }
    .badge-fun    { background: rgba(255,235,86,0.15); color: #FFEB56; border: 1px solid rgba(255,235,86,0.35); }
    .badge-unknown { background: rgba(119,119,119,0.2); color: #ddd; border: 1px solid rgba(119,119,119,0.4); }
    .badge-mgmt { background: rgba(91,127,166,0.2); color: #c8dff5; border: 1px solid rgba(91,127,166,0.4); }
    .badge-techart { background: rgba(32,192,128,0.2); color: #a0ffd0; border: 1px solid rgba(32,192,128,0.4); }
    .badge-media { background: rgba(224,64,176,0.2); color: #ffb0e8; border: 1px solid rgba(224,64,176,0.4); }


    /* Dimmed social icons (placeholder links) */
    .social-icon-team.dimmed a {
        color: rgba(255,255,255,0.25) !important;
        pointer-events: none;
        cursor: default;
    }

    /* Legend */
    .discipline-legend {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 16px 24px;
        margin-bottom: 10px;
    }

    .legend-item {
        display: flex;
        align-items: center;
        gap: 6px;
        font-family: 'Fredoka', sans-serif;
        font-size: 13px;
        color: rgba(255,255,255,0.8);
    }

    .legend-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        flex-shrink: 0;
    }
/* ===== TEAM PAGE UPGRADES END ===== */

    .team-member {
        border: 2px solid white;
        border-radius: .5em;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .team-member h2 {
        line-height: 30px;
    }
/*The Team Grid End*/

h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 40px;
    padding-bottom: 10px;
    padding-left: 10px;
}

h2 {
    text-decoration: underline;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    font-size: 25px;
    padding-top: 10px;
    padding-bottom: 5px;
}

h3 {
    text-align: center;
    padding: 5px 0px;
    font-size: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.line-break-team {
    border: none;
    border-top: 3px solid #226436;
    border-radius: 1em;
}

/*Dev Log Page Style*/
/* ===== DEVLOG MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: linear-gradient(to bottom, #3a9e5f, #226436);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 36px;
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.modal-overlay.open .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.3); }

.modal-tag {
    font-family: 'Fredoka', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFEB56;
    margin-bottom: 12px;
    display: block;
}

.modal-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 16px;
}

.modal-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: left;
}

.modal-author {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
    font-family: 'Noto Sans', sans-serif;
}

.modal-description {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.modal-link {
    font-family: 'Fredoka', sans-serif;
    font-size: 15px;
    color: #FFEB56;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.modal-link:hover { color: white; }

.modal-discipline {
    display: inline-block;
    font-family: 'Fredoka', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.9);
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 8px;
    text-shadow: none;
    vertical-align: middle;
}

/* Rich text body */
.modal-body {
    margin-bottom: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 16px;
}

.modal-body-text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
    font-family: 'Noto Sans', sans-serif;
}

.modal-body-heading {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFEB56;
    margin-bottom: 8px;
    margin-top: 16px;
    text-align: left;
    text-decoration: none;
}

.modal-blockquote {
    border-left: 3px solid #FFEB56;
    padding-left: 16px;
    margin: 12px 0;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    font-family: 'Noto Sans', sans-serif;
}

/* Video embed */
.modal-video {
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
}

/* Gallery */
.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 16px;
}

.modal-gallery-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modal-gallery-item img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 16/9;
    transition: transform 0.2s;
    cursor: pointer;
}

.modal-gallery-item img:hover {
    transform: scale(1.02);
}

.modal-gallery-caption {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    font-family: 'Noto Sans', sans-serif;
    text-align: center;
    font-style: italic;
}

.modal-body-text strong {
    font-weight: bold;
    color: white;
}

.modal-body-text em {
    font-style: italic;
}

/* Body list styles */
.modal-body-list {
    padding-left: 24px;
    margin-bottom: 12px;
}

.modal-body-li {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.9);
    font-family: 'Noto Sans', sans-serif;
    margin-bottom: 4px;
}

/* Inline code */
.modal-body-code {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 2px 6px;
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: #FFEB56;
}

/* Body links */
.modal-body-link {
    color: #FFEB56;
    text-decoration: underline;
    transition: color 0.2s;
}
.modal-body-link:hover { color: white; }

/* Body inline images */
.modal-body-image-wrap {
    margin: 16px 0;
}

.modal-body-image {
    width: 100%;
    border-radius: 8px;
}
/* ===== DEVLOG MODAL END ===== */
/* ===== IMAGE LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.lightbox-caption {
    margin-top: 12px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
/* ===== IMAGE LIGHTBOX END ===== */
/*Dev Log Page Style End*/
/*Footer Style*/
    footer {
    background: linear-gradient(to bottom, #226436, #77ED9F);
    border-top: 2px solid #226436;
    }

    .footer-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    align-items: center;
    }

    .footer-nav ul li a {
        font-size: 30px;
        position: relative;
        z-index: 0;
        color: rgb(255, 255, 255);
        white-space: nowrap;
    }

    .footer-nav ul li a::before { /*On Hover*/
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, #FFEB56, #DA9167);
        opacity: 0;
        transition: opacity 0.3s;
        z-index: -1;
        border-radius: 5px;
    }

    .footer-nav ul li:hover a::before { /*After Hover*/
        opacity: 1;
    }

    .footer-nav ul {
    display: flex;
    list-style: none;
    }

    .footer-text {
        display: flex;
        justify-content: space-between;
    }

    .footer-left, .footer-right {
        width: 50%;
        padding-top: 30px;
    }

    .footer-left  p, .footer-right p {
        text-align: left;
    }

    .footer-left {
        padding-right: 30px;
        padding-left: 20px;
    }

    .footer-left img {
        width: 70%;
        padding-bottom: 5px;
        filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
    }

    .footer-right {
        padding-left: 30px;
        padding-right: 20px;
    }

    .footer-bold {
        font-weight: bold;
    }

    .footer-italic {
        font-style: italic;
        line-height: 1.5;
    }

    .footer-pad {
        padding-bottom: 30px;
    }

    .footer-social ul{
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        padding: 10px 0px;
    }
/*Footer Style End*/