/* Glass Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}
.section-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.legal-disclaimer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.4;
}

.legal-disclaimer p {
    margin-bottom: 0.5rem;
}

.legal-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
    }
    .glass-panel {
        padding: 1.5rem;
    }
    .stats-overview {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
}

/* Publisher Article & Legal Content Styling */
.publisher-article h2 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
}
.publisher-article h3 {
    font-size: 1.15rem;
    color: #e2e8f0;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}
.publisher-article p {
    margin-bottom: 1rem;
}
.publisher-article ul, .publisher-article ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.publisher-article li {
    margin-bottom: 0.5rem;
}

/* Sleek Guide Accordion & Demo Link Styling */
.guide-accordion {
    margin-top: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.guide-accordion:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}
.guide-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.guide-summary::-webkit-details-marker {
    display: none;
}
.guide-summary .chevron {
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.guide-accordion[open] .guide-summary .chevron {
    transform: rotate(180deg);
}
.guide-content {
    padding: 0 1.75rem 1.75rem 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* Step-by-Step How It Works Cards */
.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.step-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}
.step-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: #38bdf8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.step-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5rem 0;
}
.step-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 0;
}





