@import url("/style.css");

/* Page-specific overrides */
.hero {
    padding: 140px 8% 90px;
}

.hero h1 {
    font-size: 3.2rem;
}

.hero p {
    font-size: 1.1rem;
}

/* Minecraft pricing emphasis */
.mc-plan {
    border: 1px solid rgba(79,140,255,0.25);
}

.mc-plan:hover {
    border-color: var(--accent);
}

/* Terms under price */
.mc-terms {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* PLAN TAGS */
.mc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.mc-tag {
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* TAG COLORS */
.tag-managed { background: rgba(79,140,255,0.15); color: #4f8cff; }
.tag-network { background: rgba(155,89,182,0.15); color: #9b59b6; }
.tag-high-performance { background: rgba(231,76,60,0.15); color: #e74c3c; }
.tag-budget { background: rgba(46,204,113,0.15); color: #2ecc71; }
.tag-recommended { background: rgba(241,196,15,0.2); color: #f1c40f; }
.tag-modded { background: rgba(52,152,219,0.15); color: #3498db; }
.tag-ddos-protected { background: rgba(26,188,156,0.15); color: #1abc9c; }
.tag-custom { background: rgba(0, 255, 204, 0.875); color: #08469c; }

/* FAQ */
.faq-item {
    cursor: pointer;
    transition: background 0.2s ease;
    border: 1px solid rgba(79,140,255,0.15);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    background: var(--bg-secondary);
}

.faq-item:hover {
    background: rgba(79,140,255,0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.05rem;
    display: inline;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease, margin 0.35s ease;
    margin-top: 0;
    line-height: 1.6;
}

.faq-item.show .faq-answer {
    max-height: 500px; /* sufficiently large */
    opacity: 1;
    margin-top: 12px;
}

.faq-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.faq-link:hover {
    text-decoration: underline;
}
