


/* About page - Intro video styling */

#intro.hideIntro {
    display: none;
}


.page.hideContent {
    display: none;
}

/* Hide footer when video is playing */
.page.hideContent ~ .footerWrapper {
    display: none;
}

/* Hide lightsaber when video is playing */
.page.hideContent ~ #saberdiv {
    display: none;
}

#intro.showIntro {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    height: auto;
    aspect-ratio: 16 / 9;
    z-index: 1000;
    object-fit: contain;
    background: linear-gradient(#0f2438, #050b15);
    border: 8px solid #1a3a55;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.4), inset 0 0 30px rgba(0, 80, 150, 0.4);
    cursor: pointer;
}

/* Slide out animation for video */
#intro.slideOut {
    animation: slideOutVideo 0.8s ease-in forwards;
}

@keyframes slideOutVideo {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(-150%, -50%) scale(0.9);
    }
}

/* Permission message styling */
.permission-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px 50px;
    border: 2px solid #FFD700;
    border-radius: 10px;
    color: #FFD700;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    text-align: center;
    animation: pulse 2s infinite;
}

.permission-message p {
    margin-bottom: 20px;
    font-size: 16px;
}

.permission-play-btn {
    padding: 10px 25px;
    background-color: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 5px;
    color: #FFD700;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-top: 15px;
}

.permission-play-btn:hover {
    background-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    transform: scale(1.05);
}

.permission-play-btn:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Fade in animation for content after video */
@keyframes fadeInContent {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.page.showContent {
    animation: fadeInContent 1s ease-in;
}

/* Skip button styling */
.skip-btn {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
    padding: 12px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid #FFD700;
    border-radius: 5px;
    color: #FFD700;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    opacity: 0;
    animation: fadeInSkipBtn 0.5s ease-in forwards;
    animation-delay: 3s;
    transition: all 0.3s ease;
}

.skip-btn:hover {
    background-color: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    transform: translateY(-50%) scale(1.05);
}

.skip-btn:active {
    transform: translateY(-50%) scale(0.95);
}

@keyframes fadeInSkipBtn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* About page content sections */

.intro-message {
    background: linear-gradient(135deg, rgba(15, 36, 56, 0.8), rgba(5, 11, 21, 0.8));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.2);
}

.intro-message h2 {
    color: #FFD700;
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 3px;
}

.intro-message p {
    color: #cce7ff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px
}

.about-project, .our-team, .our-goals, .contribute {
    margin: 40px 0;
    padding: 30px;
    border-radius: 8px;
    background: rgba(15, 36, 56, 0.5);
}

.about-project h2, .our-team h2, .our-goals h2, .contribute h2 {
    color: #FFD700;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-project p {
    color: #cce7ff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.team-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.team-member {
    background: linear-gradient(135deg, rgba(0, 120, 255, 0.1), rgba(0, 80, 150, 0.1));
    border: 2px solid rgba(42, 164, 255, 0.4);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.team-member.expedition {
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 150, 0, 0.05));
}

.team-member h3 {
    color: #2aa4ff;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.team-member.expedition h3 {
    color: #FFD700;
}

.team-member p {
    color: #cce7ff;
    font-size: 14px;
    line-height: 1.6;
}

.member-list {
    list-style: none;
    padding: 15px 0;
    margin: 15px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.member-list li {
    color: #cce7ff;
    font-size: 15px;
    padding: 8px 0;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.5px;
}

.member-list .role {
    color: #FFD700;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-right: 8px;
    padding: 2px 8px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 3px;
}

.team-member.expedition .member-list .role {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.15);
}

.goals-list {
    list-style: none;
    padding: 0;
    color: #cce7ff;
}

.goals-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.goals-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 18px;
}

.contribute {
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.contribute p {
    color: #cce7ff;
    font-size: 16px;
    margin-bottom: 15px;
}

.cta-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 10px 25px;
    border: 2px solid #FFD700;
    border-radius: 5px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    transform: scale(1.05);
}

/* Mobile responsive for about sections */
@media (max-width: 768px) {
    .intro-message, .about-project, .our-team, .our-goals, .contribute {
        padding: 20px;
        margin: 20px 0;
    }

    .team-container {
        grid-template-columns: 1fr;
    }

    .intro-message h2, .about-project h2, .our-team h2, .our-goals h2, .contribute h2 {
        font-size: 20px;
    }
}

/* Mobile Responsive Design - Video and Controls */
@media (max-width: 768px) {
    #intro.showIntro {
        width: 95%;
        max-width: none;
        border-width: 6px;
    }

    .skip-btn {
        right: 15px;
        bottom: 20px;
        top: auto;
        transform: translateY(0);
        padding: 10px 15px;
        font-size: 12px;
        animation-delay: 2s;
    }

    .skip-btn:hover {
        transform: scale(1.05);
    }

    .skip-btn:active {
        transform: scale(0.95);
    }

    .permission-message {
        width: 90%;
        max-width: 500px;
        padding: 25px 30px;
        font-size: 16px;
    }

    .permission-message p {
        font-size: 14px;
    }

    .permission-play-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    #intro.showIntro {
        width: 98%;
        border-width: 4px;
    }

    .skip-btn {
        right: 10px;
        bottom: 15px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .permission-message {
        width: 95%;
        padding: 20px 20px;
        font-size: 14px;
    }

    .permission-message p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .permission-play-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}
    letter-spacing: 2px;
    cursor: pointer;
    opacity: 0;
    animation: fadeInSkipBtn 0.5s ease-in forwards;
    animation-delay: 3s;
    transition: all 0.3s ease;
}

.skip-btn:hover {
    background-color: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    transform: translateY(-50%) scale(1.05);
}

.skip-btn:active {
    transform: translateY(-50%) scale(0.95);
}

@keyframes fadeInSkipBtn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}