/* More Page Wrapper Styles */

.more-page-wrapper {
    min-height: 100vh;
    background: var(--content-bg);
}

/* More Buttons Grid - Already in main.css but adding here for clarity */
.more-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.more-btn {
    padding: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: #333;
}

.more-btn:hover {
    background: #f8f9fa;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.more-btn i {
    font-size: 32px;
    color: var(--primary-color);
}

.more-btn span {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Featured Items (like Livestream and Payments) */
.more-btn.featured {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    border-color: var(--primary-color);
}

.more-btn.featured i {
    animation: pulse-feature 2s ease-in-out infinite;
}

@keyframes pulse-feature {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive Grid */
@media (max-width: 360px) {
    .more-buttons {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .more-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .more-buttons {
        grid-template-columns: repeat(4, 1fr);
    }
}
