/* Portal Page Styles */

.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.portal-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portal-card:hover {
    border-color: #00ffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 15px;
}

.portal-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.portal-card p {
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.info-stats {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    color: #00ffff;
    font-weight: bold;
}