/* Showcase page styles */
.showcase-main {
    padding: 20px 0;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

nav ul li a {
    color: #2d2d2d;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    text-decoration: none;
    padding: 8px 12px;
    border: 2px solid #2d2d2d;
    background-color: #ffffff;
    box-shadow: 4px 4px 0 rgba(45,45,45,0.5);
    transition: all 0.2s ease;
}

nav ul li a:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(45,45,45,0.5);
    background-color: #ffd166;
}

nav ul li a.active {
    background-color: #ffd166;
    box-shadow: 2px 2px 0 rgba(45,45,45,0.5);
    transform: translate(2px, 2px);
}

.intro {
    text-align: center;
    margin-bottom: 50px;
}

.intro h1 {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.8rem;
    color: #2d2d2d;
    margin-bottom: 20px;
    text-shadow: 4px 4px 0 #ffd166;
    position: relative;
    display: inline-block;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.8;
}

.featured-section {
    margin-bottom: 60px;
    text-align: center;
}

.featured-section h2 {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.4rem;
    color: #2d2d2d;
    margin-bottom: 15px;
    text-shadow: 3px 3px 0 #ffd166;
}

.featured-section p {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.video-container {
    border: 4px solid #2d2d2d;
    overflow: hidden;
    box-shadow: 8px 8px 0 rgba(45,45,45,0.5);
    margin-bottom: 30px;
    background-color: #2d2d2d;
    position: relative;
}

.video-container::before {
    content: "Loading...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'VT323', monospace;
    font-size: 2rem;
    color: #ffffff;
    z-index: 0;
}

.video-container video {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.main-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.feature-section {
    flex: 1 1 400px;
    text-align: center;
}

.feature-section h2 {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.2rem;
    color: #2d2d2d;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 #ffd166;
}

.feature-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.progression-section {
    margin-bottom: 60px;
    text-align: center;
}

.progression-section h2 {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.4rem;
    color: #2d2d2d;
    margin-bottom: 15px;
    text-shadow: 3px 3px 0 #ffd166;
}

.progression-section > p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.progression-videos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.progression-video {
    flex: 1 1 300px;
    text-align: center;
}

.progression-video h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    color: #2d2d2d;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding: 5px 10px;
    background-color: #ffffff;
    border: 2px solid #2d2d2d;
    border-bottom: 4px solid #2d2d2d;
}

.materials-section, .money-section {
    margin-bottom: 60px;
}

.materials-section h2, .money-section h2 {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.4rem;
    color: #2d2d2d;
    margin-bottom: 25px;
    text-shadow: 3px 3px 0 #ffd166;
    text-align: center;
}

.side-by-side {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.side-by-side.reverse {
    flex-direction: row-reverse;
}

.side-content {
    flex: 1 1 300px;
}

.side-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    padding: 20px;
    background-color: #ffffff;
    border: 4px solid #2d2d2d;
    box-shadow: 8px 8px 0 rgba(45,45,45,0.5);
    position: relative;
}

.side-video {
    flex: 1 1 400px;
}

.cta-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background-color: #ffffff;
    border: 4px solid #2d2d2d;
    box-shadow: 8px 8px 0 rgba(45,45,45,0.5);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd166, #2d2d2d, #8a4fff, #ffd166);
    z-index: -1;
    animation: borderAnimation 12s linear infinite;
    opacity: 0.7;
}

.cta-section h2 {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.6rem;
    color: #2d2d2d;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 #ffd166;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.construction-banner {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffd166;
    border: 3px solid #2d2d2d;
    box-shadow: 5px 5px 0 rgba(45,45,45,0.5);
    transform: rotate(-2deg);
    animation: float 3s ease-in-out infinite;
}

.construction-banner p {
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    color: #2d2d2d;
    margin: 0;
}

@media (max-width: 768px) {
    .intro h1 {
        font-size: 1.4rem;
    }
    
    .intro-text, 
    .featured-section p,
    .side-content p,
    .cta-section p {
        font-size: 1rem;
    }
    
    .featured-section h2,
    .progression-section h2,
    .materials-section h2, 
    .money-section h2 {
        font-size: 1.2rem;
    }
    
    .feature-section h2 {
        font-size: 1rem;
    }
    
    .progression-video h3 {
        font-size: 0.8rem;
    }
    
    nav ul li a {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .construction-banner p {
        font-size: 0.8rem;
    }
} 