/* 5e Buddy Page Specific Styles */

/* Pixel Phone CSS */
.pixel-frame {
    box-shadow: 0px 20px 40px rgba(0,0,0,0.4);
    border: 8px solid #1a1a1a;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #000;
    width: 300px;
    height: 620px;
    margin: auto;
    z-index: 10;
}

.pixel-camera {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    z-index: 20;
}

.app-screen {
    width: 100%;
    height: 100%;
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
}

.app-content {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: none;
}

.app-content::-webkit-scrollbar {
    display: none;
}

.app-bottom-nav {
    height: 60px;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}
