/* Shared styles for all pages */

/* Navigation */
.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(10, 0, 30, 0.95);
    border-bottom: 3px solid #ff00ff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    color: #00ffff;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffff00;
    text-shadow: 0 0 10px #ffff00;
}

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid #00ffff;
    color: #00ffff;
    padding: 8px 15px;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    cursor: pointer;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 60px 20px 40px;
}

.page-title {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(24px, 5vw, 42px);
    background: linear-gradient(180deg, #ff00ff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 16px;
    color: #ffff00;
    letter-spacing: 3px;
}

/* Section Titles */
.section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 18px;
    color: #00ffff;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.pricing-section {
    margin: 60px 0;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

/* Price Cards */
.price-card {
    background: rgba(10, 0, 30, 0.9);
    border: 3px solid #00ffff;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

.price-card.featured {
    border-color: #ffff00;
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.3);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ffff00, #ff00ff);
    color: #000;
    padding: 5px 20px;
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    white-space: nowrap;
}

.price-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.price-name {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}

.price-amount {
    margin-bottom: 10px;
}

.price-amount.child {
    margin-bottom: 20px;
    opacity: 0.8;
}

.price-main {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #00ffff;
}

.price-card.featured .price-main {
    color: #ffff00;
}

.price-sub {
    font-size: 14px;
    color: #888;
    margin-left: 5px;
}

.price-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.price-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    font-size: 14px;
    color: #ccc;
}

.price-features li::before {
    content: '✓ ';
    color: #00ff00;
}

.pixel-button.small {
    font-size: 10px;
    padding: 12px 25px;
}

/* Party Card */
.party-card {
    max-width: 600px;
    margin: 0 auto;
}

.party-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.party-icon {
    font-size: 80px;
}

.party-details {
    flex: 1;
    min-width: 280px;
}

.party-details h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    color: #ff00ff;
    margin-bottom: 15px;
}

.party-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #ffff00;
    margin-bottom: 20px;
}

.party-features {
    list-style: none;
    margin-bottom: 25px;
}

.party-features li {
    padding: 5px 0;
    font-size: 14px;
    color: #ccc;
}

.party-features li::before {
    content: '🎮 ';
}

/* Gift Banner */
.gift-banner {
    max-width: 800px;
    margin: 0 auto;
}

.gift-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.gift-icon {
    font-size: 64px;
}

.gift-text {
    flex: 1;
    min-width: 200px;
}

.gift-text h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    color: #ffff00;
    margin-bottom: 10px;
}

.gift-text p {
    color: #ccc;
    font-size: 14px;
}

/* Footer */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #00ffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffff00;
}

.footer-tagline {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: #ff00ff;
    margin-bottom: 10px;
}

.footer-copyright {
    font-size: 12px;
    color: #666;
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(10, 0, 30, 0.9);
    border: 2px solid #00ffff;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 255, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #00ffff;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 20px 20px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
}

/* Games Catalog */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.console-card {
    background: rgba(10, 0, 30, 0.9);
    border: 2px solid #ff00ff;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.console-card:hover {
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.console-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.console-name {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: #00ffff;
    margin-bottom: 10px;
}

.console-era {
    font-size: 12px;
    color: #ff00ff;
    margin-bottom: 15px;
}

.console-games {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/10;
    background: rgba(10, 0, 30, 0.9);
    border: 3px solid #ff00ff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    font-size: 48px;
    opacity: 0.5;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    font-size: 12px;
    color: #00ffff;
}

/* Membership Page */
.membership-hero {
    text-align: center;
    padding: 40px 20px;
    background: rgba(10, 0, 30, 0.9);
    border: 3px solid #ffff00;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.membership-hero h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    color: #ffff00;
    margin-bottom: 15px;
}

.membership-hero p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
}

.membership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 40px auto;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 14px;
    color: #ccc;
}

/* Gift Voucher Page */
.voucher-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.voucher-card {
    background: rgba(10, 0, 30, 0.9);
    border: 3px solid #00ffff;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.voucher-card:hover,
.voucher-card.selected {
    border-color: #ffff00;
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.3);
}

.voucher-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #00ffff;
}

.voucher-card.selected .voucher-amount {
    color: #ffff00;
}

.voucher-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(10, 0, 30, 0.9);
    border: 3px solid #ff00ff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: #00ffff;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ffff;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffff00;
}

/* Founding Member Banner */
.founding-banner {
    background: linear-gradient(90deg, #ff00ff, #ffff00);
    padding: 3px;
    margin: 40px auto;
    max-width: 800px;
}

.founding-banner-inner {
    background: rgba(10, 0, 30, 0.95);
    padding: 30px;
    text-align: center;
}

.founding-banner h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    color: #ffff00;
    margin-bottom: 15px;
}

.founding-banner p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.founding-spots {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #ff00ff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-nav {
        padding: 10px 15px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 0, 30, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 3px solid #ff00ff;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .page-header {
        padding: 40px 15px 30px;
    }

    .section-title {
        font-size: 14px;
    }

    .pricing-grid,
    .membership-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .price-card {
        padding: 25px 20px;
    }

    .party-content,
    .gift-content {
        flex-direction: column;
        text-align: center;
    }

    .party-details {
        text-align: center;
    }

    .party-features {
        text-align: left;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 10px;
    }

    .page-title {
        font-size: 20px;
    }

    .price-main {
        font-size: 36px;
    }

    .party-price {
        font-size: 36px;
    }
}
