.pf-container {
    width: 100%;
    height: 100vh; /* Full screen height */
    overflow: hidden;
    position: relative;
    background: #f9f9f9;
}

.pf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

.pf-item {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 45px;
}

.pf-logo img {
    max-width: 150px;
    height: auto;
    display: block;
}

.pf-logo-placeholder {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #696969 100%);
    color: #fff;
    font-size: 3em;
    font-weight: bold;
    border-radius: 8px;
    text-transform: uppercase;
}

.pf-details {
    flex: 1;
}

.pf-name {
    margin: 0 0 0 0;
    font-size: 35px;
    color: #333;
}

.pf-meta {
    font-size: 1em;
    color: #666;
    display: flex;
    gap: 15px;
}

.pf-floor, .pf-type {
	background: #B22F2F;
    padding: 15px 15px;
    border-radius: 4px;
    font-size: 25px;
    color: white;
}

/* Animation */
@keyframes pf-scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.pf-animate {
    animation: pf-scroll 20s linear infinite;
}

.pf-container:hover .pf-animate {
    animation-play-state: paused;
}
